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
14 changes: 7 additions & 7 deletions content/en/api/v2/observability-pipelines/examples.json

Large diffs are not rendered by default.

40 changes: 40 additions & 0 deletions data/api/v2/full_spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35935,6 +35935,7 @@ components:
- $ref: '#/components/schemas/ObservabilityPipelineHttpClientSource'
- $ref: '#/components/schemas/ObservabilityPipelineLogstashSource'
- $ref: '#/components/schemas/ObservabilityPipelineSocketSource'
- $ref: '#/components/schemas/ObservabilityPipelineOpentelemetrySource'
ObservabilityPipelineCrowdStrikeNextGenSiemDestination:
description: The `crowdstrike_next_gen_siem` destination forwards logs to CrowdStrike
Next Gen SIEM.
Expand Down Expand Up @@ -37414,6 +37415,45 @@ components:
type: string
x-enum-varnames:
- OPENSEARCH
ObservabilityPipelineOpentelemetrySource:
description: The `opentelemetry` source receives telemetry data using the OpenTelemetry
Protocol (OTLP) over gRPC and HTTP.
properties:
grpc_address_key:
description: Environment variable name containing the gRPC server address
for receiving OTLP data. Must be a valid environment variable name (alphanumeric
characters and underscores only).
example: OTEL_GRPC_ADDRESS
type: string
http_address_key:
description: Environment variable name containing the HTTP server address
for receiving OTLP data. Must be a valid environment variable name (alphanumeric
characters and underscores only).
example: OTEL_HTTP_ADDRESS
type: string
id:
description: The unique identifier for this component. Used to reference
this component in other parts of the pipeline (e.g., as input to downstream
components).
example: opentelemetry-source
type: string
tls:
$ref: '#/components/schemas/ObservabilityPipelineTls'
type:
$ref: '#/components/schemas/ObservabilityPipelineOpentelemetrySourceType'
required:
- id
- type
type: object
ObservabilityPipelineOpentelemetrySourceType:
default: opentelemetry
description: The source type. The value should always be `opentelemetry`.
enum:
- opentelemetry
example: opentelemetry
type: string
x-enum-varnames:
- OPENTELEMETRY
ObservabilityPipelineParseGrokProcessor:
description: The `parse_grok` processor extracts structured fields from unstructured
log messages using Grok patterns.
Expand Down
Loading