Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #21 from matej-g/k8s-dashboard-round-2
Browse files Browse the repository at this point in the history
Second round of improvements for K8s dashboard
  • Loading branch information
matej-g authored Aug 2, 2023
2 parents 0be34f9 + 079570d commit b1c1729
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Coralogix Opentelemetry Integration

### v0.6.0 / 2023-08-01
* [FEATURE] Add `container_fs_usage_bytes` metric
* [FEATURE] Add `k8s.node.name` resource attribute
* [FEATURE] Override detection for cloud provider detectors
* [CHORE] Update OpenTelemetry charts to 0.64.0

### v0.5.0 / 2023-07-26
* [FEATURE] Add cluster metrics receiver

Expand Down
6 changes: 3 additions & 3 deletions charts/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: coralogix-opentelemetry-integration
description: OpenTelemetry barebones to have Coralogix Kubernetes Monitoring working out-of-the-box.
version: 0.5.0
version: 0.6.0
kubeVersion: ">=1.16.0-0"
keywords:
- OpenTelemetry Collector
Expand All @@ -11,12 +11,12 @@ keywords:
dependencies:
- name: opentelemetry-collector
alias: opentelemetry-collector-agent
version: "0.62.2"
version: "0.64.0"
repository: https://open-telemetry.github.io/opentelemetry-helm-charts
condition: opentelemetry-collector-agent.enabled
- name: opentelemetry-collector
alias: opentelemetry-collector-events
version: "0.62.2"
version: "0.64.0"
repository: https://open-telemetry.github.io/opentelemetry-helm-charts
condition: opentelemetry-collector-events.enabled
- name: kube-state-metrics
Expand Down
5 changes: 4 additions & 1 deletion charts/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ opentelemetry-collector-agent:
secretKeyRef:
name: coralogix-opentelemetry-key
key: PRIVATE_KEY
- name: OTEL_RESOURCE_ATTRIBUTES
value: "k8s.node.name=$(K8S_NODE_NAME)"

presets:
# Configures the Kubernetes Processor to add Kubernetes metadata.
Expand Down Expand Up @@ -115,7 +117,7 @@ opentelemetry-collector-agent:
resourcedetection/region:
detectors: ["gcp", "ec2"]
timeout: 2s
override: false
override: true
gcp:
resource_attributes:
cloud.region:
Expand Down Expand Up @@ -170,6 +172,7 @@ opentelemetry-collector-agent:
- container_fs_writes_bytes_total
- container_fs_reads_total
- container_fs_reads_bytes_total
- container_fs_usage_bytes

exporters:
coralogix:
Expand Down

0 comments on commit b1c1729

Please sign in to comment.