Skip to content

Commit

Permalink
first draft of custom events pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurpitman committed Sep 6, 2024
1 parent 066d9d6 commit 8c45640
Showing 1 changed file with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
resource "dynatrace_openpipeline" "this" {
pipelines {
pipeline {
default_pipeline {
enabled = true
id = "pipeline_Custom_Event_Pipeline_8939"
display_name = "Custom Event Pipeline"
storage {
catchAllBucketName = "default_events"
}
processing {
processors {
processor {
fieldsAdd_processor {
enabled = true
id = "processor_Add_custom_field_8862"
description = "Add custom field"
matcher = true
field {
name = "custom_field"
value = "hello world"
}
}
}
}
}
}
}
}
}

0 comments on commit 8c45640

Please sign in to comment.