X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/7fba4ec99738cc69ee773e7f79418a9353029aaa..ce32d77a658afe254d792d3a9322a620dccddce9:/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"