Blip
Blip API endpoints return information about Blip: version, configuration, and so forth.
Return final Blip config including config.monitors but not monitors loaded from other sources.
Query
| Key | Value | Required | Purpose |
|---|---|---|---|
json | (None) | No | Return config JSON-encoded instead of YAML-encoded |
Response
api:
bind: 127.0.0.1:7522
mysql:
timeout-connect: 10s
username: blip
Default response encoding is YAML.
Use query key json to return with JSON encoding.
Returns registered metric collectors and sinks.
Response
{
"collectors": [
"status.global",
"var.global"
],
"sinks": [
"datadog",
"log",
"signalfx"
],
}
Returns the Blip version (same as --version).
Response
"v1.0.75"
Toggles debug logging.
Response
{"debugging":true}