Table of Contents
List of Examples
server parameterport parameterdatabase parameterinfluxdbc_measure() usageinfluxdbc_measureend() usageinfluxdbc_sub() usageinfluxdbc_subend() usageinfluxdbc_push() usageinfluxdbc_long() usageTable of Contents
Address of InfluxDB server.
Default value is empty.
Address of InfluxDB server.
Default value is 8086.
Start a measure group with the given name.
This function can be used from ANY_ROUTE.
Example 1.4. influxdbc_measure() usage
...
request_route {
...
influxdbc_measure("stats");
...
}
...
End the current measure group.
This function can be used from ANY_ROUTE.
Start a measure subgroup with the given name.
This function can be used from ANY_ROUTE.
End the current measure subgroup.
This function can be used from ANY_ROUTE.
Push accumulated values to the server.
This function can be used from ANY_ROUTE.