-
Notifications
You must be signed in to change notification settings - Fork 49
Description
Bug Report
Which version of the demo you are using? (please provide either a specific
https://github.com/elastic/opentelemetry-demo/tree/1.11.5
Symptom
logs processor is not emitting event.dataset some UI do not work properly
What is the expected behavior?
logs processor should emit event.dataset
What is the actual behavior?
event.dataset is missing
Reproduce
Run the otel demo add the metrics and logs daemonset.
Fix
This line should have attributes/dataset as part of the list of processors
| processors: [batch, k8sattributes, resourcedetection/system, resourcedetection/eks, resourcedetection/gcp, resource/demo, resource/k8s, resource/cloud, attributes/k8s_logs_dataset] |
Is
processors: [batch, k8sattributes, resourcedetection/system, resourcedetection/eks, resourcedetection/gcp, resource/demo, resource/k8s, resource/cloud, attributes/k8s_logs_dataset]
Should be
processors: [batch, k8sattributes, resourcedetection/system, resourcedetection/eks, resourcedetection/gcp, resource/demo, resource/k8s, resource/cloud, attributes/k8s_logs_dataset, attributes/dataset]