Skip to content

Commit

Permalink
Fixed invalid rpn expression in the Query Cache graph. Closes kjellm#41
Browse files Browse the repository at this point in the history
  • Loading branch information
Kjell-Magne Øierud committed Aug 5, 2011
1 parent 09a1505 commit 62db705
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Munin/MySQL/Graph/QueryCache.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ sub graphs { return {
data_sources => [
{name => 'Qcache_queries_in_cache', label => 'Queries in cache (K)',
info => 'The number of queries registered in the query cache.',
cdef => 'he_queries_in_cache,1024,/',
cdef => 'Qcache_queries_in_cache,1024,/',
type => 'GAUGE'},
{name => 'Qcache_hits', label => 'Cache hits',
info => 'The number of query cache hits.'},
Expand Down
2 changes: 1 addition & 1 deletion t/config.out
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ graph_title Query Cache
graph_vlabel Commands per ${graph_period}
graph_category mysql
Qcache_queries_in_cache.info The number of queries registered in the query cache.
Qcache_queries_in_cache.cdef he_queries_in_cache,1024,/
Qcache_queries_in_cache.cdef Qcache_queries_in_cache,1024,/
Qcache_queries_in_cache.draw LINE1
Qcache_queries_in_cache.min 0
Qcache_queries_in_cache.label Queries in cache (K)
Expand Down

0 comments on commit 62db705

Please sign in to comment.