WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
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
// The unique identifier for this component. Used to reference this processor in the pipeline.
16
18
Idstring`json:"id"`
17
19
// A Datadog search query used to determine which logs this processor targets.
18
20
Includestring`json:"include"`
19
-
// A list of component IDs whose output is used as the input for this processor.
20
-
Inputs []string`json:"inputs"`
21
+
// A list of component IDs whose output is used as input for this processor. Required when used as a standalone processor, omit when used within a processor group.
22
+
Inputs []string`json:"inputs,omitempty"`
21
23
// The processor type. The value should always be `add_env_vars`.
// 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).
18
20
Idstring`json:"id"`
19
21
// A Datadog search query used to determine which logs this processor targets.
20
22
Includestring`json:"include"`
21
-
// A list of component IDs whose output is used as the `input` for this component.
22
-
Inputs []string`json:"inputs"`
23
+
// A list of component IDs whose output is used as input for this processor. Required when used as a standalone processor, omit when used within a processor group.
24
+
Inputs []string`json:"inputs,omitempty"`
23
25
// The processor type. The value should always be `add_fields`.
0 commit comments