Skip to content

Commit

Permalink
chore(deps): update helm release opentelemetry-collector to v0.111.2 (#…
Browse files Browse the repository at this point in the history
…5429)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dotan Simha <[email protected]>
  • Loading branch information
renovate[bot] and dotansimha authored Jan 18, 2025
1 parent d32f2ca commit 6a77fd8
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions deployment/utils/observability.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export type ObservabilityConfig =
};

// prettier-ignore
export const OTLP_COLLECTOR_CHART = helmChart('https://open-telemetry.github.io/opentelemetry-helm-charts', 'opentelemetry-collector', '0.96.0');
export const OTLP_COLLECTOR_CHART = helmChart('https://open-telemetry.github.io/opentelemetry-helm-charts', 'opentelemetry-collector', '0.111.2');
// prettier-ignore
export const VECTOR_HELM_CHART = helmChart('https://helm.vector.dev', 'vector', '0.35.0');

Expand Down Expand Up @@ -168,7 +168,7 @@ export class Observability {
config: {
exporters: {
...exporters,
logging: {
debug: {
verbosity: 'basic',
},
},
Expand Down Expand Up @@ -357,11 +357,10 @@ export class Observability {
'batch',
],
exporters:
this.config === 'local' ? ['logging'] : ['logging', 'otlp/grafana_cloud_traces'],
this.config === 'local' ? ['debug'] : ['debug', 'otlp/grafana_cloud_traces'],
},
metrics: {
exporters:
this.config === 'local' ? ['logging'] : ['logging', 'prometheusremotewrite'],
exporters: this.config === 'local' ? ['debug'] : ['debug', 'prometheusremotewrite'],
processors: ['memory_limiter', 'batch'],
receivers: ['prometheus'],
},
Expand Down

0 comments on commit 6a77fd8

Please sign in to comment.