Resource: honeycombio_derived_column

Creates a derived column. For more information about derived columns, check out Calculate with derived columns.

Example Usage

variable "dataset" {
  type = string
}

resource "honeycombio_derived_column" "duration_ms_log" { 
  alias       = "duration_ms_log10"
  expression  = "LOG10($duration_ms)"
  description = "LOG10 of duration_ms"

  dataset = var.dataset
}

Argument Reference

The following arguments are supported:

Attribute Reference

In addition to all arguments above, the following attributes are exported:

Import

Derived columns can be imported using a combination of the dataset name and their alias, e.g.

$ terraform import honeycombio_derived_column.my_column my-dataset/duration_ms_log10