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
7.2.1
16.4
node butler.js
macOS
x86_64
2021-November
The code for creating telemetry data includes this line:
uptimeMonitor_storeInInfluxdb: globals.config.has('Butler.uptimeMonitor.storeInInfluxdb.butlerSOSMemoryUsage') ? globals.config.get('Butler.uptimeMonitor.storeInInfluxdb.butlerSOSMemoryUsage') : false,
Which is just plain wrong as this is Butler, not Butler SOS...
Should be something like this to get telemetry data on whether Butler stores uptime data in InfluxDB:
uptimeMonitor_storeInInfluxdb: globals.config.has('Butler.uptimeMonitor.storeInInfluxdb.enable') ? globals.config.get('Butler.uptimeMonitor.storeInInfluxdb.enable') : false,
No response
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
What version of Butler are you using?
7.2.1
What version of Node.js are you using? Not applicable if you use the standalone version of Butler.
16.4
What command did you use to start Butler?
node butler.js
What operating system are you using?
macOS
What CPU architecture are you using?
x86_64
What Qlik Sense versions are you using?
2021-November
Describe the Bug
The code for creating telemetry data includes this line:
Which is just plain wrong as this is Butler, not Butler SOS...
Should be something like this to get telemetry data on whether Butler stores uptime data in InfluxDB:
Expected Behavior
No response
To Reproduce
No response
The text was updated successfully, but these errors were encountered: