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