Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.27 KB

File metadata and controls

34 lines (25 loc) · 1.27 KB

MonitoringState

Properties

Name Type Description Notes
has_entities bool Has entities
host_count int Count of hosts [optional]
monitored_entities_stats MonitoredEntitiesStats
open_telemetry_collector_count int Count of open telemetry collectors [optional]
open_telemetry_count int Count of open telemetry [optional]
serverless_count int Count of serverless [optional]

Example

from instana_client.models.monitoring_state import MonitoringState

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

# convert the object into a dict
monitoring_state_dict = monitoring_state_instance.to_dict()
# create an instance of MonitoringState from a dict
monitoring_state_from_dict = MonitoringState.from_dict(monitoring_state_dict)

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