-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prometheus: support blackbox exporter without MetricsPort
because blackbox exporter is also handy for operators that run stable tor releases (not MetricsPort support available yet) previously it was not possible to generate the blackbox exporter scrape configuration without enabling MetricsPort add support for blackbox exporters behind HTTP basic auth add support for HTTPS to connect to blackbox exporter add kitchen test scenario for blackbox exporter without MetricsPort configuration: t-guard-blackbox-exporter
- Loading branch information
Showing
7 changed files
with
49 additions
and
10 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
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
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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
- hosts: all | ||
vars_files: | ||
- vars/dry-run-vars.yml | ||
vars: | ||
- tor_gen_blackbox_scrape_config: True | ||
- tor_blackbox_exporter_username: testuser | ||
roles: | ||
- "{{ playbook_dir | regex_replace('test/integration/default$') }}" |