e-vrvr
e-vrvr
Sure ``` metrics: frequency: 1m reporters: - type: influxdb protocol: https host: influxdb.example.com port: 443 database: test auth: user:password tags: host: dev prefix: mymetrics_ precision: 10s frequency: 10s groupGauges: yes...
what I did was extending `InfluxDbHttpSender` with this code ``` if (authString != null && !authString.isEmpty()) { this.authStringEncoded = Base64.encodeBase64String(authString.getBytes(Charsets.UTF_8)).trim(); // this is the one single difference from parent class...