Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.46 KB

File metadata and controls

36 lines (27 loc) · 1.46 KB

InfrastructureItem

Properties

Name Type Description Notes
adjusted_granularities Dict[str, int] map of metric keys to their adjusted granularity (in milliseconds) [optional]
entity_health_info EntityHealthInfo [optional]
label str [optional]
metrics Dict[str, List[List[float]]] [optional]
plugin str [optional]
snapshot_id str [optional]
tags Dict[str, str] [optional]
time int Epoch time in milliseconds if the snapshot is offline. Set to 9223372036854775807 if the snapshot is online. [optional]

Example

from instana_client.models.infrastructure_item import InfrastructureItem

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

# convert the object into a dict
infrastructure_item_dict = infrastructure_item_instance.to_dict()
# create an instance of InfrastructureItem from a dict
infrastructure_item_from_dict = InfrastructureItem.from_dict(infrastructure_item_dict)

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