Enum MetricName
- java.lang.Object
-
- java.lang.Enum<MetricName>
-
- org.onebusaway.aws.monitoring.model.metrics.MetricName
-
- All Implemented Interfaces:
Serializable,Comparable<MetricName>
public enum MetricName extends Enum<MetricName>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MetricNamefromValue(String value)Use this in place of valueOf.StringtoString()static MetricNamevalueOf(String name)Returns the enum constant of this type with the specified name.static MetricName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CPUUtilization
public static final MetricName CPUUtilization
-
CurrentBundleCount
public static final MetricName CurrentBundleCount
-
DatabaseConnections
public static final MetricName DatabaseConnections
-
DesktopUiValid
public static final MetricName DesktopUiValid
-
FirstValidBundleFilesCount
public static final MetricName FirstValidBundleFilesCount
-
FreeStorageSpace
public static final MetricName FreeStorageSpace
-
NegativeReplicaLag
public static final MetricName NegativeReplicaLag
-
NextBusApiErrorResponse
public static final MetricName NextBusApiErrorResponse
-
NumberOfMessagesDelayed
public static final MetricName NumberOfMessagesDelayed
-
NumberOfMessagesDeleted
public static final MetricName NumberOfMessagesDeleted
-
NumberOfMessagesReceived
public static final MetricName NumberOfMessagesReceived
-
NumberOfMessagesSent
public static final MetricName NumberOfMessagesSent
-
ReadLatency
public static final MetricName ReadLatency
-
RealtimeInvalidLatLonPct
public static final MetricName RealtimeInvalidLatLonPct
-
RealtimeLocationsInvalid
public static final MetricName RealtimeLocationsInvalid
-
RealtimeLocationsTotal
public static final MetricName RealtimeLocationsTotal
-
RealtimeLocationsTotalPct
public static final MetricName RealtimeLocationsTotalPct
-
RealtimeStopsMatched
public static final MetricName RealtimeStopsMatched
-
RealtimeStopsMatchedPct
public static final MetricName RealtimeStopsMatchedPct
-
RealtimeStopsUnmatched
public static final MetricName RealtimeStopsUnmatched
-
RealtimeStopsUnmatchedPct
public static final MetricName RealtimeStopsUnmatchedPct
-
RealtimeTripsMatched
public static final MetricName RealtimeTripsMatched
-
RealtimeTripsMatchedAvg
public static final MetricName RealtimeTripsMatchedAvg
-
RealtimeTripsTotal
public static final MetricName RealtimeTripsTotal
-
RealtimeTripTotalPct
public static final MetricName RealtimeTripTotalPct
-
RealtimeTripsUnmatched
public static final MetricName RealtimeTripsUnmatched
-
RealtimeBusesInServicePct
public static final MetricName RealtimeBusesInServicePct
-
ReplicaLag
public static final MetricName ReplicaLag
-
ScheduleAgencyTotal
public static final MetricName ScheduleAgencyTotal
-
ScheduleExpiryDateDelta
public static final MetricName ScheduleExpiryDateDelta
-
ScheduleRealtimeDelta
public static final MetricName ScheduleRealtimeDelta
-
ScheduleTotalTrips
public static final MetricName ScheduleTotalTrips
-
SentMessageSize
public static final MetricName SentMessageSize
-
SMSWebappErrorResponse
public static final MetricName SMSWebappErrorResponse
-
SMSWebappResponseTime
public static final MetricName SMSWebappResponseTime
-
StopMonitoringErrorResponse
public static final MetricName StopMonitoringErrorResponse
-
StopMonitoringResponseTime
public static final MetricName StopMonitoringResponseTime
-
TransitimeApiErrorResponse
public static final MetricName TransitimeApiErrorResponse
-
VehicleMonitoringErrorResponse
public static final MetricName VehicleMonitoringErrorResponse
-
VehicleMonitoringResponseTime
public static final MetricName VehicleMonitoringResponseTime
-
WriteLatency
public static final MetricName WriteLatency
-
PredictionDeserializeQueueSize
public static final MetricName PredictionDeserializeQueueSize
-
PredictionProcessingTime
public static final MetricName PredictionProcessingTime
-
PredictionTotalLatency
public static final MetricName PredictionTotalLatency
-
PredictionPredictablePercentage
public static final MetricName PredictionPredictablePercentage
-
PredictionTotalQueueLatency
public static final MetricName PredictionTotalQueueLatency
-
-
Method Detail
-
values
public static MetricName[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MetricName c : MetricName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MetricName valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<MetricName>
-
fromValue
public static MetricName fromValue(String value)
Use this in place of valueOf.- Parameters:
value- real value- Returns:
- MetricName corresponding to the value
-
-