Skip to content

Commit

Permalink
[opentelemetry-integration] Fix chart version in values.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
douglascamata committed Nov 21, 2024
1 parent b3e5b66 commit 9de4499
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions otel-integration/k8s-helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ global:
defaultSubsystemName: "integration"
logLevel: "warn"
collectionInterval: "30s"
version: "0.0.112"
version: "0.0.113"

extensions:
kubernetesDashboard:
Expand Down Expand Up @@ -189,7 +189,7 @@ opentelemetry-agent:
# This reduces target_info cardinality.
reduceResourceAttributes:
enabled: false
# Configures Host Metrics receiver to collect Entity Events.
# Configures Host Metrics receiver to collect Entity Events.
hostEntityEvents:
enabled: false
config:
Expand Down Expand Up @@ -716,15 +716,15 @@ opentelemetry-gateway:
clusterRoleBinding:
name: "coralogix-opentelemetry-gateway"
rules:
- apiGroups: [""]
resources: ["pods", "namespaces"]
verbs: ["get", "watch", "list"]
- apiGroups: ["apps"]
resources: ["replicasets"]
verbs: ["get", "list", "watch"]
- apiGroups: ["extensions"]
resources: ["replicasets"]
verbs: ["get", "list", "watch"]
- apiGroups: [""]
resources: ["pods", "namespaces"]
verbs: ["get", "watch", "list"]
- apiGroups: ["apps"]
resources: ["replicasets"]
verbs: ["get", "list", "watch"]
- apiGroups: ["extensions"]
resources: ["replicasets"]
verbs: ["get", "list", "watch"]
extraEnvs:
- name: CORALOGIX_PRIVATE_KEY
valueFrom:
Expand Down Expand Up @@ -787,11 +787,11 @@ opentelemetry-gateway:
# needed for self-monitored otel colector metrics
transform/k8s_attributes:
metric_statements:
- context: resource
statements:
- set(attributes["k8s.deployment.name"], attributes["k8s.replicaset.name"])
- replace_pattern(attributes["k8s.deployment.name"], "^(.*)-[0-9a-zA-Z]+$", "$$1") where attributes["k8s.replicaset.name"] != nil
- delete_key(attributes, "k8s.replicaset.name")
- context: resource
statements:
- set(attributes["k8s.deployment.name"], attributes["k8s.replicaset.name"])
- replace_pattern(attributes["k8s.deployment.name"], "^(.*)-[0-9a-zA-Z]+$", "$$1") where attributes["k8s.replicaset.name"] != nil
- delete_key(attributes, "k8s.replicaset.name")
k8sattributes:
filter:
node_from_env_var: KUBE_NODE_NAME
Expand Down Expand Up @@ -911,15 +911,15 @@ opentelemetry-receiver:
clusterRoleBinding:
name: "coralogix-opentelemetry-receiver"
rules:
- apiGroups: [""]
resources: ["pods", "namespaces"]
verbs: ["get", "watch", "list"]
- apiGroups: ["apps"]
resources: ["replicasets"]
verbs: ["get", "list", "watch"]
- apiGroups: ["extensions"]
resources: ["replicasets"]
verbs: ["get", "list", "watch"]
- apiGroups: [""]
resources: ["pods", "namespaces"]
verbs: ["get", "watch", "list"]
- apiGroups: ["apps"]
resources: ["replicasets"]
verbs: ["get", "list", "watch"]
- apiGroups: ["extensions"]
resources: ["replicasets"]
verbs: ["get", "list", "watch"]
extraEnvs:
- name: CORALOGIX_PRIVATE_KEY
valueFrom:
Expand Down Expand Up @@ -982,11 +982,11 @@ opentelemetry-receiver:
# needed for self-monitored otel colector metrics
transform/k8s_attributes:
metric_statements:
- context: resource
statements:
- set(attributes["k8s.deployment.name"], attributes["k8s.replicaset.name"])
- replace_pattern(attributes["k8s.deployment.name"], "^(.*)-[0-9a-zA-Z]+$", "$$1") where attributes["k8s.replicaset.name"] != nil
- delete_key(attributes, "k8s.replicaset.name")
- context: resource
statements:
- set(attributes["k8s.deployment.name"], attributes["k8s.replicaset.name"])
- replace_pattern(attributes["k8s.deployment.name"], "^(.*)-[0-9a-zA-Z]+$", "$$1") where attributes["k8s.replicaset.name"] != nil
- delete_key(attributes, "k8s.replicaset.name")
k8sattributes:
filter:
node_from_env_var: KUBE_NODE_NAME
Expand Down

0 comments on commit 9de4499

Please sign in to comment.