-
Notifications
You must be signed in to change notification settings - Fork 814
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The service check uses the `varnishadm debug.health` command to get the health of available backends. One check per backend will be submitted, tagged by the backend name. The BIG question here is how we will let users enable this because the varnishadm command requires access to the secret key which has root permissions by default (and is owned by root).
- Loading branch information
1 parent
27d986b
commit 70f49b9
Showing
3 changed files
with
186 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,23 @@ | ||
init_config: | ||
|
||
instances: | ||
# - varnishstat: (required) String path to varnishstat binary | ||
# name: (optional) String name of varnish instance. Passed to the -n parameter of varnishstat. Will also tag each metric with this name. | ||
# tags: (optional) Additional tags to tag each metric with | ||
# | ||
# Example: | ||
# | ||
- varnishstat: /usr/bin/varnishstat | ||
name: myvarnishinstance | ||
tags: | ||
- instance:production | ||
# The full path to the varnishstat binary | ||
# - varnishstat: /usr/bin/varnishstat | ||
|
||
# The (optional) name will be used in the varnishstat command for the | ||
# -n argument and will add a name:$instancename tag to all metrics. | ||
# name: myvarnishinstance | ||
|
||
# The (optional) list of tags will be applied to every emitted metric. | ||
# tags: | ||
# - instance:production | ||
|
||
# The (optional) path to the varnishadm binary will signal the check to | ||
# emit a service check status on backend health using `debug.health`. | ||
# The service check will be tagged by backend. NOTE: The Agent must | ||
# be able to access the Varnish secretfile for this to work. | ||
# varnishadm: /usr/bin/varnishadm | ||
|
||
# The (optional) path to the varnish secretfile will be used in the | ||
# varnishadm command, if enabled. | ||
# secretfile: /etc/varnish/secret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters