This repository was archived by the owner on Jun 8, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed
src/main/java/com/ca/apm/swat/epaplugins Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 3
3
<modelVersion >4.0.0</modelVersion >
4
4
<groupId >com.ca.apm.extensions</groupId >
5
5
<artifactId >asm-monitor</artifactId >
6
- <version >1.5.3-SNAPSHOT </version >
6
+ <version >1.5.3</version >
7
7
<name >ASMMonitor</name >
8
8
<description >Extension to integrate App Synthetic Monitor (fka Cloud Monitor, WatchMouse) into CA APM.</description >
9
9
Original file line number Diff line number Diff line change @@ -185,6 +185,8 @@ private int mapMetricType(String thisMetric) {
185
185
return MetricTypes .kLongIntervalCounter ;
186
186
} else if (thisMetric .equals (MetricWriter .kIntAverage )) {
187
187
return MetricTypes .kIntegerDuration ;
188
+ } else if (thisMetric .equals (MetricWriter .kLongAverage )) {
189
+ return MetricTypes .kLongDuration ;
188
190
} else if (thisMetric .equals (MetricWriter .kStringEvent )) {
189
191
return MetricTypes .kStringIndividualEvents ;
190
192
} else if (thisMetric .equals (MetricWriter .kFloat )) {
Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ public abstract class AsmPropertiesImpl implements AsmProperties {
62
62
ASM_METRICS .put ("secscan" , "Vulnerability Scan Credits Available" );
63
63
ASM_METRICS .put ("sla_poor" , "SLA Violation Poor (%)" );
64
64
ASM_METRICS .put ("sla_warn" , "SLA Violation Warning (%)" );
65
+ ASM_METRICS .put ("slapoor" , "SLA Violation Poor (%)" );
66
+ ASM_METRICS .put ("slawarn" , "SLA Violation Warning (%)" );
65
67
ASM_METRICS .put ("sms" , "SMS Credits Available" );
66
68
ASM_METRICS .put ("spi" , "Site Performance Index" );
67
69
ASM_METRICS .put ("start" , "Check Start Time" );
You can’t perform that action at this time.
0 commit comments