Skip to content

Commit

Permalink
Merge pull request #422 from logzio/easy-connect-1.0.6
Browse files Browse the repository at this point in the history
easy-connect-1.0.6
  • Loading branch information
yotamloe authored Jan 17, 2024
2 parents b8ab2d7 + 6ea1ea2 commit 998945a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion charts/easy-connect/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: easy-connect
description: Easily add otel auto instrumentation and log types to your Kubernetes applications
type: application
version: 1.0.5
version: 1.0.6

maintainers:
- name: yotamloe
Expand Down
16 changes: 10 additions & 6 deletions charts/easy-connect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,17 @@ serviceAccount
| --- | --- | --- |
| `kubernetesInstrumentor.serviceAccount` | Service account name of the instrumentor deployment | `"kubernetes-instrumentor"` |
| `kubernetesInstrumentor.image.repository` | Repository of the instrumentor image | `"logzio/instrumentor"` |
| `kubernetesInstrumentor.image.tag` | Tag of the instrumentor image | `"v1.0.9"` |
| `kubernetesInstrumentor.image.tag` | Tag of the instrumentor image | `"v1.0.10"` |
| `kubernetesInstrumentor.instrumentationDetectorImage.repository` | Repository of the instrumentation detector image | `"logzio/instrumentation-detector"` |
| `kubernetesInstrumentor.instrumentationDetectorImage.tag` | Tag of the instrumentation detector image | `"v1.0.8"` |
| `kubernetesInstrumentor.instrumentationDetectorImage.tag` | Tag of the instrumentation detector image | `"v1.0.10"` |
| `kubernetesInstrumentor.javaAgentImage.repository` | Repository of the Java agent image | `"logzio/otel-agent-java"` |
| `kubernetesInstrumentor.javaAgentImage.tag` | Tag of the Java agent image | `"v1.0.9"` |
| `kubernetesInstrumentor.javaAgentImage.tag` | Tag of the Java agent image | `"v1.0.10"` |
| `kubernetesInstrumentor.dotnetAgentImage.repository` | Repository of the .Net agent image | `"logzio/otel-agent-dotnet"` |
| `kubernetesInstrumentor.dotnetAgentImage.tag` | Tag of the .Net agent image | `"v1.0.9"` |
| `kubernetesInstrumentor.dotnetAgentImage.tag` | Tag of the .Net agent image | `"v1.0.10"` |
| `kubernetesInstrumentor.nodejsAgentImage.repository` | Repository of the Node.js agent image | `"logzio/otel-agent-nodejs"` |
| `kubernetesInstrumentor.nodejsAgentImage.tag` | Tag of the Node.js agent image | `"v1.0.9"` |
| `kubernetesInstrumentor.nodejsAgentImage.tag` | Tag of the Node.js agent image | `"v1.0.10"` |
| `kubernetesInstrumentor.pythonAgentImage.repository` | Repository of the Python agent image | `"logzio/otel-agent-python"` |
| `kubernetesInstrumentor.pythonAgentImage.tag` | Tag of the Python agent image | `"v1.0.9"` |
| `kubernetesInstrumentor.pythonAgentImage.tag` | Tag of the Python agent image | `"v1.0.10"` |
| `kubernetesInstrumentor.deleteDetectionPods` | Delete detection pods after detection | `true` |
| `kubernetesInstrumentor.ports.metricsPort` | Metrics port for the instrumentor | `8080` |
| `kubernetesInstrumentor.ports.healthProbePort` | Health probe port for the instrumentor | `8081` |
Expand Down Expand Up @@ -108,6 +108,10 @@ you can find alternative to `dockerhub` images in `public.ecr.aws/logzio/` with

Change log
-------------
* 1.0.6
- Improve `nodejs` instrumentation:
- Use `BatchSpanProcessor`
- Disable `@opentelemetry/instrumentation-fs` To improve performance and avoid high memory usage on startup (https://github.com/open-telemetry/opentelemetry-js-contrib/issues/1344)
* 1.0.5
- Add `deleteDetectionPods` value
- Add `easy.conect.version` resource attributes to spans
Expand Down
12 changes: 6 additions & 6 deletions charts/easy-connect/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@ kubernetesInstrumentor:
serviceAccount: "kubernetes-instrumentor"
image:
repository: "logzio/instrumentor"
tag: "v1.0.9"
tag: "v1.0.10"
instrumentationDetectorImage:
repository: "logzio/instrumentation-detector"
tag: "v1.0.9"
tag: "v1.0.10"
javaAgentImage:
repository: "logzio/otel-agent-java"
tag: "v1.0.9"
tag: "v1.0.10"
dotnetAgentImage:
repository: "logzio/otel-agent-dotnet"
tag: "v1.0.9"
tag: "v1.0.10"
nodejsAgentImage:
repository: "logzio/otel-agent-nodejs"
tag: "v1.0.9"
tag: "v1.0.10"
pythonAgentImage:
repository: "logzio/otel-agent-python"
tag: "v1.0.9"
tag: "v1.0.10"
deleteDetectionPods: true
ports:
metricsPort: 8080
Expand Down

0 comments on commit 998945a

Please sign in to comment.