influxdb/cmd/ifqld
Nathaniel Cook 08eb19805d chore(CI): Create nightly builds of ifqld
The builds are really anytime a commit is made to master not nightly.
Builds use goreleaser with the snapshot setting.
2018-05-23 09:13:46 -06:00
..
README.md Relocated several source files from private repo to here. 2018-05-17 11:35:53 -04:00
main.go chore(CI): Create nightly builds of ifqld 2018-05-23 09:13:46 -06:00

README.md

IFQL

This process provides an implementation of the idpe.Query interface via the network.

Exposed Metrics

The ifqld process exposes a Prometheus endpoint on port 8093 by default.

The following metrics are exposed:

Metric Name Prometheus Type Labels Description
http_api_requests_total counter handler,method,path,status Number of requests received on the server
http_api_requests_duration_seconds histogram handler,method,path,status Histogram of times spent on all http requests
query_control_compiling_active gauge org Number of queries actively compiling
query_control_compiling_duration_seconds histogram org Histogram of times spent compiling queries
query_control_queueing_active gauge org Number of queries actively queueing
query_control_queueing_duration_seconds histogram org Histogram of times spent queueing queries
query_control_requeueing_active gauge org Number of queries actively requeueing
query_control_requeueing_duration_seconds histogram org Histogram of times spent requeueing queries
query_control_planning_active gauge org Number of queries actively planning
query_control_planning_duration_seconds histogram org Histogram of times spent planning queries
query_control_executing_active gauge org Number of queries actively executing
query_control_executing_duration_seconds histogram org Histogram of times spent executing queries

For the http_api metrics the handler label is query for this process.