-
Notifications
You must be signed in to change notification settings - Fork 1
/
jmxexporter.yml
73 lines (66 loc) · 3.12 KB
/
jmxexporter.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#---
attrNameSnakeCase: true
lowercaseOutputName: true
lowercaseOutputLabelNames: true
whitelistObjectNames:
- "java.lang:type=OperatingSystem"
- "com.bea:ServerRuntime=*,Name=*,Type=JVMRuntime"
- "com.bea:Name=*,Type=ServerRuntime"
- "com.bea:ServerRuntime=*,Type=ApplicationRuntime,*"
- "com.bea:ServerRuntime=*,Type=JDBCDataSourceRuntime,*"
- "com.bea:ServerRuntime=*,Type=JMSDestinationRuntime,*"
- "com.bea:ServerRuntime=*,Type=JDBCStoreRuntime,*"
- "com.bea:ServerRuntime=*,Type=FileStoreRuntime,*"
- "com.bea:ServerRuntime=*,Type=SAFRemoteEndpointRuntime,*"
- "com.bea:ServerRuntime=*,Type=ThreadPoolRuntime,*"
- "com.bea:ServerRuntime=*,Type=JMSRuntime,*"
- "com.bea:ServerRuntime=*,Type=SAFRuntime,*"
- "com.bea:ServerRuntime=*,Type=WorkManagerRuntime,*"
- "com.bea:ServerRuntime=*,Type=MessagingBridgeRuntime,*"
- "com.bea:ServerRuntime=*,Type=PersistentStoreRuntime,*"
- "com.bea:ServerRuntime=*,Type=WebServerRuntime,*"
- "com.bea:ServerRuntime=*,Type=WebAppComponentRuntime,*"
- "com.bea:ServerRuntime=*,Type=ServletRuntime,*"
rules:
#com.bea<ServerRuntime=AdminServer, Name=AdminServer_/bea_wls_internal, ApplicationRuntime=bea_wls_internal, Type=WebAppComponentRuntime><>SessionsOpenedTotalCount)
# com.bea<ServerRuntime=AdminServer, Name=ClientClose, ApplicationRuntime=bea_wls_internal, Type=ServletRuntime, WebAppComponentRuntime=AdminServer_/bea_wls_internal><>ExecutionTimeTotal
- pattern: "^com.bea<ServerRuntime=(.+), Name=(.+), (.+)Runtime=(.*), Type=ServletRuntime, WebAppComponentRuntime=(.+)><>(.+):"
name: weblogic_$3_$6
attrNameSnakeCase: true
labels:
runtime: $1
name: $2
application: $4
# ex: java.lang<type=OperatingSystem><>ProcessCpuTime
- pattern: "^java.lang<type=OperatingSystem><>(.+):"
name: weblogic_$1
attrNameSnakeCase: true
# ex: com.bea<Name=Server-0, Type=ServerRuntime><>StableState
- pattern: "^com.bea<Name=(.+), Type=(.+)Runtime><>(.+):"
name: weblogic_$2_$3
attrNameSnakeCase: true
labels:
name: $1
# com.bea<ServerRuntime=AdminServer, Name=ClientClose, ApplicationRuntime=bea_wls_internal, Type=ServletRuntime, WebAppComponentRuntime=AdminServer_/bea_wls_internal><>InvocationTotalCount
# ex: com.bea<ServerRuntime=AdminServer, Name=default, ApplicationRuntime=moduleJMS, Type=WorkManagerRuntime><>CompletedRequests
- pattern: "^com.bea<ServerRuntime=(.+), Name=(.+), (.+)Runtime=(.*), Type=(.+)Runtime><>(.+):"
name: weblogic_$3_$5_$6
attrNameSnakeCase: true
labels:
runtime: $1
name: $2
application: $4
# ex: com.bea<ServerRuntime=AdminServer, Name=dsName, Type=JDBCDataSourceRuntime><>Metric
- pattern: "^com.bea<ServerRuntime=(.+), Name=(.+), Type=(.+)Runtime><>(.+):"
name: weblogic_$3_$4
attrNameSnakeCase: true
labels:
runtime: $1
name: $2
# ex: com.bea<ServerRuntime=AdminServer, Name=bea_wls_cluster_internal, Type=ApplicationRuntime><OverallHealthStateJMX>IsCritical
- pattern: "^com.bea<ServerRuntime=(.+), Name=(.+), Type=(.+)Runtime><(.+)>(.+):"
name: weblogic_$3_$4_$5
attrNameSnakeCase: true
labels:
runtime: $1
name: $2