-
Notifications
You must be signed in to change notification settings - Fork 0
/
useful_prometheus_queries.txt
37 lines (30 loc) · 1.53 KB
/
useful_prometheus_queries.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#REPOSITORY
org_hippoecm_repository_Repository_QueryDurationMillisAverageLastHour
org_hippoecm_repository_Repository_DatabaseBundleGetAverageLastHourPerSecond
org_hippoecm_repository_Repository_DatabaseBundleGetDurationMillisAverageLastHour
org_hippoecm_repository_Repository_DatabaseBundleWriteAverageLastHourPerSecond
org_hippoecm_repository_Repository_DatabaseBundleWriteDurationMillisAverageLastHour
org_hippoecm_repository_Repository_QueriesLastHourPerSecond
org_hippoecm_repository_Repository_QueryDurationMillisAverageLastHour
org_hippoecm_repository_Repository_BundleCacheHitLastHourPerSecond
org_hippoecm_repository_Repository_BundleCacheMissLastHourPerSecond
org_hippoecm_repository_Repository_BundleCacheSizeMbLastHourAverage
#HST CACHE
org_onehippo_hst_Caching_CacheHitRate
org_onehippo_hst_Caching_CacheMissRate
org_onehippo_hst_Caching_FirstLevelCacheHitRate
org_onehippo_hst_Caching_FirstLevelCacheMissRate
org_onehippo_hst_Caching_FirstLevelCacheSize
#SESSION POOLS
org_onehippo_hst_SessionPool_MaxActive
org_onehippo_hst_SessionPool_NumActive
#JVM
jvm_memory_bytes_max
jvm_memory_bytes_used
jvm_threads_current
jvm_threads_peak
# Tomcat (Catalina)
Catalina_Connector_maxThreads (tomcat max threads)
Catalina_Manager_activeSessions (Number of active sessions at this moment)
Catalina_Manager_maxActive (maximum number of active sessions so far.) <- Observing this will probably tell us how many concurrent CMS users we will ever have. Good for sizing decisions!
Catalina_Manager_sessionMaxAliveTime (Longest time an expired session had been alive)