Skip to content
Open
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
13 changes: 11 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8492,6 +8492,7 @@ components:
- ubuntu-18.04
- n2.large
items:
description: A label used to select or identify the node.
type: string
type: array
name:
Expand Down Expand Up @@ -18972,6 +18973,7 @@ components:
example:
- shopist
items:
description: A service name impacted by the incident.
type: string
type: array
severity:
Expand Down Expand Up @@ -19139,6 +19141,7 @@ components:
example:
- shopist
items:
description: A service name impacted by the incident.
type: string
type: array
severity:
Expand Down Expand Up @@ -20957,6 +20960,7 @@ components:
- resource1
- resource2
items:
description: A resource name to exclude from faulty deployment detection.
type: string
type: array
type: object
Expand Down Expand Up @@ -25416,12 +25420,15 @@ components:
- '@foo'
- '@bar'
items:
description: A code owner of the test as inferred from the repository
configuration.
type: string
type: array
envs:
description: List of environments where this test has been flaky.
example: prod
items:
description: An environment name where this test has been flaky.
type: string
type: array
first_flaked_branch:
Expand Down Expand Up @@ -25521,6 +25528,7 @@ components:
- foo
- bar
items:
description: A test service name where this test has been flaky.
type: string
type: array
suite:
Expand Down Expand Up @@ -36595,8 +36603,10 @@ components:
x-enum-varnames:
- LIST_DEPLOYMENT_RULES
ListDeploymentRulesResponseDataAttributes:
description: Attributes of the response for listing deployment rules.
properties:
rules:
description: The list of deployment rules.
items:
$ref: '#/components/schemas/DeploymentRuleResponseDataAttributes'
type: array
Expand Down Expand Up @@ -44821,7 +44831,7 @@ components:
Protocol (OTLP) over gRPC and HTTP.


**Supported pipeline types:** logs, metrics'
**Supported pipeline types:** logs'
properties:
grpc_address_key:
description: Environment variable name containing the gRPC server address
Expand Down Expand Up @@ -44851,7 +44861,6 @@ components:
type: object
x-pipeline-types:
- logs
- metrics
ObservabilityPipelineOpentelemetrySourceType:
default: opentelemetry
description: The source type. The value should always be `opentelemetry`.
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public ListDeploymentRuleResponseData attributes(
}

/**
* Getattributes
* Attributes of the response for listing deployment rules.
*
* @return attributes
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import java.util.Map;
import java.util.Objects;

/** */
/** Attributes of the response for listing deployment rules. */
@JsonPropertyOrder({ListDeploymentRulesResponseDataAttributes.JSON_PROPERTY_RULES})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
Expand Down Expand Up @@ -47,7 +47,7 @@ public ListDeploymentRulesResponseDataAttributes addRulesItem(
}

/**
* Getrules
* The list of deployment rules.
*
* @return rules
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* The <code>opentelemetry</code> source receives telemetry data using the OpenTelemetry Protocol
* (OTLP) over gRPC and HTTP.
*
* <p><strong>Supported pipeline types:</strong> logs, metrics
* <p><strong>Supported pipeline types:</strong> logs
*/
@JsonPropertyOrder({
ObservabilityPipelineOpentelemetrySource.JSON_PROPERTY_GRPC_ADDRESS_KEY,
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -149,14 +149,6 @@ Feature: Observability Pipelines
And the response "data.attributes.config.destinations" has length 1
And the response "data.attributes.config.destinations[0].id" is equal to "updated-datadog-logs-destination-id"

@team:DataDog/observability-pipelines
Scenario: Validate a metrics pipeline with opentelemetry source returns "OK" response
Given new "ValidatePipeline" request
And body with value {"data": {"attributes": {"config": {"pipeline_type": "metrics", "destinations": [{"id": "datadog-metrics-destination", "inputs": ["my-processor-group"], "type": "datadog_metrics"}], "processor_groups": [{"enabled": true, "id": "my-processor-group", "include": "*", "inputs": ["opentelemetry-source"], "processors": [{"enabled": true, "id": "filter-processor", "include": "env:production", "type": "filter"}]}], "sources": [{"id": "opentelemetry-source", "type": "opentelemetry"}]}, "name": "Metrics OTel Pipeline"}, "type": "pipelines"}}
When the request is sent
Then the response status is 200 OK
And the response "errors" has length 0

@team:DataDog/observability-pipelines
Scenario: Validate an observability pipeline returns "Bad Request" response
Given new "ValidatePipeline" request
Expand Down
Loading