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
Note: If you have a feature request, you should contact support so the request can be properly tracked.
Output of the info page
Agent (v7.53.0) ....
Additional environment details (Operating System, Cloud provider, etc):
Steps to reproduce the issue:
Describe the results you received:
datadog-agent status output is full of messages of the following form:
Warning: Expected a float for rpc.callQueueLen, received 0 Warning: Expected a float for rpc.SentBytes, received 10169111223 ....
Describe the results you expected:
Additional information you deem important (e.g. issue happens only occasionally):
IIUC this is the offending line : https://github.com/DataDog/integrations-core/blob/master/ambari/datadog_checks/ambari/ambari.py#L101. It could be if isinstance(value, (float, int)): instead.
if isinstance(value, (float, int)):
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Note: If you have a feature request, you should contact support so the request can be properly tracked.
Output of the info page
Additional environment details (Operating System, Cloud provider, etc):
Steps to reproduce the issue:
Describe the results you received:
datadog-agent status output is full of messages of the following form:
Warning: Expected a float for rpc.callQueueLen, received 0
Warning: Expected a float for rpc.SentBytes, received 10169111223
....
Describe the results you expected:
Additional information you deem important (e.g. issue happens only occasionally):
IIUC this is the offending line : https://github.com/DataDog/integrations-core/blob/master/ambari/datadog_checks/ambari/ambari.py#L101. It could be
if isinstance(value, (float, int)):
instead.The text was updated successfully, but these errors were encountered: