Skip to content

Commit 245ccf2

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Make datadog agent source address configurable in Observability Pipelines (#3725)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 2780875 commit 245ccf2

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42913,6 +42913,11 @@ components:
4291342913

4291442914
**Supported pipeline types:** logs, metrics'
4291542915
properties:
42916+
address_key:
42917+
description: Name of the environment variable or secret that holds the listen
42918+
address for the Datadog Agent source.
42919+
example: DATADOG_AGENT_ADDRESS
42920+
type: string
4291642921
id:
4291742922
description: The unique identifier for this component. Used in other parts
4291842923
of the pipeline to reference this component (for example, as the `input`

packages/datadog-api-client-v2/models/ObservabilityPipelineDatadogAgentSource.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1414
* **Supported pipeline types:** logs, metrics
1515
*/
1616
export class ObservabilityPipelineDatadogAgentSource {
17+
/**
18+
* Name of the environment variable or secret that holds the listen address for the Datadog Agent source.
19+
*/
20+
"addressKey"?: string;
1721
/**
1822
* 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).
1923
*/
@@ -43,6 +47,10 @@ export class ObservabilityPipelineDatadogAgentSource {
4347
* @ignore
4448
*/
4549
static readonly attributeTypeMap: AttributeTypeMap = {
50+
addressKey: {
51+
baseName: "address_key",
52+
type: "string",
53+
},
4654
id: {
4755
baseName: "id",
4856
type: "string",

0 commit comments

Comments
 (0)