Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.86 KB

File metadata and controls

36 lines (27 loc) · 1.86 KB

SimpleMetricConfiguration

Properties

Name Type Description Notes
aggregation str
cross_series_aggregation str [optional]
granularity int * If granularity is not specified an aggregated value for the selected timeframe is returned. * If granularity is specified data points are returned with the specified granularity * The granularity should not be greater than the `windowSize` (important: `windowSize` is expressed in milliseconds) * The granularity should not be set too small relative to the `windowSize` to avoid creating an excessively large number of data points (max 600) [optional]
metric str
missing_value float [optional]
regex bool [optional]
required bool When true, metric must be present with values [optional]
operation ArithmeticOperation [optional]

Example

from instana_client.models.simple_metric_configuration import SimpleMetricConfiguration

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

# convert the object into a dict
simple_metric_configuration_dict = simple_metric_configuration_instance.to_dict()
# create an instance of SimpleMetricConfiguration from a dict
simple_metric_configuration_from_dict = SimpleMetricConfiguration.from_dict(simple_metric_configuration_dict)

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