We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
receiver/filestats
when you want to count the files in a directory, the metric does not show the directory name, so you cannot distinguish different receivers.
filestats/1: include: /tmp/test1/test* metrics: file.count: enabled: true resource_attributes: file.path: enabled: true filestats/2: include: /tmp/test2/* metrics: file.count: enabled: true resource_attributes: file.path: enabled: true
Only one metric is generated, so you cannot distinguish between the two:
file_count{host_name="localhost", os_type="linux"}
Add the directory attribute to be able to distinguish the different file_count metrics:
file_count{directory="/tmp/test1", host_name="localhost", os_type="linux"} file_count{directory="/tmp/test2", host_name="localhost", os_type="linux"}
In this way the metrics of both directories can be distinguished.
No response
The text was updated successfully, but these errors were encountered:
Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself.
Sorry, something went wrong.
The file path should be present as a resource attribute. The filestatsreceiver doesn't set the host_name and os_type attributes.
host_name
os_type
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
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: