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
9 changes: 7 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35304,6 +35304,7 @@ components:
example:
- rec-7c3f5a1b-9e2d-4f8a-b1c6-3d7e9f0a2b4c
items:
description: A record ID to delete.
type: string
type: array
required:
Expand Down Expand Up @@ -35336,6 +35337,7 @@ components:
example:
- 9f64e5c7-dc5a-45c8-a17c-1b85f0bec97d
items:
description: A dataset ID to delete.
type: string
type: array
required:
Expand Down Expand Up @@ -35368,6 +35370,7 @@ components:
example:
- 3fd6b5e0-8910-4b1c-a7d0-5b84de329012
items:
description: An experiment ID to delete.
type: string
type: array
required:
Expand Down Expand Up @@ -35400,6 +35403,7 @@ components:
example:
- a33671aa-24fd-4dcd-9b33-a8ec7dde7751
items:
description: A project ID to delete.
type: string
type: array
required:
Expand Down Expand Up @@ -35623,6 +35627,7 @@ components:
tags:
description: List of tags associated with the metric.
items:
description: A tag string in `key:value` format.
type: string
type: array
timestamp_ms:
Expand Down Expand Up @@ -35696,6 +35701,7 @@ components:
tags:
description: List of tags associated with the span.
items:
description: A tag string in `key:value` format.
type: string
type: array
trace_id:
Expand Down Expand Up @@ -44821,7 +44827,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 +44857,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 @@ -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