Lucas Thompson
12/04/2024, 8:33 PM2024-12-04T20:32:09.836Z info exporterhelper/retry_sender.go:177 Exporting failed. Will retry the request after interval. {"kind": "exporter", "data_type": "metrics", "name": "otlp", "error": "rpc error: code = Unavailable desc = connection error: desc = \"error reading server preface: http2: frame too large\"", "interval": "6.306292489s"}
and can't track down why
in thread is my yaml config file for the signoz sidecar for that app and below that are the variables for the cont def for our app I am trying to point it to. What am I doing wrong?Lucas Thompson
12/04/2024, 8:34 PMextensions:
health_check:
receivers:
awsecscontainermetrics:
collection_interval: 30s
otlp:
protocols:
grpc:
endpoint: 0.0.0.0:4317
http:
endpoint: 0.0.0.0:4318
fluentforward:
endpoint: 0.0.0.0:8006
processors:
batch:
timeout: 10s
filter:
metrics:
include:
match_type: strict
metric_names:
- ecs.task.memory.reserved
- ecs.task.memory.utilized
- ecs.task.cpu.reserved
- ecs.task.cpu.utilized
- ecs.task.network.rate.rx
- ecs.task.network.rate.tx
- ecs.task.storage.read_bytes
- ecs.task.storage.write_bytes
- container.duration
exporters:
otlp:
endpoint: "${ip}:${port}"
tls:
insecure: true
logging:
verbosity: normal
service:
extensions: [health_check]
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [otlp, logging]
metrics:
receivers: [otlp]
processors: [batch]
exporters: [otlp, logging]
metrics/aws:
receivers: [awsecscontainermetrics]
processors: [filter]
exporters: [otlp, logging]
logs:
receivers: [otlp, fluentforward]
processors: [batch]
exporters: [otlp, logging]
Lucas Thompson
12/04/2024, 8:36 PM{
name = "OTEL_SERVICE_NAME"
value = "app-server"
},
{
name = "OTEL_TRACES_EXPORTER"
value = "console,otlp"
},
{
name = "OTEL_METRICS_EXPORTER"
value = "otlp"
},
{
name = "OTEL_EXPORTER_OTLP_ENDPOINT"
value = "<http://localhost:4318>"
},
{
name = "OTEL_EXPORTER_OTLP_PROTOCOL"
value = "http/protobuf"
},
{
name = "OTEL_RESOURCE_ATTRIBUTES"
value = "app-server"
},
Srikanth Chekuri
12/05/2024, 2:30 AMendpoint: "${ip}:${port}"
Lucas Thompson
12/05/2024, 2:41 PM