influxdata / nginx-influxdb-module

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to set the db for writing into influxdb?

daniyel opened this issue · comments

Hi.

I just wanted to test this module. After building it dynamically, my next step was to include it in nginx.conf and configure it, but then I have realised that there is no option to define db for influxdb where it should write the data. I went through the code to see if there is some default setting, but I did not find it. Maybe I am looking at the wrong place. Is there already a setting for this or is it still missing?

Best regards.

HI @daniyel - you're right, there's no option to configure the db where to write.

This is intended because this module uses UDP to write to Influx (or telegraf) and the udp configuration does not want a database on client side because you specify the database name in the InfluxDB (or telegraf) configuration itself.

You can see an InfluxDB configuration example here in the integration tests: https://github.com/influxdata/nginx-influxdb-module/blob/master/integration/influxdb.conf#L118-L127

I'm closing since this behavior is intended, but please feel free to continue the discussion.