Class MetricDefinitionRequest
- java.lang.Object
-
- software.amazon.awssdk.services.rum.model.MetricDefinitionRequest
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<MetricDefinitionRequest.Builder,MetricDefinitionRequest>
@Generated("software.amazon.awssdk:codegen") public final class MetricDefinitionRequest extends Object implements SdkPojo, Serializable, ToCopyableBuilder<MetricDefinitionRequest.Builder,MetricDefinitionRequest>
Use this structure to define one extended metric or custom metric that RUM will send to CloudWatch or CloudWatch Evidently. For more information, see Additional metrics that you can send to CloudWatch and CloudWatch Evidently.
This structure is validated differently for extended metrics and custom metrics. For extended metrics that are sent to the
AWS/RUMnamespace, the following validations apply:-
The
Namespaceparameter must be omitted or set toAWS/RUM. -
Only certain combinations of values for
Name,ValueKey, andEventPatternare valid. In addition to what is displayed in the list below, theEventPatterncan also include information used by theDimensionKeysfield.-
If
NameisPerformanceNavigationDuration, thenValueKeymust beevent_details.durationand theEventPatternmust include{"event_type":["com.amazon.rum.performance_navigation_event"]} -
If
NameisPerformanceResourceDuration, thenValueKeymust beevent_details.durationand theEventPatternmust include{"event_type":["com.amazon.rum.performance_resource_event"]} -
If
NameisNavigationSatisfiedTransaction, thenValueKeymust be null and theEventPatternmust include{ "event_type": ["com.amazon.rum.performance_navigation_event"], "event_details": { "duration": [{ "numeric": [">",2000] }] } } -
If
NameisNavigationToleratedTransaction, thenValueKeymust be null and theEventPatternmust include{ "event_type": ["com.amazon.rum.performance_navigation_event"], "event_details": { "duration": [{ "numeric": [">=",2000,"<"8000] }] } } -
If
NameisNavigationFrustratedTransaction, thenValueKeymust be null and theEventPatternmust include{ "event_type": ["com.amazon.rum.performance_navigation_event"], "event_details": { "duration": [{ "numeric": [">=",8000] }] } } -
If
NameisWebVitalsCumulativeLayoutShift, thenValueKeymust beevent_details.valueand theEventPatternmust include{"event_type":["com.amazon.rum.cumulative_layout_shift_event"]} -
If
NameisWebVitalsFirstInputDelay, thenValueKeymust beevent_details.valueand theEventPatternmust include{"event_type":["com.amazon.rum.first_input_delay_event"]} -
If
NameisWebVitalsLargestContentfulPaint, thenValueKeymust beevent_details.valueand theEventPatternmust include{"event_type":["com.amazon.rum.largest_contentful_paint_event"]} -
If
NameisJsErrorCount, thenValueKeymust be null and theEventPatternmust include{"event_type":["com.amazon.rum.js_error_event"]} -
If
NameisHttpErrorCount, thenValueKeymust be null and theEventPatternmust include{"event_type":["com.amazon.rum.http_event"]} -
If
NameisSessionCount, thenValueKeymust be null and theEventPatternmust include{"event_type":["com.amazon.rum.session_start_event"]}
-
For custom metrics, the following validation rules apply:
-
The namespace can't be omitted and can't be
AWS/RUM. You can use theAWS/RUMnamespace only for extended metrics. -
All dimensions listed in the
DimensionKeysfield must be present in the value ofEventPattern. -
The values that you specify for
ValueKey,EventPattern, andDimensionKeysmust be fields in RUM events, so all first-level keys in these fields must be one of the keys in the list later in this section. -
If you set a value for
EventPattern, it must be a JSON object. -
For every non-empty
event_details, there must be a non-emptyevent_type. -
If
EventPatterncontains anevent_detailsfield, it must also contain anevent_type. For every built-inevent_typethat you use, you must use a value forevent_detailsthat corresponds to thatevent_type. For information about event details that correspond to event types, see RUM event details. -
In
EventPattern, any JSON array must contain only one value.
Valid key values for first-level keys in the
ValueKey,EventPattern, andDimensionKeysfields:-
account_id -
application_Id -
application_version -
application_name -
batch_id -
event_details -
event_id -
event_interaction -
event_timestamp -
event_type -
event_version -
log_stream -
metadata -
sessionId -
user_details -
userId
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceMetricDefinitionRequest.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MetricDefinitionRequest.Builderbuilder()Map<String,String>dimensionKeys()Use this field only if you are sending the metric to CloudWatch.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)StringeventPattern()The pattern that defines the metric, specified as a JSON object.<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)booleanhasDimensionKeys()For responses, this returns true if the service returned a value for the DimensionKeys property.inthashCode()Stringname()The name for the metric that is defined in this structure.Stringnamespace()If this structure is for a custom metric instead of an extended metrics, use this parameter to define the metric namespace for that custom metric.List<SdkField<?>>sdkFields()static Class<? extends MetricDefinitionRequest.Builder>serializableBuilderClass()MetricDefinitionRequest.BuildertoBuilder()StringtoString()Returns a string representation of this object.StringunitLabel()The CloudWatch metric unit to use for this metric.StringvalueKey()The field within the event object that the metric value is sourced from.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
hasDimensionKeys
public final boolean hasDimensionKeys()
For responses, this returns true if the service returned a value for the DimensionKeys property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
-
dimensionKeys
public final Map<String,String> dimensionKeys()
Use this field only if you are sending the metric to CloudWatch.
This field is a map of field paths to dimension names. It defines the dimensions to associate with this metric in CloudWatch. For extended metrics, valid values for the entries in this field are the following:
-
"metadata.pageId": "PageId" -
"metadata.browserName": "BrowserName" -
"metadata.deviceType": "DeviceType" -
"metadata.osName": "OSName" -
"metadata.countryCode": "CountryCode" -
"event_details.fileType": "FileType"
For both extended metrics and custom metrics, all dimensions listed in this field must also be included in
EventPattern.Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasDimensionKeys()method.- Returns:
- Use this field only if you are sending the metric to CloudWatch.
This field is a map of field paths to dimension names. It defines the dimensions to associate with this metric in CloudWatch. For extended metrics, valid values for the entries in this field are the following:
-
"metadata.pageId": "PageId" -
"metadata.browserName": "BrowserName" -
"metadata.deviceType": "DeviceType" -
"metadata.osName": "OSName" -
"metadata.countryCode": "CountryCode" -
"event_details.fileType": "FileType"
For both extended metrics and custom metrics, all dimensions listed in this field must also be included in
EventPattern. -
-
-
eventPattern
public final String eventPattern()
The pattern that defines the metric, specified as a JSON object. RUM checks events that happen in a user's session against the pattern, and events that match the pattern are sent to the metric destination.
When you define extended metrics, the metric definition is not valid if
EventPatternis omitted.Example event patterns:
-
'{ "event_type": ["com.amazon.rum.js_error_event"], "metadata": { "browserName": [ "Chrome", "Safari" ], } }' -
'{ "event_type": ["com.amazon.rum.performance_navigation_event"], "metadata": { "browserName": [ "Chrome", "Firefox" ] }, "event_details": { "duration": [{ "numeric": [ "<", 2000 ] }] } }' -
'{ "event_type": ["com.amazon.rum.performance_navigation_event"], "metadata": { "browserName": [ "Chrome", "Safari" ], "countryCode": [ "US" ] }, "event_details": { "duration": [{ "numeric": [ ">=", 2000, "<", 8000 ] }] } }'
If the metrics destination' is
CloudWatchand the event also matches a value inDimensionKeys, then the metric is published with the specified dimensions.- Returns:
- The pattern that defines the metric, specified as a JSON object. RUM checks events that happen in a
user's session against the pattern, and events that match the pattern are sent to the metric
destination.
When you define extended metrics, the metric definition is not valid if
EventPatternis omitted.Example event patterns:
-
'{ "event_type": ["com.amazon.rum.js_error_event"], "metadata": { "browserName": [ "Chrome", "Safari" ], } }' -
'{ "event_type": ["com.amazon.rum.performance_navigation_event"], "metadata": { "browserName": [ "Chrome", "Firefox" ] }, "event_details": { "duration": [{ "numeric": [ "<", 2000 ] }] } }' -
'{ "event_type": ["com.amazon.rum.performance_navigation_event"], "metadata": { "browserName": [ "Chrome", "Safari" ], "countryCode": [ "US" ] }, "event_details": { "duration": [{ "numeric": [ ">=", 2000, "<", 8000 ] }] } }'
If the metrics destination' is
CloudWatchand the event also matches a value inDimensionKeys, then the metric is published with the specified dimensions. -
-
-
name
public final String name()
The name for the metric that is defined in this structure. For custom metrics, you can specify any name that you like. For extended metrics, valid values are the following:
-
PerformanceNavigationDuration -
PerformanceResourceDuration -
NavigationSatisfiedTransaction -
NavigationToleratedTransaction -
NavigationFrustratedTransaction -
WebVitalsCumulativeLayoutShift -
WebVitalsFirstInputDelay -
WebVitalsLargestContentfulPaint -
JsErrorCount -
HttpErrorCount -
SessionCount
- Returns:
- The name for the metric that is defined in this structure. For custom metrics, you can specify any name
that you like. For extended metrics, valid values are the following:
-
PerformanceNavigationDuration -
PerformanceResourceDuration -
NavigationSatisfiedTransaction -
NavigationToleratedTransaction -
NavigationFrustratedTransaction -
WebVitalsCumulativeLayoutShift -
WebVitalsFirstInputDelay -
WebVitalsLargestContentfulPaint -
JsErrorCount -
HttpErrorCount -
SessionCount
-
-
-
namespace
public final String namespace()
If this structure is for a custom metric instead of an extended metrics, use this parameter to define the metric namespace for that custom metric. Do not specify this parameter if this structure is for an extended metric.
You cannot use any string that starts with
AWS/for your namespace.- Returns:
- If this structure is for a custom metric instead of an extended metrics, use this parameter to define the
metric namespace for that custom metric. Do not specify this parameter if this structure is for an
extended metric.
You cannot use any string that starts with
AWS/for your namespace.
-
unitLabel
public final String unitLabel()
The CloudWatch metric unit to use for this metric. If you omit this field, the metric is recorded with no unit.
- Returns:
- The CloudWatch metric unit to use for this metric. If you omit this field, the metric is recorded with no unit.
-
valueKey
public final String valueKey()
The field within the event object that the metric value is sourced from.
If you omit this field, a hardcoded value of 1 is pushed as the metric value. This is useful if you just want to count the number of events that the filter catches.
If this metric is sent to CloudWatch Evidently, this field will be passed to Evidently raw and Evidently will handle data extraction from the event.
- Returns:
- The field within the event object that the metric value is sourced from.
If you omit this field, a hardcoded value of 1 is pushed as the metric value. This is useful if you just want to count the number of events that the filter catches.
If this metric is sent to CloudWatch Evidently, this field will be passed to Evidently raw and Evidently will handle data extraction from the event.
-
toBuilder
public MetricDefinitionRequest.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<MetricDefinitionRequest.Builder,MetricDefinitionRequest>
-
builder
public static MetricDefinitionRequest.Builder builder()
-
serializableBuilderClass
public static Class<? extends MetricDefinitionRequest.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-