Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)
We use the database called "inspectit". You do not have to create it as the CMR monitoring will create the database if it is not available.
Disable Reporting
As of version 0.7.1, InfluxDB reports anonymous data once every 24 hours to m.influxdb.com. To minimize our bandwidth usage, we will disable this reporting. Find the file /etc/influxdb/influxdb.conf. Change the property reporting-disabled to true.
reporting-disabled = true
Admin Web-Interface
InfluxDB provides an admin web-interface which is disabled by default. It can be enabled by setting the following configuration parameter:
[admin]
https-enabled = true
Enable Authentication
By default, InfluxDB allows full access to the system for all (anonymous) users.
By default, inspectIT uses an HTTP connection to influxDB. If you would like to secure the connection with SSL, you need to enables this in the influxDB configuration. Therefore, you need to specify the following configuration properties. For more details please refer to the documentation of influxDB: https://docs.influxdata.com/influxdb/v1.0/administration/config#https-enabled-false-1
[http]
...
# Determines whether HTTPS is enabled.
https-enabled = true
...
# The SSL certificate to use when HTTPS is enabled.
https-certificate = "<bundled-certificate-file>.pem"
...
# Use a separate private key location.
https-private-key = "<bundled-certificate-file>.pem"
Verify the installation
On a successful start, the service manager script will provide the following output.
Setting ulimit -n 65536
Starting the process influxdb [ OK ]
influxdb process was started [ OK ]
Please also navigate to http://[yourserver]:8083 and verify that you see the web-based view of influxDB.
Point inspectIT to your influxDB instance
Once you have influxDB running, you need to setup inspectIT and point to the database you want to write data to. Please check Long-term Data Persistence Configuration for short instructions on how to do that.