-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
first draft of custom events pipeline
- Loading branch information
1 parent
066d9d6
commit 8c45640
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
dynatrace/api/openpipeline/settings/testdata/example_custom_events_pipeline.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |