]> git.openstreetmap.org Git - nominatim.git/blob - munin/nominatim_importlag
Merge branch 'master' of http://github.com/twain47/Nominatim
[nominatim.git] / munin / nominatim_importlag
1 #!/bin/sh
2 #
3 # Plugin to monitor the age of the imported data in the rendering db
4 #
5 # Parameters: 
6 #
7 #       config   (required)
8 #       autoconf (optional - used by munin-config)
9 #
10  
11 if [ "$1" = "config" ]; then
12  
13         echo 'graph_title Data import lag' 
14         echo 'graph_args --base 1000 -l 0' 
15         echo 'graph_vlabel minutes' 
16         echo 'graph_category nominatim' 
17         echo 'age.label DB import age' 
18         echo 'age.type GAUGE' 
19         echo 'age.cdef age,60,/'
20         exit 0
21 fi
22  
23
24 delay=`psql -d nominatim -c 'copy (select extract(epoch from timezone('utc', now())-lastimportdate)::int from import_status) to stdout'`
25  
26  
27 echo "age.value $delay"