-
-
Notifications
You must be signed in to change notification settings - Fork 506
Reduce OpenTelemetry ingestion volume #2414
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 4 commits
6f93f3c
24f3e55
2bc894e
443f6ac
12111d8
c7c6152
fb99bd9
4c5f28f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,10 +2,12 @@ global: | |
| cloud: aks | ||
| clusterName: ex-k8s-v6 | ||
| deploymentEnvironment: prod | ||
| otelCollectorEndpoint: ingest.us.signoz.cloud:443 | ||
| otelCollectorEndpoint: https://ingest.us.signoz.cloud:443 | ||
| otelInsecure: false | ||
| presets: | ||
| otlpExporter: | ||
| enabled: false | ||
| otlphttpExporter: | ||
| enabled: true | ||
| loggingExporter: | ||
| enabled: false | ||
|
|
@@ -33,9 +35,41 @@ otelAgent: | |
| endpoint: http://apm.elastic-system.svc:8200 | ||
| tls: | ||
| insecure: true | ||
| processors: | ||
| filter/drop_unused_metrics: | ||
| error_mode: ignore | ||
| metrics: | ||
| metric: | ||
| - 'name == "http.client.request.duration"' | ||
| - 'name == "http.client.request.time_in_queue"' | ||
| - 'name == "http.client.connection.duration"' | ||
| - 'name == "http.client.open_connections"' | ||
| - 'name == "http.client.active_requests"' | ||
| - 'name == "dns.lookup.duration"' | ||
| - 'name == "kestrel.connection.duration"' | ||
| - 'name == "aspnetcore.authentication.authenticate.duration"' | ||
| - 'name == "aspnetcore.routing.match_attempts"' | ||
| - 'name == "dotnet.exceptions"' | ||
| - 'name == "dotnet.gc.collections"' | ||
| - 'name == "dotnet.gc.last_collection.heap.size"' | ||
| - 'name == "dotnet.gc.last_collection.heap.fragmentation.size"' | ||
| - 'name == "dotnet.process.cpu.time"' | ||
| - 'name == "foundatio.lock.wait.time"' | ||
| - 'name == "ex.posts.size"' | ||
| - 'name == "ex.events.parse.jsoneventparserplugin"' | ||
| - 'name == "ex.events.field.count"' | ||
| - 'name == "ex.eventpipeline.markascriticalaction"' | ||
| filter/drop_cache_spans: | ||
| error_mode: ignore | ||
| traces: | ||
| span: | ||
| - 'attributes["db.system"] == "redis" and status.code != STATUS_CODE_ERROR and (resource.attributes["service.name"] == "exceptionless-web" or resource.attributes["service.name"] == "job-event-posts")' | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Fresh evidence after the prior thread is that Useful? React with 👍 / 👎. |
||
| - 'name == "Message: EntityChanged"' | ||
| service: | ||
| pipelines: | ||
| traces: | ||
| exporters: [otlp, otlp/elastic] | ||
| processors: [filter/drop_cache_spans, batch] | ||
| exporters: [otlphttp, otlp/elastic] | ||
| metrics: | ||
| exporters: [otlp, otlp/elastic] | ||
| processors: [filter/drop_unused_metrics, batch] | ||
|
ejsmith marked this conversation as resolved.
|
||
| exporters: [otlphttp, otlp/elastic] | ||
Uh oh!
There was an error while loading. Please reload this page.