Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.67 KB

File metadata and controls

38 lines (29 loc) · 1.67 KB

ExtendedService

List of services in the topology.

Properties

Name Type Description Notes
applications List[str]
entity_type str Since, this is a Service, it will be of type `SERVICE`. [optional]
id str Unique ID of the Service. Eg: `3feb3dcd206c166ef2b41c707e0cd38d7cd325aa`.
label str Name of the Service. Eg: `payment`.
max_severity float [optional]
number_of_open_issues int [optional]
snapshot_ids List[str] A unique identifier the metrics are assigned to.
technologies List[str] List of technologies: `Eg:["springbootApplicationContainer"]`
types List[str] Shows types of Endpoints a Service can consist of. It may be one or more. Eg: `HTTP` `OPENTELEMETRY` can be in 1 Service.

Example

from instana_client.models.extended_service import ExtendedService

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

# convert the object into a dict
extended_service_dict = extended_service_instance.to_dict()
# create an instance of ExtendedService from a dict
extended_service_from_dict = ExtendedService.from_dict(extended_service_dict)

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