X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/3ccf466e2f335248d614546536e685e0d33ac32b..9ed49e50a6b622d884a10c0ede1ffae9025e48bb:/munin/nominatim_importlag diff --git a/munin/nominatim_importlag b/munin/nominatim_importlag index a118e0b6..9f401311 100755 --- a/munin/nominatim_importlag +++ b/munin/nominatim_importlag @@ -2,6 +2,9 @@ # # Plugin to monitor the age of the imported data in the rendering db # +# Can be configured through libpq environment variables, for example +# PGUSER, PGDATABASE, etc. See man page of psql for more information +# # Parameters: # # config (required) @@ -21,7 +24,7 @@ if [ "$1" = "config" ]; then fi -delay=`psql -d nominatim -c "copy (select extract(epoch from timezone('utc', now())-lastimportdate)::int from import_status) to stdout"` +delay=`psql -c "copy (select extract(epoch from timezone('utc', now())-lastimportdate)::int from import_status) to stdout"` echo "age.value $delay"