Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change default listen address to 127.0.0.1 instead of 0.0.0.0 #23

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 6 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Prometheus Postgres
===================
# Prometheus Postgres

[![Actions Status](https://github.com/ome/ansible-role-prometheus-postgres/workflows/Molecule/badge.svg)](https://github.com/ome/ansible-role-prometheus-postgres/actions)
[![Ansible Role](https://img.shields.io/badge/ansible--galaxy-prometheus_postgres-blue.svg)](https://galaxy.ansible.com/ui/standalone/roles/ome/prometheus_postgres/)
Expand All @@ -11,33 +10,27 @@ In future this should be changed to use an unprivileged account.

See https://github.com/prometheus-community/postgres_exporter



Role Variables
--------------
## Role Variables

All variables are optional:

- `prometheus_postgres_dbname`: The database name
- `prometheus_postgres_data_source_name`: implies `DATA_SOURCE_NAME` ENV variable in the [postgres_exporter](https://github.com/wrouesnel/postgres_exporter)
- `prometheus_postgres_data_source_name`: implies `DATA_SOURCE_NAME` ENV variable in the [postgres_exporter](https://github.com/wrouesnel/postgres_exporter)
- `prometheus_postgres_addr`: Serve metrics on this address, default `0.0.0.0`
- `prometheus_postgres_port`: Serve metrics on this port, default `9187`
- `prometheus_postgres_query_directory`: the directory containing query files which will be loaded by the exporter, default is `files/`
- `prometheus_postgres_query_filenames`: A list of additional query files from `prometheus_postgres_query_directory`, default `[queries-default.yml]`
- `prometheus_postgres_version`: the `postgres_exporter` version to be installed, default `0.4.6`
- `prometheus_postgres_sha256`: the SHA256 checksum of the `postgres_exporter` bundle of version `prometheus_postgres_version`, default: `9ed457c9a6d3a1e0132b3fe10f1d072457a667b009993a73e90b47ca99cc5bca`
- `prometheus_postgres_system_user`: The OS user used to run `postgres_exporter`, default: `postgres` (OS user is created only when differs from defaults).


Example playbook
----------------
## Example playbook

- hosts: localhost
roles:
- role: ome.prometheus_postgres
prometheus_postgres_dbname: test


Author Information
------------------
## Author Information

[email protected]
1 change: 1 addition & 0 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ prometheus_postgres_dbname: postgres
prometheus_postgres_data_source_name: "user=postgres dbname=\
{{ prometheus_postgres_dbname }} host=/var/run/postgresql/ sslmode=disable"

prometheus_postgres_addr: 0.0.0.0
prometheus_postgres_port: 9187

prometheus_postgres_query_filenames:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ User={{ prometheus_postgres_system_user }}
Environment="DATA_SOURCE_NAME={{ prometheus_postgres_data_source_name }}"
ExecStart=/opt/prometheus/postgres_exporter/postgres_exporter \
--extend.query-path /etc/prometheus/postgres-queries.yml \
--web.listen-address :{{ prometheus_postgres_port }}
--web.listen-address {{ prometheus_postgres_addr }}:{{ prometheus_postgres_port }}

[Install]
WantedBy=multi-user.target