Skip to content

Commit 2ae0e2e

Browse files
committed
changelog
1 parent 0ded931 commit 2ae0e2e

File tree

5 files changed

+27
-8
lines changed

5 files changed

+27
-8
lines changed

otel-integration/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## OpenTelemtry-Integration
44

5+
### v0.0.128 / 2024-12-23
6+
7+
- [Feat] default to span metrics enable for ebpf agent deployment
8+
59
### v0.0.127 / 2024-12-20
610

711
- [Fix] Make the receiver Collector report as agent type `receiver`

otel-integration/k8s-helm/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: otel-integration
33
description: OpenTelemetry Integration
4-
version: 0.0.127
4+
version: 0.0.128
55
keywords:
66
- OpenTelemetry Collector
77
- OpenTelemetry Agent

otel-integration/k8s-helm/README.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,6 @@ Componentes:
134134
- k8s-watcher - The agent that watches for changes in k8s resources and publishes them to redis pubsub for coralogix-ebpf-agent to consume them, running as a deployment with 1 replica.
135135
- redis - Redis Pubsub is used for communication between k8s-watcher and coralogix-ebpf-agent, running as a sts with 1 replica.
136136

137-
to enable the coralogix-ebpf-agent deployment, set `coralogix-ebpf-agent.enabled` to `true` in the `values.yaml` file.
138-
139137
# Prerequisites
140138

141139
Make sure you have at least these version of the following installed:
@@ -415,9 +413,20 @@ helm upgrade --install otel-coralogix-integration coralogix-charts-virtual/otel-
415413
--render-subchart-notes -f gke-autopilot-values.yaml --set global.clusterName=<cluster_name> --set global.domain=<domain>
416414
```
417415

418-
### Enabling Coralogix EBPF Agent
416+
### Deploying Coralogix EBPF Agent
417+
418+
To deploy the Coralogix EBPF Agent, alongside the OpenTelemetry agent adn Collector, you can use the following command:
419+
420+
```bash
421+
helm upgrade --install otel-coralogix-central-collector coralogix-charts-virtual/otel-integration \
422+
--render-subchart-notes -f values-ebpf-agent.yaml
423+
```
424+
425+
By default, coralogix ebpf agent will be deployed with the [span metrics preset](#About-span-metrics) enabled.
426+
since due to the usual high volume of spans collected by the ebpf agent, it is recommended to use
427+
[Coralogix APM with span metrics](https://coralogix.com/docs/user-guides/apm/getting-started/span-metrics/)
428+
to disable this, you can edit to the `values-ebpf-agent.yaml` file and set `presets.spanMetrics.enabled` to `false`.
419429

420-
To enable the coralogix EBPF agent, set `coralogix-ebpf-agent.enabled` to `true` in the `values.yaml` file.
421430

422431
#### Filtering Specific Services For Coralogix EBPF Agent
423432

@@ -458,8 +467,6 @@ If you already have an existing OpenTelemetry Collector deployment and you want
458467
you can only deploy the ebpf agent and supply your existing OpenTelemetry Collector endpoint with this command:
459468

460469
```bash
461-
helm repo add coralogix-charts-virtual https://cgx.jfrog.io/artifactory/coralogix-charts-virtual
462-
463470
helm upgrade --install otel-coralogix-central-collector coralogix-charts-virtual/otel-integration \
464471
--render-subchart-notes -f values-ebpf-agent-existing-collector.yaml --set coralogix-ebpf-agent.ebpf_agent.otel.exporter.endpoint=<your-existing-collector-endpoint>
465472
```
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
presets:
2+
spanMetrics:
3+
enabled: true
4+
errorTracking:
5+
enabled: false
6+
7+
coralogix-ebpf-agent:
8+
enabled: true

otel-integration/k8s-helm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ global:
55
defaultSubsystemName: "integration"
66
logLevel: "warn"
77
collectionInterval: "30s"
8-
version: "0.0.127"
8+
version: "0.0.128"
99

1010
extensions:
1111
kubernetesDashboard:

0 commit comments

Comments
 (0)