![](https://secure.gravatar.com/avatar/3aa281fe71ed25158ac038a1493907c9.jpg?s=120&d=mm&r=g)
Am Di, 26.10.2021 um 06:37 schrieb Markus Klock via observium observium@observium.org:
$config['influxdb']['enabled'] = FALSE; // Enable or disable posting data to InfluxDB $config['influxdb']['server'] = 'localhost:8086'; // Where is InfluxDB listening? $config['influxdb']['db'] = 'observium'; // Which InfluxDB database?
Nix, I didn't know about that feature!
I'd like to do sth. like
$config['influxdb']['server'] = 'https://user:password@influx-server.com:8086';
as latter versions of influx removed the possibility of unauthenticated databases (at least that's what our influx guy told me) and our instance only supports https.
Changing the relevant line in influx.inc.php to
$url = $config['influxdb']['server'] . '/write?db=' . $config['influxdb']['db'];
is not backwards compatible but leads to a correct behavior in our instance :).
Steffen