SHA256
1
0
forked from pool/pgbadger
pgbadger/README.SUSE

120 lines
3.8 KiB
Plaintext
Raw Normal View History

Accepting request 1130189 from home:lrupp:branches:server:database:postgresql Move the cron and systemd files out into the documentation directory and include an extended README.SUSE to show how to work with them. - update to 12.3 This is a maintenance release of pgBadger that fixes issues reported by users since last release. It also adds some new features: * Add option --include-pid to only report events related to a session pid (%p). Can be used multiple time. Thanks to Henrietta Dombrovskaya for the feature request. * Add option --include-session to only report events related to the session id (%c). Can be used multiple time. Thanks to Henrietta Dombrovskaya for the feature request. * Add option --dump-raw-csv to only parse the log and dump the information into CSV format. No further processing is done, no report is generated. Thanks to Henrietta Dombrovskaya for the feature request. Here is the complete list of changes and acknowledgments: * Update pgFormatter to version 5.5 * Fix end date of parsing with jsonlog format. Thanks to jw1u1 for the report. * Fix typo in "Sessions per application". Thanks to fairyfar for the patch. * Fix "INSERT/UPDATE/DELETE Traffic" chart bug. Thanks to fairyfar for the patch. * Fix parsing of orphan lines with bind queries. Thanks to youxq for the report. * Fix Analyze per table report with new PG versions. Thanks to Jean-Christophe Arnu for the patch. * Fix syslog entry parser when the syslog timestamp contains milliseconds. Thanks to Pavel Rabel for the report. - add systemd timer examples: beside the existing cron job example, this allows people to get an idea how to automate the generation of reports - introduce local cron macro: only recommend cron on older distributions and leave the cron example file where it was historically (but place it into the examples folder on newer distributions). - get rid of old suse_version 11.3 check OBS-URL: https://build.opensuse.org/request/show/1130189 OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/pgbadger?expand=0&rev=4
2023-12-07 08:21:48 +00:00
Dear customer,
we provide two examples in this directory, which might help you
implementing an automatism for pgbadger on your local systems.
Security considerations:
a) Running pgbadger as root might be simple, but is in no way secure.
We do NOT recommend to do this.
b) Running pgbadger as user postgres is possible, but - depending on
your local security guideline - also not allowed.
c) Running pgbadger as dedicated user is the most secure and
recommended way of operation. This requires some adjustments on
your postgresql.conf and at least a restart of your database
service.
We will follow this solution in our documentation below.
Please note, however, that to make use of such a setting, you'll
need to alter the 'log_directory' to store the log files somewhere
outside the cluster data directory.
In any case, it's unwise to make the log files world-readable,
since they might contain sensitive data.
= Prerequisite
1. Think about a (new) user that executes the script.
We will create a new user called 'pgbadger', who will later be used
to execute the script:
/usr/sbin/useradd -r -g postgres -M -d /srv/www/htdocs/pgbadger/ -s /bin/false -c "User for pgbadger" pgbadger
2. Prepare a local directory, that can be used to store the generated
reports of pgbadger.
We suggest to use /srv/www/htdocs/pgbadger/ here in the examples.
This directory is below the usual WEBROOT of any webserver. which
would allow to view the files directly in a browser.
A command to create such a directory therefor looks like:
install -o pgbadger -g wwwrun -m 0750 -d /srv/www/htdocs/pgbadger/
3. Create a new directory to store postgresql logs.
Think about a secure directory for storing your log files and create
this directory via:
install -o postgres -g postgres -m 0700 -d /var/log/pgsql/
4. Adjust the configuration of your postgresql server.
You need the following settings in a standard postgresql-server installation
in /var/lib/pgsql/data/postgresql.conf for this:
log_directory = '/var/log/pgsql'
log_filename = 'postgresql-%Y-%m-%d.log'
log_file_mode = 0640
log_rotation_age = 1d
log_rotation_size = 0
Note: these changes require a restart of your postgresql server. If you
have SELinux or Apparmor enabled, please adjust the configuration
before you restart the service.
Same applies obviously to any service, which connects to your
database.
Once all preparations are done, execute:
rcpostgresql restart
As result, your postgresql server should log now into this new directory.
The files in this directory should belong to the user 'postgres',
group 'postgres' with file permissions 0640:
-rw-r----- 1 postgres postgres 997 Jan 1 05:58 /var/log/pgsql/postgresql-2024-01-31.log
Now it's time to work on the automation.
= Using a cron job
For historical reasons, we provide a small cron script in the following
folder, that can be adjusted to your needs:
/usr/share/doc/packages/pgbadger/example/pgbadger-cron.sh
Just place the file into the /etc/cron.d/ directory and adjust it to your needs:
cp -v /usr/share/doc/packages/pgbadger/example/pgbadger-cron.sh /etc/cron.d/pgbadger
= Using systemd timer
This is the recommended way.
Copy the needed files to your /etc/systemd/system directory:
cp -v /usr/share/doc/packages/pgbadger/example/pgbadger.timer /etc/systemd/system/
cp -v /usr/share/doc/packages/pgbadger/example/pgbadger.service /etc/systemd/system/
Once done, please adjust the files (see comments inline) to your needs.
After that, please enable the systemd timer with the following two
commands:
systemctl daemon-reload
systemctl enable pgbadger.timer
----
And remember to have a lot of fun!
Your SUSE Team.