-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(#99): add couch2pg exporter compose file to run stand alone with…
…out watchdog (#102) * Add compose file to allow sql exporter to run stand alone with out watchdog * Update stand-alone.yml * feat(couchdb-backlog): add files to gather remote couch2pg metrics * feat(sql): move compose files to have compose in name per feedback * feat(sql): remove custom config file that shouldn't have been committed per feedback
- Loading branch information
1 parent
ee24210
commit 7817175
Showing
3 changed files
with
20 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
services: | ||
|
||
prometheus: | ||
volumes: | ||
- ./exporters/postgres/scrape-custom.yml:/etc/prometheus/scrape_configs/cht-postgres.yml:ro | ||
|
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,12 @@ | ||
services: | ||
|
||
prometheus: | ||
image: alpine | ||
volumes: | ||
|
||
sql_exporter: | ||
volumes: | ||
- "./:/etc/sql_exporter/" | ||
|
||
networks: | ||
cht-watchdog-net: |