mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-10 11:42:13 +03:00
9ed49e50a6
Use PGDATABASE environment variable instead.
47 lines
1.4 KiB
Bash
Executable File
47 lines
1.4 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# 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)
|
|
# autoconf (optional - used by munin-config)
|
|
#
|
|
|
|
if [ "$1" = "config" ]; then
|
|
|
|
echo 'graph_title Requests by API call'
|
|
echo 'graph_args --base 1000 -l 0'
|
|
echo 'graph_vlabel requests per minute'
|
|
echo 'graph_category nominatim'
|
|
echo 'z1.label reverse'
|
|
echo 'z1.draw AREA'
|
|
echo 'z1.type GAUGE'
|
|
echo 'z2.label search (successful)'
|
|
echo 'z2.draw STACK'
|
|
echo 'z2.type GAUGE'
|
|
echo 'z3.label search (no result)'
|
|
echo 'z3.draw STACK'
|
|
echo 'z3.type GAUGE'
|
|
echo 'z4.label details'
|
|
echo 'z4.draw STACK'
|
|
echo 'z4.type GAUGE'
|
|
exit 0
|
|
fi
|
|
|
|
|
|
query="select count(*)/5.0 from new_query_log where starttime > (now() - interval '5 min') and "
|
|
|
|
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"
|
|
echo "z3.value $searchn"
|
|
echo "z4.value $details"
|