Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.87 KB

File metadata and controls

36 lines (27 loc) · 1.87 KB

HyperParam

List of hyper parameters of the Built-in Event Specification

Properties

Name Type Description Notes
default_value float [optional]
description str
id str
max_value float [optional]
min_value float [optional]
name str
value_format str * NUMBER: Generic number * BYTES: Number of bytes * KILO_BYTES: Number of kilobytes * MEGA_BYTES: Number of megabytes * PERCENTAGE: Percentage in scale [0,1] * PERCENTAGE_100: Percentage in scale [0,100] * PERCENTAGE_NO_CAPPING: Percentage in scale [0,1] but value could exceed 1 for example when metric is aggregated * PERCENTAGE_100_NO_CAPPING: Percentage in scale [0,100] but value could exceed 100 for example when metric is aggregated * LATENCY: Time in milliseconds, with value of 0 should not be considered a a strict 0, but considered as < 1ms * NANOS: Time in nanoseconds * MILLIS: Time in milliseconds * MICROS: Time in microseconds * SECONDS: Time in seconds * RATE: Number of occurrences per second * BYTE_RATE: Number of bytes per second * UNDEFINED: Metric value unit is not known

Example

from instana_client.models.hyper_param import HyperParam

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

# convert the object into a dict
hyper_param_dict = hyper_param_instance.to_dict()
# create an instance of HyperParam from a dict
hyper_param_from_dict = HyperParam.from_dict(hyper_param_dict)

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