Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update OtelCol and clean up tags #560

Merged
merged 2 commits into from
Apr 6, 2020
Merged
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
25 changes: 12 additions & 13 deletions deploy/helm/sumologic/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ otelcol:
memBallastSizeMib: "683"
image:
name: "sumologic/opentelemetry-collector"
tag: "0.2.7.0"
tag: "0.2.7.1"
pullPolicy: IfNotPresent
config:
receivers:
Expand All @@ -692,39 +692,38 @@ otelcol:
k8s_tagger:
# When true, only IP is assigned and passed (so it could be tagged on another collector)
passthrough: false
# When true, additional fields, such as serviceName are being also extracted
owner_lookup_enabled: true
# Extracted fields and assigned names
extract:
metadata:
# extract the following well-known metadata fields
- containerId
- containerName
- cluster
- clusterName
- daemonSetName
- deployment
- deploymentName
- hostName
- namespace
- node
- owners
- nodeName
- podId
- podName
- replicaSetName
- serviceName
- startTime
# - serviceName
- statefulSetName
tags:
containerId: container_id
containerName: container
cluster: cluster
clusterName: cluster
daemonSetName: daemonset
deployment: deployment
hostName: hostname
deploymentName: deployment
hostName: host
namespace: namespace
node: node
nodeName: node
podId: pod_id
podName: pod
replicaSetName: replicaset
serviceName: service_name
startTime: start_time
# serviceName: service
statefulSetName: statefulset
annotations:
- tag_name: pod_annotation_%s
Expand Down