]> git.openstreetmap.org Git - nominatim.git/blobdiff - munin/nominatim_importlag
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / munin / nominatim_importlag
index 657938dbd2672a1fcfd95aab951f251f7c7f756b..9f40131194aa2ee18e6a1fd97b9d08fd0f0dc1d6 100755 (executable)
@@ -2,6 +2,9 @@
 #
 # Plugin to monitor the age of the imported data in the rendering db
 #
 #
 # 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)
 # Parameters: 
 #
 #       config   (required)
@@ -21,7 +24,7 @@ if [ "$1" = "config" ]; then
 fi
  
 
 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"
  
  
 echo "age.value $delay"