Open josepcorrea opened 1 week ago
Pinging code owners:
receiver/filestats: @atoulme
See Adding Labels via Comments if you do not have permissions to add labels yourself.
The file path should be present as a resource attribute. The filestatsreceiver doesn't set the host_name
and os_type
attributes.
Please see this file for what the receiver generates: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/receiver/filestatsreceiver/testdata/integration/expected.yaml
Thanks @atoulme :
Is there a way to display the path directory?
The attributes host_name and os_type are added with processing resourcedetection component like this:
resourcedetection/system: detectors: ["system"] system: hostname_sources: ["os"] resource_attributes: host.name: enabled: true
Component(s)
receiver/filestats
Is your feature request related to a problem? Please describe.
when you want to count the files in a directory, the metric does not show the directory name, so you cannot distinguish different receivers.
Only one metric is generated, so you cannot distinguish between the two:
Describe the solution you'd like
Add the directory attribute to be able to distinguish the different file_count metrics:
In this way the metrics of both directories can be distinguished.
Describe alternatives you've considered
No response
Additional context
No response