diff --git a/examples/non-kubernetes/aws-otel-config-file.yaml b/examples/non-kubernetes/aws-otel-config-file.yaml index 063c07d90a87..75722e5fe8f6 100644 --- a/examples/non-kubernetes/aws-otel-config-file.yaml +++ b/examples/non-kubernetes/aws-otel-config-file.yaml @@ -1,21 +1,35 @@ extensions: health_check: receivers: + awsxray: + endpoint: 0.0.0.0:2000 + transport: udp + jaeger: + protocols: + thrift_compact: + endpoint: 0.0.0.0:6831 + thrift_binary: + endpoint: 0.0.0.0:6832 + grpc: + endpoint: 0.0.0.0:14250 + thrift_http: + endpoint: 0.0.0.0:14268 otlp: protocols: grpc: endpoint: 0.0.0.0:4317 http: endpoint: 0.0.0.0:55681 - awsxray: - endpoint: 0.0.0.0:2000 - transport: udp + zipkin: + endpoint: 0.0.0.0:9411 processors: batch/traces: - timeout: 1s - send_batch_size: 50 - batch/metrics: - timeout: 60s + timeout: 5s + send_batch_size: 256 + resourcedetection: + detectors: [env, ec2, ecs] + timeout: 5s + override: true exporters: otlphttp: endpoint: $SUMO_HTTP_TRACES_URL @@ -23,10 +37,6 @@ service: extensions: [health_check] pipelines: traces: - receivers: [otlp,awsxray] - processors: [batch/traces] - exporters: [otlphttp] - metrics: - receivers: [otlp] - processors: [batch/metrics] + receivers: [awsxray,jaeger,otlp,zipkin] + processors: [resourcedetection,batch/traces] exporters: [otlphttp] diff --git a/examples/non-kubernetes/aws-otel-ecs-fargate-deployment.yaml b/examples/non-kubernetes/aws-otel-ecs-fargate-deployment.yaml index 2d9359d0b79a..a656912ea0dc 100644 --- a/examples/non-kubernetes/aws-otel-ecs-fargate-deployment.yaml +++ b/examples/non-kubernetes/aws-otel-ecs-fargate-deployment.yaml @@ -55,6 +55,21 @@ Resources: - hostPort: 4317 protocol: tcp containerPort: 4317 + - hostPort: 6831 + protocol: udp + containerPort: 6831 + - hostPort: 6832 + protocol: udp + containerPort: 6832 + - hostPort: 9411 + protocol: tcp + containerPort: 9411 + - hostPort: 14250 + protocol: tcp + containerPort: 14250 + - hostPort: 14268 + protocol: tcp + containerPort: 14268 - hostPort: 55681 protocol: tcp containerPort: 55681