Skip to content

Commit

Permalink
[opentelemetry-integration] feat: file log preset - allow setting max…
Browse files Browse the repository at this point in the history
…_batch_size
  • Loading branch information
povilasv committed Nov 4, 2024
1 parent 6322744 commit d93cbe6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
3 changes: 3 additions & 0 deletions otel-integration/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## OpenTelemtry-Integration

### v0.0.110 / 2024-11-04
- [Feat] logsCollection preset allow changing max_batch_size

### v0.0.109 / 2024-10-23
- [Feat] E2E Testing: Populated hostmetrics maps and enable process metrics

Expand Down
12 changes: 6 additions & 6 deletions otel-integration/k8s-helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: otel-integration
description: OpenTelemetry Integration
version: 0.0.109
version: 0.0.110
keywords:
- OpenTelemetry Collector
- OpenTelemetry Agent
Expand All @@ -11,27 +11,27 @@ keywords:
dependencies:
- name: opentelemetry-collector
alias: opentelemetry-agent
version: "0.95.4"
version: "0.97.0"
repository: https://cgx.jfrog.io/artifactory/coralogix-charts-virtual
condition: opentelemetry-agent.enabled
- name: opentelemetry-collector
alias: opentelemetry-agent-windows
version: "0.95.4"
version: "0.97.0"
repository: https://cgx.jfrog.io/artifactory/coralogix-charts-virtual
condition: opentelemetry-agent-windows.enabled
- name: opentelemetry-collector
alias: opentelemetry-cluster-collector
version: "0.95.4"
version: "0.97.0"
repository: https://cgx.jfrog.io/artifactory/coralogix-charts-virtual
condition: opentelemetry-cluster-collector.enabled
- name: opentelemetry-collector
alias: opentelemetry-receiver
version: "0.95.4"
version: "0.97.0"
repository: https://cgx.jfrog.io/artifactory/coralogix-charts-virtual
condition: opentelemetry-receiver.enabled
- name: opentelemetry-collector
alias: opentelemetry-gateway
version: "0.95.4"
version: "0.97.0"
repository: https://cgx.jfrog.io/artifactory/coralogix-charts-virtual
condition: opentelemetry-gateway.enabled
sources:
Expand Down
4 changes: 3 additions & 1 deletion 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.109"
version: "0.0.110"

extensions:
kubernetesDashboard:
Expand Down Expand Up @@ -105,6 +105,8 @@ opentelemetry-agent:
maxRecombineLogSize: 1048576
# The maximum number of consecutive entries that will be combined into a single entry before the match occurs
maxUnmatchedBatchSize: 1
# The maximum number of consecutive entries that will be combined into a single entry.
maxBatchSize: 1000
extraFilelogOperators: []
# - type: recombine
# combine_field: body
Expand Down

0 comments on commit d93cbe6

Please sign in to comment.