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

Support the web config file with TLS server config #18

Open
wants to merge 1 commit 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
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ All variables are optional:
- `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).
- `prometheus_postgres_tls_server_config`: The TLS server web config. [Documented here](https://github.com/prometheus/exporter-toolkit/tree/v0.1.0/https).
Example:
```yaml
node_exporter_tls_server_config:
cert_file: /etc/node_exporter/tls.cert
key_file: /etc/node_exporter/tls.key
```


Example playbook
Expand Down
2 changes: 2 additions & 0 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ prometheus_postgres_query_filenames:
prometheus_postgres_query_directory: files/

prometheus_postgres_system_user: postgres

prometheus_postgres_web_config: '/etc/prometheus/web-config.yml'
9 changes: 9 additions & 0 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,15 @@
notify:
- restart prometheus-postgres

- name: prometheus postgres | server web config
become: true
template:
dest: "{{ prometheus_postgres_web_config }}"
src: web-config.yml.j2
mode: 0644
notify:
- restart prometheus-postgres

- name: prometheus postgres | server systemd service
become: true
template:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ 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 \
{% if prometheus_postgres_tls_server_config %}
--web.config.file={{ prometheus_postgres_web_config }} \
{% endif %}
--web.listen-address :{{ prometheus_postgres_port }}

[Install]
Expand Down
6 changes: 6 additions & 0 deletions templates/web-config.yml.j2
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
{{ ansible_managed | comment }}
{% if prometheus_postgres_tls_server_config | length > 0 %}
tls_server_config:
{{ prometheus_postgres_tls_server_config | to_nice_yaml | indent(2, true) }}
{% endif %}