A list which indicates which services are consumers and which are providers in the communication chain.
| Name | Type | Description | Notes |
|---|---|---|---|
| calls | int | The number of calls between the 2 services. Eg: The number of calls from `24558242fdeb52571cfb9fa42f1b334aa65d7e61` service to `3feb3dcd206c166ef2b41c707e0cd38d7cd325aa` service over the mentioned timeframe is `200`. If no timeframe (`to` and `windowSize` in query paramter) is mentioned, the timeframe is taken as last hour. | [optional] |
| error_rate | float | The error rate of the calls between the 2 services. Eg: The error rate of calls from `24558242fdeb52571cfb9fa42f1b334aa65d7e61` service to `3feb3dcd206c166ef2b41c707e0cd38d7cd325aa` service over the mentioned timeframe is `0.1`. The value is between 0 and 1. If no timeframe (`to` and `windowSize` in query paramter) is mentioned, the timeframe is taken as last hour. | [optional] |
| var_from | str | The service that initiates a request to another service. It contains a unique service id. Eg: `24558242fdeb52571cfb9fa42f1b334aa65d7e61`. | |
| latency | float | The mean latency of the calls between the 2 services. Eg: The mean latency of calls from `24558242fdeb52571cfb9fa42f1b334aa65d7e61` service to `3feb3dcd206c166ef2b41c707e0cd38d7cd325aa` service over the mentioned timeframe is `4.46`. The value is in milliseconds. If no timeframe (`to` and `windowSize` in query paramter) is mentioned, the timeframe is taken as last hour. | [optional] |
| to | str | The service that receives the request sent by the source service. It contains a unique service id. Eg: `3feb3dcd206c166ef2b41c707e0cd38d7cd325aa`. |
from instana_client.models.service_map_connection import ServiceMapConnection
# TODO update the JSON string below
json = "{}"
# create an instance of ServiceMapConnection from a JSON string
service_map_connection_instance = ServiceMapConnection.from_json(json)
# print the JSON string representation of the object
print(ServiceMapConnection.to_json())
# convert the object into a dict
service_map_connection_dict = service_map_connection_instance.to_dict()
# create an instance of ServiceMapConnection from a dict
service_map_connection_from_dict = ServiceMapConnection.from_dict(service_map_connection_dict)