Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.64 KB

File metadata and controls

32 lines (23 loc) · 1.64 KB

MobileAppMonitoringMetricsConfiguration

Properties

Name Type Description Notes
aggregation str Set aggregation that can be applied to a series of values. Eg: `MEAN`.
granularity int If the granularity is set you will get data points with the specified granularity in seconds. Default: `1000` milliseconds [optional]
metric str Set a particular metric, eg: `latency`.
numerator_tag_filter_expression TagFilterExpressionElement [optional]

Example

from instana_client.models.mobile_app_monitoring_metrics_configuration import MobileAppMonitoringMetricsConfiguration

# TODO update the JSON string below
json = "{}"
# create an instance of MobileAppMonitoringMetricsConfiguration from a JSON string
mobile_app_monitoring_metrics_configuration_instance = MobileAppMonitoringMetricsConfiguration.from_json(json)
# print the JSON string representation of the object
print(MobileAppMonitoringMetricsConfiguration.to_json())

# convert the object into a dict
mobile_app_monitoring_metrics_configuration_dict = mobile_app_monitoring_metrics_configuration_instance.to_dict()
# create an instance of MobileAppMonitoringMetricsConfiguration from a dict
mobile_app_monitoring_metrics_configuration_from_dict = MobileAppMonitoringMetricsConfiguration.from_dict(mobile_app_monitoring_metrics_configuration_dict)

[Back to Model list] [Back to API list] [Back to README]