You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: services/observability_pipelines/src/v2/models/ObservabilityPipelineCustomProcessor.ts
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,10 @@ import { ObservabilityPipelineCustomProcessorType } from "./ObservabilityPipelin
7
7
* The `custom_processor` processor transforms events using [Vector Remap Language (VRL)](https://vector.dev/docs/reference/vrl/) scripts with advanced filtering capabilities.
8
8
*/
9
9
exportclassObservabilityPipelineCustomProcessor{
10
+
/**
11
+
* The processor passes through all events if it is set to `false`. Defaults to `true`.
12
+
*/
13
+
"enabled"?: boolean;
10
14
/**
11
15
* The unique identifier for this processor.
12
16
*/
@@ -42,6 +46,10 @@ export class ObservabilityPipelineCustomProcessor {
* The processor passes through all events if it is set to `false`. Defaults to `true`.
17
+
*/
18
+
"enabled"?: boolean;
15
19
/**
16
20
* The unique identifier for this component. Used to reference this component in other parts of the pipeline (for example, as the `input` to downstream components).
17
21
*/
@@ -56,6 +60,10 @@ export class ObservabilityPipelineDatadogTagsProcessor {
Copy file name to clipboardExpand all lines: services/observability_pipelines/src/v2/models/ObservabilityPipelineFilterProcessor.ts
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ import { ObservabilityPipelineFilterProcessorType } from "./ObservabilityPipelin
6
6
* The `filter` processor allows conditional processing of logs based on a Datadog search query. Logs that match the `include` query are passed through; others are discarded.
7
7
*/
8
8
exportclassObservabilityPipelineFilterProcessor{
9
+
/**
10
+
* The processor passes through all events if it is set to `false`. Defaults to `true`.
11
+
*/
12
+
"enabled"?: boolean;
9
13
/**
10
14
* The unique identifier for this component. Used to reference this component in other parts of the pipeline (for example, as the `input` to downstream components).
11
15
*/
@@ -37,6 +41,10 @@ export class ObservabilityPipelineFilterProcessor {
0 commit comments