Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 3.42 KB

File metadata and controls

38 lines (29 loc) · 3.42 KB

GetServices

Properties

Name Type Description Notes
application_boundary_scope str Use when querying calls of an application: `INBOUND`: only inbound calls `ALL`: all the calls to that application (inbound + internal) [optional]
application_id str An Instana generated unique identifier for an Application. If specified, the list of results will be filtered for the specified Application ID. Eg: `Av62RoIKQv-A3n6DbMQh9g`. One can see the application id from Instana UI by going to an Application Perspective page. In the URL, there will be `appId=Av62RoIKQv-A3n6DbMQh9g`. Alternatively, one can use `Get applications` API endpoint to get the application id in `id` parameter. [optional]
context_scope str separate filtering and group by service id field - upstream is filtered on destination service and groups on source service - downstream is filtered on source service and groups on destination service - none is filtered on destination service and no grouping [optional]
metrics List[AppDataMetricConfiguration] A list of objects each of which defines a metric and the (statistical) aggregation -- MEAN, SUM, MAX, etc -- that should be used to summarize it for the defined time frame. Eg: `[{ 'metric': 'latency', 'aggregation': 'MEAN'}]`. To know more about supported metrics and its aggregation, See `Get Metric catalog`.
name_filter str filter by name with `contains` semantic. Eg: Let's say there are 2 service names `ecomm-order` and `ecomm-deliver`, you can set `ecomm-` here to include the two Services. [optional]
order Order [optional]
pagination Pagination [optional]
service_id str An Instana generated unique identifier for a Service. If specified, the list of results will be filtered for the specified Service ID. Eg: `3feb3dcd206c166ef2b41c707e0cd38d7cd325aa`. One can see the service id from Instana UI by going to a Service page. In the URL, there will be `serviceId=3feb3dcd206c166ef2b41c707e0cd38d7cd325aa`. Alternatively, one can use `Get services` API endpoint to get the service id in `id` parameter. [optional]
technologies List[str] A list of technologies to be used for filtering data. For example, technologies could include AWS ECS, Cassandra, DB2, JVM, Kafka, etc. A full list of available technologies can be found in X. [optional]
time_frame TimeFrame [optional]

Example

from instana_client.models.get_services import GetServices

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

# convert the object into a dict
get_services_dict = get_services_instance.to_dict()
# create an instance of GetServices from a dict
get_services_from_dict = GetServices.from_dict(get_services_dict)

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