Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/nr-k8s-otel-collector/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.9.7
version: 0.9.8


dependencies:
Expand Down
2 changes: 2 additions & 0 deletions charts/nr-k8s-otel-collector/templates/_endpoint.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ A helper to return the NR endpoint to send data to
{{- define "nrKubernetesOtel.endpoint" -}}
{{- if include "newrelic.common.nrStaging" . -}}
"https://staging-otlp.nr-data.net"
{{- else if include "newrelic.common.fedramp.enabled" . -}}
"https://gov-otlp.nr-data.net"
{{- else -}}
{{- if hasPrefix "eu" (include "newrelic.common.license._licenseKey" . ) -}}
"https://otlp.eu01.nr-data.net"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -632,6 +632,12 @@ data:
- key: newrelic.entity.type
action: upsert
value: "k8s"
{{- $customAttrs := include "newrelic.common.customAttributes" . | fromYaml }}
{{- range $key, $val := $customAttrs }}
- key: {{ $key }}
action: upsert
value: {{ $val | quote }}
{{- end }}

transform/low_data_mode_inator:
metric_statements:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,12 @@ data:
- key: newrelic.entity.type
action: upsert
value: "k8s"
{{- $customAttrs := include "newrelic.common.customAttributes" . | fromYaml }}
{{- range $key, $val := $customAttrs }}
- key: {{ $key }}
action: upsert
value: {{ $val | quote }}
{{- end }}
resource/events:
attributes:
Expand Down
Loading
Loading