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
11 changes: 9 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44821,7 +44821,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 +44851,6 @@ components:
type: object
x-pipeline-types:
- logs
- metrics
ObservabilityPipelineOpentelemetrySourceType:
default: opentelemetry
description: The source type. The value should always be `opentelemetry`.
Expand Down Expand Up @@ -56969,6 +56968,7 @@ components:
- production
- us-east-1
items:
description: An environment tag associated with the entity.
type: string
type: array
mitreTactics:
Expand All @@ -56977,6 +56977,7 @@ components:
- Credential Access
- Privilege Escalation
items:
description: A MITRE ATT&CK tactic name.
type: string
type: array
mitreTechniques:
Expand All @@ -56985,6 +56986,7 @@ components:
- T1078
- T1098
items:
description: A MITRE ATT&CK technique identifier.
type: string
type: array
projectID:
Expand All @@ -56997,6 +56999,7 @@ components:
- api-gateway
- lambda
items:
description: A service name associated with the entity.
type: string
type: array
sources:
Expand All @@ -57005,6 +57008,7 @@ components:
- cloudtrail
- cloud-security-posture-management
items:
description: A data source identifier.
type: string
type: array
subscriptionID:
Expand Down Expand Up @@ -57054,6 +57058,7 @@ components:
example:
- aws
items:
description: A cloud provider name.
type: string
type: array
entityRoles:
Expand All @@ -57062,6 +57067,7 @@ components:
- Admin
- Developer
items:
description: A role assigned to the entity.
type: string
type: array
entityType:
Expand Down Expand Up @@ -57169,6 +57175,7 @@ components:
description: Response containing a list of entity risk scores
properties:
data:
description: Array of entity risk score objects.
items:
$ref: '#/components/schemas/SecurityEntityRiskScore'
type: array
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
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public SecurityEntityRiskScoresResponse addDataItem(SecurityEntityRiskScore data
}

/**
* Getdata
* Array of entity risk score objects.
*
* @return data
*/
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