File tree 5 files changed +4
-3
lines changed
charts/lumigo-operator/templates
5 files changed +4
-3
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ FROM alpine:latest AS chmod-helper
21
21
ADD ./docker/etc/config.yaml.tpl /lumigo/etc/otelcol-config.yaml.tpl
22
22
ADD ./docker/etc/events-config.yaml.tpl /lumigo/etc/otelcol-events-config.yaml.tpl
23
23
ADD ./docker/etc/common-config.yaml /lumigo/etc/otelcol-common-config.yaml
24
- ADD ./docker/etc/essential_metrics .yaml /lumigo/etc/essential_metrics .yaml
24
+ ADD ./docker/etc/essential-metrics .yaml /lumigo/etc/essential-metrics .yaml
25
25
RUN chown -R 1234:1234 /lumigo/etc/otelcol-config.yaml.tpl
26
26
RUN chown -R 1234:1234 /lumigo/etc/otelcol-events-config.yaml.tpl
27
27
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ readonly OTELCOL_CONFIG_TEMPLATE_FILE_PATH=${OTELCOL_CONFIG_TEMPLATE_FILE_PATH:-
7
7
readonly GENERATION_CONFIG_FILE_PATH=" /lumigo/etc/otelcol/generation-config.json"
8
8
readonly NAMESPACES_FILE_PATH=" /lumigo/etc/namespaces/namespaces_to_monitor.json"
9
9
readonly NAMESPACES_FILE_SHA_PATH=" ${NAMESPACES_FILE_PATH} .sha1"
10
- readonly ESSENTIAL_METRICS_NAMES_FILE_PATH=" /lumigo/etc/essential_metrics .yaml"
10
+ readonly ESSENTIAL_METRICS_NAMES_FILE_PATH=" /lumigo/etc/essential-metrics .yaml"
11
11
12
12
readonly DEFAULT_MEMORY_LIMIT_MIB=4000
13
13
readonly NO_MEMORY_LIMIT=9223372036854771712
Original file line number Diff line number Diff line change 6
6
{ {- $infraMetricsFrequency := getenv " LUMIGO_INFRA_METRICS_SCRAPING_FREQUENCY" " 15s" } }
7
7
{ {- $otelcolInternalMetricsFrequency := getenv " LUMIGO_OTELCOL_METRICS_SCRAPING_FREQUENCY" " 15s" } }
8
8
{ {- $essentialMetricsOnly := getenv " LUMIGO_EXPORT_ESSENTIAL_METRICS_ONLY" " " | conv.ToBool } }
9
- { {- $essentialMetricsNames := (datasource " essential_metrics " ).metrics -} }
9
+ { {- $essentialMetricsNames := (datasource " essential-metrics " ).metrics -} }
10
10
{ {- $watchdogEnabled := getenv " LUMIGO_WATCHDOG_ENABLED" " " | conv.ToBool } }
11
11
{ {- $infraMetricsEnabled := getenv " LUMIGO_INFRA_METRICS_ENABLED" " " | conv.ToBool } }
12
12
{ {- $metricsScrapingEnabled := or $watchdogEnabled $infraMetricsEnabled } }
@@ -235,6 +235,7 @@ service:
235
235
receivers:
236
236
- prometheus/collector-self-metrics
237
237
processors:
238
+ - filter/filter-prom-metrics
238
239
- batch
239
240
- k8sdataenricherprocessor
240
241
- transform/inject_operator_details_into_resource
File renamed without changes.
You can’t perform that action at this time.
0 commit comments