Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42913,6 +42913,11 @@ components:

**Supported pipeline types:** logs, metrics'
properties:
address_key:
description: Name of the environment variable or secret that holds the listen
address for the Datadog Agent source.
example: DATADOG_AGENT_ADDRESS
type: string
id:
description: The unique identifier for this component. Used in other parts
of the pipeline to reference this component (for example, as the `input`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
* **Supported pipeline types:** logs, metrics
*/
export class ObservabilityPipelineDatadogAgentSource {
/**
* Name of the environment variable or secret that holds the listen address for the Datadog Agent source.
*/
"addressKey"?: string;
/**
* The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components).
*/
Expand Down Expand Up @@ -43,6 +47,10 @@ export class ObservabilityPipelineDatadogAgentSource {
* @ignore
*/
static readonly attributeTypeMap: AttributeTypeMap = {
addressKey: {
baseName: "address_key",
type: "string",
},
id: {
baseName: "id",
type: "string",
Expand Down
Loading