Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.37 KB

File metadata and controls

31 lines (22 loc) · 1.37 KB

SyntheticMetricConfiguration

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`.

Example

from instana_client.models.synthetic_metric_configuration import SyntheticMetricConfiguration

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

# convert the object into a dict
synthetic_metric_configuration_dict = synthetic_metric_configuration_instance.to_dict()
# create an instance of SyntheticMetricConfiguration from a dict
synthetic_metric_configuration_from_dict = SyntheticMetricConfiguration.from_dict(synthetic_metric_configuration_dict)

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