Skip to content

Commit

Permalink
fix: the otel collector is now strict about type checking
Browse files Browse the repository at this point in the history
  • Loading branch information
rnishtala-sumo committed Oct 9, 2024
1 parent 2241269 commit 5039176
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ exporters:
resolver:
dns:
hostname: '{{ include "tracesgateway.exporter.loadbalancing.endpoint" . }}'
port: 4317
port: '4317'
{{- end }}
receivers:
jaeger:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ exporters:
resolver:
dns:
hostname: '{{ include "tracesgateway.exporter.loadbalancing.endpoint" . }}'
port: 4317
port: '4317'

receivers:
otlp:
Expand Down
8 changes: 4 additions & 4 deletions deploy/helm/sumologic/conf/metrics/otelcol/processors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ memory_limiter:
metricstransform:
transforms:
## rename all prometheus_remote_write_$name metrics to $name
action: update
include: ^prometheus_remote_write_(.*)$$
match_type: regexp
new_name: $$1
- action: update
include: ^prometheus_remote_write_(.*)$$
match_type: regexp
new_name: $$1

## Configuration for Resource Processor
resource:
Expand Down

0 comments on commit 5039176

Please sign in to comment.