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
Hi,
the following sample commands yield wrong results in sampler:
sampler
/usr/bin/ps -ef | grep mbatchd | grep -v grep | wc -l
mbatchd
/usr/bin/ps -eLf | grep 'mbatchd' | grep -v 'grep' | wc -l
The whole configuration block looks like
runcharts: - title: mbatchd processes and threads position: [[0, 0], [45, 19]] rate-ms: 2000 legend: enabled: true details: true scale: 0 items: - label: mbatchd processes sample: /usr/bin/ps -ef | grep mbatchd | grep -v grep | wc -l - label: mbatchd threads sample: /usr/bin/ps -eLf | grep 'mbatchd' | grep -v 'grep' | wc -l
Any idea what could be the problem? Is there a way to see, how sampler evaluates the sample commands?
sample
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
the following sample commands yield wrong results in
sampler
:/usr/bin/ps -ef | grep mbatchd | grep -v grep | wc -l
consistently results in one more than the number ofmbatchd
processes/usr/bin/ps -eLf | grep 'mbatchd' | grep -v 'grep' | wc -l
results in around 20 to 30 more than the number ofmbatchd
threadsThe whole configuration block looks like
Any idea what could be the problem? Is there a way to see, how
sampler
evaluates thesample
commands?The text was updated successfully, but these errors were encountered: