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
The $graphite->send() path parameter should not have trailing dot as it's added by default
For instance instead of
$graphite->send(path => "vi.", data => $vcenter_exec_duration_h)
We should use
$graphite->send(path => "vi", data => $vcenter_exec_duration_h)
If not, when enabling graphite trace, we see
vmw..xxx.quickstats.cpu.demand 102206 1466681776 vmw..xxx.quickstats.cpu.distributedCpuEntitlement 88651 1466681776 vmw..xxx.quickstats.cpu.effective 457488 1466681776 vmw..xxx.quickstats.cpu.staticCpuEntitlement 453552 1466681776
The text was updated successfully, but these errors were encountered:
Update ViPullStatistics.pl
2c69ae0
+ vm.CpuUtilization #82
vmdude
No branches or pull requests
The $graphite->send() path parameter should not have trailing dot as it's added by default
For instance instead of
We should use
If not, when enabling graphite trace, we see
The text was updated successfully, but these errors were encountered: