]> git.openstreetmap.org Git - nominatim.git/commitdiff
remove hard-coded DB name in munin plugins
authorSarah Hoffmann <lonvia@denofr.de>
Sun, 7 Jul 2013 14:36:01 +0000 (16:36 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Sun, 7 Jul 2013 14:36:01 +0000 (16:36 +0200)
Use PGDATABASE environment variable instead.

munin/nominatim_importlag
munin/nominatim_requests

index a118e0b652972e47b5bb09f62badc91202d40665..9f40131194aa2ee18e6a1fd97b9d08fd0f0dc1d6 100755 (executable)
@@ -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"
index 4e149859779d8c710b1ed011d8224f018a2c0c80..ac083fc2d5acabe69279407779b19ba411ab2a4b 100755 (executable)
@@ -2,6 +2,9 @@
 #
 # Plugin to monitor the types of requsts made to the API
 #
+# Can be configured through libpq environment variables, for example
+# PGUSER, PGDATABASE, etc. See man page of psql for more information.
+#
 # Parameters: 
 #
 #       config   (required)
@@ -32,10 +35,10 @@ fi
 
 query="select count(*)/5.0 from new_query_log where starttime > (now() - interval '5 min') and "
 
-reverse=`psql -d nominatim -c "copy ($query type='reverse') to stdout"`
-searchy=`psql -d nominatim -c "copy ($query type='search' and results>0) to stdout"`
-searchn=`psql -d nominatim -c "copy ($query type='search' and results=0) to stdout"`
-details=`psql -d nominatim -c "copy ($query type='details') to stdout"`
+reverse=`psql -c "copy ($query type='reverse') to stdout"`
+searchy=`psql -c "copy ($query type='search' and results>0) to stdout"`
+searchn=`psql -c "copy ($query type='search' and results=0) to stdout"`
+details=`psql -c "copy ($query type='details') to stdout"`
  
 echo "z1.value $reverse"
 echo "z2.value $searchy"