Compare commits

...

3 commits
v0.0.2 ... main

Author SHA1 Message Date
30b76f6590 Merge pull request 'chore: Configure Renovate' (#1) from renovate/configure into main
Reviewed-on: #1
2025-03-06 07:51:22 +00:00
1e76c2883f Add renovate.json 2025-03-06 07:31:06 +00:00
158c725ab4
feat: Add Postgres Connection Exporter service
Introduced a new systemd service for the Postgres Connection Exporter, enhancing monitoring capabilities by tracking database connections. This service configuration ensures it starts after the network is available, runs under a dedicated user and group for security, and is set to automatically restart upon failure, ensuring high availability. The setup aims to streamline deployment and maintenance processes for systems requiring constant database connection monitoring.

The service is designed to be easily integrated into multi-user environments, adhering to best practices for system services.
2024-05-17 15:54:25 +02:00
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,13 @@
[Unit]
Description=Postgres Connection Exporter
After=network.target
[Service]
User=postgres-connection-exporter
Group=postgres-connection-exporter
ExecStart=/srv/postgres-connection-exporter/bin/postgres-connection-exporter
Restart=always
WorkingDirectory=/srv/postgres-connection-exporter
[Install]
WantedBy=multi-user.target

6
renovate.json Normal file
View file

@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}