From 2a0a5ea5ab317f39516dc2aa163e15e2902a6d6f Mon Sep 17 00:00:00 2001 From: Karan Sirohi Date: Wed, 13 May 2026 18:32:06 +0530 Subject: [PATCH] adds checkly integration --- .../checkly_api_processor.py | 96 + .../source_api_processors/results.json | 20249 ++++++++++++++++ .../core/integrations/source_facade.py | 4 +- drdroid_debug_toolkit/core/protos/base.proto | 5 + drdroid_debug_toolkit/core/protos/base_pb2.py | 20 +- .../checkly_task.proto | 55 + .../checkly_task_pb2.py | 51 + .../core/utils/credentilal_utils.py | 18 + 8 files changed, 20487 insertions(+), 11 deletions(-) create mode 100644 drdroid_debug_toolkit/core/integrations/source_api_processors/checkly_api_processor.py create mode 100644 drdroid_debug_toolkit/core/integrations/source_api_processors/results.json create mode 100644 drdroid_debug_toolkit/core/protos/playbooks/source_task_definitions/checkly_task.proto create mode 100644 drdroid_debug_toolkit/core/protos/playbooks/source_task_definitions/checkly_task_pb2.py diff --git a/drdroid_debug_toolkit/core/integrations/source_api_processors/checkly_api_processor.py b/drdroid_debug_toolkit/core/integrations/source_api_processors/checkly_api_processor.py new file mode 100644 index 00000000..174876e3 --- /dev/null +++ b/drdroid_debug_toolkit/core/integrations/source_api_processors/checkly_api_processor.py @@ -0,0 +1,96 @@ +import logging +import requests + +from core.integrations.processor import Processor +from core.settings import EXTERNAL_CALL_TIMEOUT + +logger = logging.getLogger(__name__) + + +class ChecklyApiProcessor(Processor): + + BASE_URL = "https://api.checklyhq.com/v1" + + def __init__(self, api_key: str, account_id: str): + self.__api_key = api_key + self.__account_id = account_id + + def _headers(self): + return { + "Authorization": f"Bearer {self.__api_key}", + "X-Checkly-Account": self.__account_id, + "Accept": "application/json", + } + + def _get(self, path: str, params: dict = None) -> dict: + url = f"{self.BASE_URL}{path}" + response = requests.get(url, headers=self._headers(), params=params, timeout=EXTERNAL_CALL_TIMEOUT) + response.raise_for_status() + return response.json() + + def test_connection(self) -> bool: + try: + self._get("/checks", params={"limit": 1}) + return True + except requests.exceptions.HTTPError as e: + logger.error(f"ChecklyApiProcessor.test_connection:: HTTP error: {e}") + except Exception as e: + logger.error(f"ChecklyApiProcessor.test_connection:: Error: {e}") + return False + + def list_checks(self) -> dict: + try: + return self._get("/checks") + except Exception as e: + logger.error(f"ChecklyApiProcessor.list_checks:: Error: {e}") + raise + + def get_check_statuses(self) -> dict: + try: + return self._get("/check-statuses") + except Exception as e: + logger.error(f"ChecklyApiProcessor.get_check_statuses:: Error: {e}") + raise + + def get_check_results(self, check_id: str, limit: int = 10) -> dict: + try: + return self._get(f"/check-results/{check_id}", params={"limit": limit}) + except Exception as e: + logger.error(f"ChecklyApiProcessor.get_check_results:: Error for check {check_id}: {e}") + raise + + def get_check_analytics(self, check_id: str, check_type: str, from_ts: int = None, to_ts: int = None) -> dict: + try: + check_type = check_type.lower() if check_type else "api" + type_map = { + "api": "api-checks", + "browser": "browser-checks", + "multistep": "multistep-checks", + "tcp": "tcp-checks", + } + endpoint_segment = type_map.get(check_type, "api-checks") + params = {} + if from_ts: + params["from"] = from_ts + if to_ts: + params["to"] = to_ts + return self._get(f"/analytics/{endpoint_segment}/{check_id}", params=params or None) + except Exception as e: + logger.error(f"ChecklyApiProcessor.get_check_analytics:: Error for check {check_id}: {e}") + raise + + def get_check_alerts(self, check_id: str = None) -> dict: + try: + if check_id: + return self._get(f"/check-alerts/{check_id}") + return self._get("/check-alerts") + except Exception as e: + logger.error(f"ChecklyApiProcessor.get_check_alerts:: Error: {e}") + raise + + def get_check_groups(self) -> dict: + try: + return self._get("/check-groups") + except Exception as e: + logger.error(f"ChecklyApiProcessor.get_check_groups:: Error: {e}") + raise diff --git a/drdroid_debug_toolkit/core/integrations/source_api_processors/results.json b/drdroid_debug_toolkit/core/integrations/source_api_processors/results.json new file mode 100644 index 00000000..a6514b5b --- /dev/null +++ b/drdroid_debug_toolkit/core/integrations/source_api_processors/results.json @@ -0,0 +1,20249 @@ +{ + "edge_count": 1065, + "edges": [ + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 2037.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 17.540896358543417, + "to": "", + "p99_latency_ms": 2.43, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.006442577030812325, + "to": "", + "p99_latency_ms": 2.85, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 535.51, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 15.77, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.031932773109243695, + "to": "", + "p99_latency_ms": 19.39, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.03137254901960784, + "to": "", + "p99_latency_ms": 1.03, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 12.67, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.017366946778711485, + "to": "", + "p99_latency_ms": 9.08, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 12.43, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 15.19, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 12.18, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 5.37, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0056022408963585435, + "to": "", + "p99_latency_ms": 65.76, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 2892.93, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 12.53, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 17.09, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004201680672268907, + "to": "", + "p99_latency_ms": 40.3, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 1.21, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 4.52, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 13.16, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.10084033613445378, + "to": "", + "p99_latency_ms": 327.17, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004481792717086834, + "to": "", + "p99_latency_ms": 117.26, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 9.39, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 2.63, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 13.16, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.1915966386554622, + "to": "", + "p99_latency_ms": 1.85, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.006442577030812325, + "to": "", + "p99_latency_ms": 39.51, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0061624649859943975, + "to": "", + "p99_latency_ms": 92.15, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 22.17, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.2397759103641457, + "to": "", + "p99_latency_ms": 5.88, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.3669467787114846, + "to": "", + "p99_latency_ms": 22.94, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.06498599439775911, + "to": "", + "p99_latency_ms": 2.17, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 16.34, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.05434173669467787, + "to": "", + "p99_latency_ms": 59.78, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 12.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0896358543417367, + "to": "", + "p99_latency_ms": 64.7, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 16.076470588235296, + "to": "", + "p99_latency_ms": 5.5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 73.57, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 17.79, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 5.01, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 6.94, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 38.35, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 12.48, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 32.07, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.08403361344537816, + "to": "", + "p99_latency_ms": 1.32, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 2.9714285714285715, + "to": "", + "p99_latency_ms": 6.11, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004481792717086834, + "to": "", + "p99_latency_ms": 4.91, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 52.99, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 14.69, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004761904761904762, + "to": "", + "p99_latency_ms": 43.57, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 5.23, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0061624649859943975, + "to": "", + "p99_latency_ms": 10.03, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 12.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 12.87, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.688515406162465, + "to": "", + "p99_latency_ms": 2.09, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 811405, + "from": "" + }, + { + "error_rate_pct": 0.6369426751592357, + "call_rate_rps": 0.04397759103641457, + "to": "", + "p99_latency_ms": 21556.93, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 12.77, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005042016806722689, + "to": "", + "p99_latency_ms": 210.6, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.05042016806722689, + "to": "", + "p99_latency_ms": 1.35, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 4.086274509803921, + "to": "", + "p99_latency_ms": 5.27, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.016246498599439777, + "to": "", + "p99_latency_ms": 24.42, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 5.79, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 13.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00784313725490196, + "to": "", + "p99_latency_ms": 673.99, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.16750700280112044, + "to": "", + "p99_latency_ms": 8.81, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 8.7, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 1.47, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 8.43, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 16.23, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 14.19, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.03081232492997199, + "to": "", + "p99_latency_ms": 66.43, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 2.85, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 35.8, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 208.68, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 16.75, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 17.68, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 2234.36, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 1.79, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.92, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 294.2, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0025210084033613447, + "to": "", + "p99_latency_ms": 116.1, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.05938375350140056, + "to": "", + "p99_latency_ms": 17.54, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 9.07, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 12.87, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.8773109243697479, + "to": "", + "p99_latency_ms": 949449, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 5.05, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0226890756302521, + "to": "", + "p99_latency_ms": 691400, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 14.24, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 16.22, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 10.22, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.035854341736694675, + "to": "", + "p99_latency_ms": 2.15, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.42745098039215684, + "to": "", + "p99_latency_ms": 17.17, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0058823529411764705, + "to": "", + "p99_latency_ms": 33.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 815410, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.01680672268907563, + "to": "", + "p99_latency_ms": 144.32, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 16.08, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 14.25, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 5372.96, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.01680672268907563, + "to": "", + "p99_latency_ms": 1.81, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 4.4, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0030812324929971988, + "to": "", + "p99_latency_ms": 16.64, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 5.97, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 5.464425770308123, + "to": "", + "p99_latency_ms": 3.63, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 350.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.04145658263305322, + "to": "", + "p99_latency_ms": 9.28, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.014005602240896359, + "to": "", + "p99_latency_ms": 572.35, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 2.2890756302521007, + "to": "", + "p99_latency_ms": 7.66, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 1.96, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 19.56, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 13.38, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 14.8, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 171.64, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 187.21, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 2.58, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 31.91, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 62.43, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.022408963585434174, + "to": "", + "p99_latency_ms": 5.67, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.07507002801120448, + "to": "", + "p99_latency_ms": 880700, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.03473389355742297, + "to": "", + "p99_latency_ms": 272.42, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 12.45, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 5.05, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 12.63, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.44, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 16.2, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 14.82, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 17.69, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 8.5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 34.71, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.008403361344537815, + "to": "", + "p99_latency_ms": 74.95, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.5005602240896359, + "to": "", + "p99_latency_ms": 28.13, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.65, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 20.72, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 10.41, + "from": "" + }, + { + "error_rate_pct": 7.142857142857142, + "call_rate_rps": 0.00392156862745098, + "to": "", + "p99_latency_ms": 31065.54, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 6.07, + "from": "" + }, + { + "error_rate_pct": 0.9708737864077669, + "call_rate_rps": 0.0288515406162465, + "to": "", + "p99_latency_ms": 30536.65, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 2.011204481792717, + "to": "", + "p99_latency_ms": 1.09, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.861904761904762, + "to": "", + "p99_latency_ms": 6.41, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 100, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 7.63, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.028011204481792718, + "to": "", + "p99_latency_ms": 1.65, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 13.72, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 201.57, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.017086834733893556, + "to": "", + "p99_latency_ms": 76.68, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.1400560224089636, + "to": "", + "p99_latency_ms": 74.36, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 7.36, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0056022408963585435, + "to": "", + "p99_latency_ms": 189.62, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 28.6, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 13.12, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 6.1, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 231.75, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.006442577030812325, + "to": "", + "p99_latency_ms": 16.71, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 885000, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 15.35, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.8168067226890756, + "to": "", + "p99_latency_ms": 23.3, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 13.49, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.2957983193277311, + "to": "", + "p99_latency_ms": 52.93, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 2.16, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.1198879551820728, + "to": "", + "p99_latency_ms": 15.08, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.09635854341736695, + "to": "", + "p99_latency_ms": 15.63, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.014285714285714285, + "to": "", + "p99_latency_ms": 23.06, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 8.77, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 11.13, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 14.7, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 33.17, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 32.74, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.036414565826330535, + "to": "", + "p99_latency_ms": 8.09, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 13.4, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.017366946778711485, + "to": "", + "p99_latency_ms": 679.54, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 7.22, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 9.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 15.56, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 4.63, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00784313725490196, + "to": "", + "p99_latency_ms": 52.28, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 20.337254901960783, + "to": "", + "p99_latency_ms": 1.54, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.55, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 69.64, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.22380952380952382, + "to": "", + "p99_latency_ms": 37.93, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 827.16, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.4173669467787116, + "to": "", + "p99_latency_ms": 14.35, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00392156862745098, + "to": "", + "p99_latency_ms": 3188.91, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 5.61, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004761904761904762, + "to": "", + "p99_latency_ms": 1036.65, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 12.76, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 8.94, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 13.19, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.017086834733893556, + "to": "", + "p99_latency_ms": 42.66, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0058823529411764705, + "to": "", + "p99_latency_ms": 9.89, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.011764705882352941, + "to": "", + "p99_latency_ms": 27.88, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 59.59, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 10.02, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0058823529411764705, + "to": "", + "p99_latency_ms": 23.45, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 4.22, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 12.29327731092437, + "to": "", + "p99_latency_ms": 29.06, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 14.93, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005322128851540616, + "to": "", + "p99_latency_ms": 11, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 12.57, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.010084033613445379, + "to": "", + "p99_latency_ms": 73.28, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 6.07, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 12.63, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.42128851540616247, + "to": "", + "p99_latency_ms": 11.48, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005322128851540616, + "to": "", + "p99_latency_ms": 52.5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 5.73, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 6.37, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 13.54, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 3.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.006442577030812325, + "to": "", + "p99_latency_ms": 9.02, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0030812324929971988, + "to": "", + "p99_latency_ms": 19.5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 67.3, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 7.41, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005042016806722689, + "to": "", + "p99_latency_ms": 4.69, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.011204481792717087, + "to": "", + "p99_latency_ms": 71.86, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 8.72, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.010644257703081233, + "to": "", + "p99_latency_ms": 30.35, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 3.169467787114846, + "to": "", + "p99_latency_ms": 1.92, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 8.24, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 4.9, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004481792717086834, + "to": "", + "p99_latency_ms": 616505, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 12.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.011484593837535015, + "to": "", + "p99_latency_ms": 68.99, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 14.87, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.028291316526610644, + "to": "", + "p99_latency_ms": 2.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0025210084033613447, + "to": "", + "p99_latency_ms": 1541.55, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0030812324929971988, + "to": "", + "p99_latency_ms": 14.38, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 14.68, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 266.01, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.06694677871148459, + "to": "", + "p99_latency_ms": 35.82, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.3532212885154062, + "to": "", + "p99_latency_ms": 781020, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 35.77, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.056862745098039215, + "to": "", + "p99_latency_ms": 72.58, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 14.92, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 5007.3, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 79.71, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 4.221008403361345, + "to": "", + "p99_latency_ms": 12.04, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 1.5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.5182072829131653, + "to": "", + "p99_latency_ms": 74.16, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 158.73, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 5.66, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 19.830812324929973, + "to": "", + "p99_latency_ms": 34.75, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.8131652661064426, + "to": "", + "p99_latency_ms": 18.46, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 6.75, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 3.171708683473389, + "to": "", + "p99_latency_ms": 688.64, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.023529411764705882, + "to": "", + "p99_latency_ms": 147.28, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 12.84, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 17.39, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.19859943977591035, + "to": "", + "p99_latency_ms": 4.74, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.007563025210084034, + "to": "", + "p99_latency_ms": 36.66, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.9394957983193277, + "to": "", + "p99_latency_ms": 53.82, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 15.32, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005322128851540616, + "to": "", + "p99_latency_ms": 1.21, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0061624649859943975, + "to": "", + "p99_latency_ms": 15.28, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 64.69, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.1257703081232493, + "to": "", + "p99_latency_ms": 5.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 4.49, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 12.51, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004481792717086834, + "to": "", + "p99_latency_ms": 32.41, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 2.1, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.4927170868347339, + "to": "", + "p99_latency_ms": 437.22, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 5.129411764705883, + "to": "", + "p99_latency_ms": 9.67, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 2.04, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 25.06, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 1.14, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 28.95, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0036414565826330533, + "to": "", + "p99_latency_ms": 71.92, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 850900, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 113.88, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 352.28, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 11.29, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 20.14, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0070028011204481795, + "to": "", + "p99_latency_ms": 10.75, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 8.01, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.02492997198879552, + "to": "", + "p99_latency_ms": 51.87, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0061624649859943975, + "to": "", + "p99_latency_ms": 15.81, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 13.38, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.02464985994397759, + "to": "", + "p99_latency_ms": 17.41, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 7.36, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.07647058823529412, + "to": "", + "p99_latency_ms": 38.68, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 6.99, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 3.4913165266106443, + "to": "", + "p99_latency_ms": 6.07, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.015406162464985995, + "to": "", + "p99_latency_ms": 13.82, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.12212885154061624, + "to": "", + "p99_latency_ms": 78.95, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 12523.35, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.17366946778711484, + "to": "", + "p99_latency_ms": 301.55, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.7675070028011205, + "to": "", + "p99_latency_ms": 29.35, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.01484593837535014, + "to": "", + "p99_latency_ms": 960348, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 14.18, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 3.01, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 7.61, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 94.88, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.8408963585434174, + "to": "", + "p99_latency_ms": 65.82, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 15.35, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 20.38, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 107.19, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0067226890756302525, + "to": "", + "p99_latency_ms": 94.72, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 18.88, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 12.68, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 15.39, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 8.9, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004761904761904762, + "to": "", + "p99_latency_ms": 147.72, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.2876750700280112, + "to": "", + "p99_latency_ms": 21.93, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.14705882352941177, + "to": "", + "p99_latency_ms": 184.28, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 2.03109243697479, + "to": "", + "p99_latency_ms": 1.03, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 12.5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 572.23, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 689800, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.009523809523809525, + "to": "", + "p99_latency_ms": 16.24, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 4450.4, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0061624649859943975, + "to": "", + "p99_latency_ms": 28.53, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 12.29, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 1.71, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 24.21, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.21932773109243697, + "to": "", + "p99_latency_ms": 602.14, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 1024.52, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.16330532212885154, + "to": "", + "p99_latency_ms": 11.21, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.1627450980392158, + "to": "", + "p99_latency_ms": 5.64, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 17.27, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.008963585434173669, + "to": "", + "p99_latency_ms": 1.87, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 26.74, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 12.98, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.07647058823529412, + "to": "", + "p99_latency_ms": 3.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 1.15, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 30808.9, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.008963585434173669, + "to": "", + "p99_latency_ms": 1.16, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 8.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 6.09, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4719.01, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 68.99, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.045658263305322126, + "to": "", + "p99_latency_ms": 5.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.008963585434173669, + "to": "", + "p99_latency_ms": 70.98, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 6.68, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0196078431372549, + "to": "", + "p99_latency_ms": 80.44, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 6.635294117647059, + "to": "", + "p99_latency_ms": 2.63, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004761904761904762, + "to": "", + "p99_latency_ms": 86.61, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004481792717086834, + "to": "", + "p99_latency_ms": 267.13, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 13.56, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 5.11, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.03277310924369748, + "to": "", + "p99_latency_ms": 150.34, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.553781512605042, + "to": "", + "p99_latency_ms": 29.23, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0025210084033613447, + "to": "", + "p99_latency_ms": 8.4, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 9.19, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 140.14, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 12.77, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 941752, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 17.07, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 1.67, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0896358543417367, + "to": "", + "p99_latency_ms": 8.7, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.8313725490196079, + "to": "", + "p99_latency_ms": 20.7, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.09187675070028012, + "to": "", + "p99_latency_ms": 1.25, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 104.89, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 12.77, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 21.0624649859944, + "to": "", + "p99_latency_ms": 1.41, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.44, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 25.15, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004761904761904762, + "to": "", + "p99_latency_ms": 397.62, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 39.82, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.1, + "to": "", + "p99_latency_ms": 104.34, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 209.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 35.67, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 100, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 77.06, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.3165266106442577, + "to": "", + "p99_latency_ms": 31.3, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004481792717086834, + "to": "", + "p99_latency_ms": 15.07, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 35.87, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 92.24, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 5.13, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 19.55, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.08487394957983194, + "to": "", + "p99_latency_ms": 516.27, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 8.35, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 31.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 2.42, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.24761904761904763, + "to": "", + "p99_latency_ms": 421.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 45.17, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0061624649859943975, + "to": "", + "p99_latency_ms": 79.02, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005042016806722689, + "to": "", + "p99_latency_ms": 1.07, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 11.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005042016806722689, + "to": "", + "p99_latency_ms": 1.64, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.041176470588235294, + "to": "", + "p99_latency_ms": 247.42, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0030812324929971988, + "to": "", + "p99_latency_ms": 15.28, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 14.58, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 14.61, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.014565826330532213, + "to": "", + "p99_latency_ms": 51.75, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0056022408963585435, + "to": "", + "p99_latency_ms": 1.21, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 13.82, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.8392156862745098, + "to": "", + "p99_latency_ms": 1.56, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 15.29, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 723728, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.009523809523809525, + "to": "", + "p99_latency_ms": 196.91, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.546778711484594, + "to": "", + "p99_latency_ms": 13.33, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 1.5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 21.45, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 16.96, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 4.050980392156863, + "to": "", + "p99_latency_ms": 10.72, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.01764705882352941, + "to": "", + "p99_latency_ms": 30.19, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.04285714285714286, + "to": "", + "p99_latency_ms": 144.82, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 2.8, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005322128851540616, + "to": "", + "p99_latency_ms": 9.4, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.03865546218487395, + "to": "", + "p99_latency_ms": 1.67, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.02857142857142857, + "to": "", + "p99_latency_ms": 5.46, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 40.11, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0700280112044818, + "to": "", + "p99_latency_ms": 64.16, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 8.72, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005042016806722689, + "to": "", + "p99_latency_ms": 14.07, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 38.2, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.8361344537815126, + "to": "", + "p99_latency_ms": 51.1, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 26.26, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.04, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0036414565826330533, + "to": "", + "p99_latency_ms": 40.02, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.16554621848739495, + "to": "", + "p99_latency_ms": 2.62, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.9644257703081233, + "to": "", + "p99_latency_ms": 141.7, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 23.61, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 15.85, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.006442577030812325, + "to": "", + "p99_latency_ms": 13.91, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 1.27, + "from": "" + }, + { + "error_rate_pct": 100, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 30005.67, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 8.66, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.23221288515406163, + "to": "", + "p99_latency_ms": 9.15, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 17.4, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 84.66, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 35.44, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 13.9, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 1.08, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00784313725490196, + "to": "", + "p99_latency_ms": 796.81, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 12.89, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 17.07, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 16.997759103641457, + "to": "", + "p99_latency_ms": 8.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 6.39, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 351.95, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0070028011204481795, + "to": "", + "p99_latency_ms": 11.17, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 21.4, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 1.93, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0061624649859943975, + "to": "", + "p99_latency_ms": 72.1, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.03725490196078431, + "to": "", + "p99_latency_ms": 296.76, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005322128851540616, + "to": "", + "p99_latency_ms": 5.64, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.130812324929972, + "to": "", + "p99_latency_ms": 135.05, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 7.2, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 790.61, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 514.45, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 203.11, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 11.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 25.39, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.04873949579831933, + "to": "", + "p99_latency_ms": 663.18, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 14.86, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0070028011204481795, + "to": "", + "p99_latency_ms": 10.16, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004481792717086834, + "to": "", + "p99_latency_ms": 24.35, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0025210084033613447, + "to": "", + "p99_latency_ms": 2.46, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.006442577030812325, + "to": "", + "p99_latency_ms": 16.5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 33.93, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 12.9, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.7187675070028012, + "to": "", + "p99_latency_ms": 4.79, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 13.89, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00980392156862745, + "to": "", + "p99_latency_ms": 25.26, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 15.11, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 14.12, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 422.14, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 548.98, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00392156862745098, + "to": "", + "p99_latency_ms": 18.34, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 1460.3, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 7.07, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 23.25, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 1.96, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0067226890756302525, + "to": "", + "p99_latency_ms": 80.66, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 1.24, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 12.87, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 108.61, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 54.88, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.08515406162464986, + "to": "", + "p99_latency_ms": 2.77, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 1.52, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.3487394957983194, + "to": "", + "p99_latency_ms": 3.26, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 74.15, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 2.27, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.2030812324929972, + "to": "", + "p99_latency_ms": 1.23, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.03165266106442577, + "to": "", + "p99_latency_ms": 11.21, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 100, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 4.51, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005042016806722689, + "to": "", + "p99_latency_ms": 2.7, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.01764705882352941, + "to": "", + "p99_latency_ms": 9.9, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 24.24, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 13.57, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 2.43, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 9.54, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0061624649859943975, + "to": "", + "p99_latency_ms": 57.6, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.5865546218487395, + "to": "", + "p99_latency_ms": 5.99, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.77, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.14789915966386555, + "to": "", + "p99_latency_ms": 1.43, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004761904761904762, + "to": "", + "p99_latency_ms": 1.1, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.012324929971988795, + "to": "", + "p99_latency_ms": 817975, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 247.85, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0056022408963585435, + "to": "", + "p99_latency_ms": 71.41, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 13.03, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.8750700280112045, + "to": "", + "p99_latency_ms": 5.11, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 8.77, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.1957983193277311, + "to": "", + "p99_latency_ms": 12.2, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 360.58, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00980392156862745, + "to": "", + "p99_latency_ms": 56.76, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 12.03, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.011204481792717087, + "to": "", + "p99_latency_ms": 36.34, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.24509803921568626, + "to": "", + "p99_latency_ms": 21.9, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 1549.06, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.01288515406162465, + "to": "", + "p99_latency_ms": 10.45, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 16.15, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0056022408963585435, + "to": "", + "p99_latency_ms": 30864.7, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 12.52, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.006442577030812325, + "to": "", + "p99_latency_ms": 8.39, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0067226890756302525, + "to": "", + "p99_latency_ms": 9.55, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0025210084033613447, + "to": "", + "p99_latency_ms": 133.1, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 20.54, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00392156862745098, + "to": "", + "p99_latency_ms": 29.23, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.029131652661064426, + "to": "", + "p99_latency_ms": 63.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 100, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 364.92, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00980392156862745, + "to": "", + "p99_latency_ms": 9.34, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.08207282913165266, + "to": "", + "p99_latency_ms": 123.93, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.01904761904761905, + "to": "", + "p99_latency_ms": 337.09, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 6.37, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005322128851540616, + "to": "", + "p99_latency_ms": 38.09, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 12.52, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 5.678991596638656, + "to": "", + "p99_latency_ms": 11.28, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.010644257703081233, + "to": "", + "p99_latency_ms": 612.87, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.8394957983193277, + "to": "", + "p99_latency_ms": 9.78, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 7.518487394957983, + "to": "", + "p99_latency_ms": 3.03, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 13.11, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.02464985994397759, + "to": "", + "p99_latency_ms": 210.37, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 99.4, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 1.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 5.54, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 299.43, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.014285714285714285, + "to": "", + "p99_latency_ms": 98.94, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.26974789915966385, + "to": "", + "p99_latency_ms": 12.52, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 2.9, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 47.45, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00784313725490196, + "to": "", + "p99_latency_ms": 596.24, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 94.24, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0025210084033613447, + "to": "", + "p99_latency_ms": 2311.39, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 966.44, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0036414565826330533, + "to": "", + "p99_latency_ms": 2.44, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.31708683473389354, + "to": "", + "p99_latency_ms": 6.15, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.009243697478991597, + "to": "", + "p99_latency_ms": 57.96, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.4081232492997199, + "to": "", + "p99_latency_ms": 10.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0067226890756302525, + "to": "", + "p99_latency_ms": 24.6, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.1983193277310924, + "to": "", + "p99_latency_ms": 69.47, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 84.33, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 30.15, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 9.3, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 6.95, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00784313725490196, + "to": "", + "p99_latency_ms": 692.05, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004481792717086834, + "to": "", + "p99_latency_ms": 4.84, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.04257703081232493, + "to": "", + "p99_latency_ms": 11.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 100, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 14.96, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.08403361344537816, + "to": "", + "p99_latency_ms": 5.79, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.8341736694677871, + "to": "", + "p99_latency_ms": 20.49, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 23.03, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.014005602240896359, + "to": "", + "p99_latency_ms": 379.84, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 143.3, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0025210084033613447, + "to": "", + "p99_latency_ms": 48.53, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 6.089915966386554, + "to": "", + "p99_latency_ms": 12.67, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 12.94, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 352.44, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 180.36, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 3.79, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.6103641456582634, + "to": "", + "p99_latency_ms": 444.79, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.011764705882352941, + "to": "", + "p99_latency_ms": 181.85, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 1.22, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.046218487394957986, + "to": "", + "p99_latency_ms": 203.34, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.07507002801120448, + "to": "", + "p99_latency_ms": 1.05, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 308.66, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.031932773109243695, + "to": "", + "p99_latency_ms": 7.75, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 26.32, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.018487394957983194, + "to": "", + "p99_latency_ms": 49.73, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.4969187675070028, + "to": "", + "p99_latency_ms": 3.02, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 34.75, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004201680672268907, + "to": "", + "p99_latency_ms": 731.74, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 12.72, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.09859943977591036, + "to": "", + "p99_latency_ms": 1.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.5851540616246498, + "to": "", + "p99_latency_ms": 5.58, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004481792717086834, + "to": "", + "p99_latency_ms": 16.27, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 2.39, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.2560224089635854, + "to": "", + "p99_latency_ms": 1.79, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 8.39, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 769100, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 72.85, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.01680672268907563, + "to": "", + "p99_latency_ms": 79.95, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 70.07, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 100, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 30947.01, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0030812324929971988, + "to": "", + "p99_latency_ms": 59.57, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.05714285714285714, + "to": "", + "p99_latency_ms": 1.73, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 17.26, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 959.97, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.02296918767507003, + "to": "", + "p99_latency_ms": 246.01, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 21.51, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 16.05, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 13.65, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.477591036414566, + "to": "", + "p99_latency_ms": 7.46, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 53.14, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.67, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.007282913165266107, + "to": "", + "p99_latency_ms": 30711.92, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 13.25, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.13641456582633052, + "to": "", + "p99_latency_ms": 1636.21, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 16.06, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.34, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.018487394957983194, + "to": "", + "p99_latency_ms": 1.42, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.03305322128851541, + "to": "", + "p99_latency_ms": 4.56, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 16.5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.007563025210084034, + "to": "", + "p99_latency_ms": 2938.01, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 2.4296918767507, + "to": "", + "p99_latency_ms": 1.29, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 44.22, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 18.21, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 645323, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 12.25, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 15.53, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 1.44, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.3764705882352941, + "to": "", + "p99_latency_ms": 329.2, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 1.3, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.010364145658263305, + "to": "", + "p99_latency_ms": 9.42, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 12.8, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0025210084033613447, + "to": "", + "p99_latency_ms": 64.57, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.29299719887955183, + "to": "", + "p99_latency_ms": 291.79, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 2.388235294117647, + "to": "", + "p99_latency_ms": 1.22, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.012605042016806723, + "to": "", + "p99_latency_ms": 170.29, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.5165266106442576, + "to": "", + "p99_latency_ms": 24.39, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 828900, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 15.16, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 16.44, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 10.03, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 65.4, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 81.58, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.3103641456582633, + "to": "", + "p99_latency_ms": 1.96, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 1.3, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.09943977591036414, + "to": "", + "p99_latency_ms": 5.08, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.015966386554621848, + "to": "", + "p99_latency_ms": 6062.32, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 13.65, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.06918767507002802, + "to": "", + "p99_latency_ms": 113.3, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 19.63, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 12.42, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004201680672268907, + "to": "", + "p99_latency_ms": 21.02, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 5.94, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 2.38, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 10.23, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 1.65, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0025210084033613447, + "to": "", + "p99_latency_ms": 133.29, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 7.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.008683473389355743, + "to": "", + "p99_latency_ms": 19.02, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 279.5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 4.25, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 883.22, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 2.16, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.1103641456582633, + "to": "", + "p99_latency_ms": 57.18, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 8.9, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.07170868347338935, + "to": "", + "p99_latency_ms": 34.03, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 10.9, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 377.23, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 1.17, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.20364145658263305, + "to": "", + "p99_latency_ms": 10.52, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004201680672268907, + "to": "", + "p99_latency_ms": 180.09, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 13.77, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 598.66, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.020448179271708684, + "to": "", + "p99_latency_ms": 180.08, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 568.82, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005322128851540616, + "to": "", + "p99_latency_ms": 9.01, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.04257703081232493, + "to": "", + "p99_latency_ms": 369.46, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 7.71, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0067226890756302525, + "to": "", + "p99_latency_ms": 14.48, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.8313725490196079, + "to": "", + "p99_latency_ms": 13.84, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0067226890756302525, + "to": "", + "p99_latency_ms": 197.18, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.018487394957983194, + "to": "", + "p99_latency_ms": 1656.11, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 16.1, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.4565826330532213, + "to": "", + "p99_latency_ms": 46.77, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 70.08, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 106.84, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.03361344537815126, + "to": "", + "p99_latency_ms": 15.29, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0025210084033613447, + "to": "", + "p99_latency_ms": 132.81, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 4.15, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 57.12, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 731708, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 16.5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.01, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.026330532212885154, + "to": "", + "p99_latency_ms": 7.92, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 446.51, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 94.84, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.242296918767507, + "to": "", + "p99_latency_ms": 12.14, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 24.44, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 5.08, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 3030.61, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.7896358543417367, + "to": "", + "p99_latency_ms": 2.43, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 136.54, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 15.1, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.010644257703081233, + "to": "", + "p99_latency_ms": 156.78, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 793522, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0025210084033613447, + "to": "", + "p99_latency_ms": 43.76, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 12.76, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 2.5831932773109245, + "to": "", + "p99_latency_ms": 6.95, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 40.93, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.008683473389355743, + "to": "", + "p99_latency_ms": 30879.55, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 9.81, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 14.88, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 5.85, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 18.59, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.007282913165266107, + "to": "", + "p99_latency_ms": 11.95, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.006442577030812325, + "to": "", + "p99_latency_ms": 1255.17, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 7.01, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 3.28, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 991685, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.008123249299719889, + "to": "", + "p99_latency_ms": 23.77, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.039775910364145656, + "to": "", + "p99_latency_ms": 60.43, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 12.48, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.015406162464985995, + "to": "", + "p99_latency_ms": 20.42, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 5.08, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 1.5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 13.01, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0025210084033613447, + "to": "", + "p99_latency_ms": 13.28, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0067226890756302525, + "to": "", + "p99_latency_ms": 23.08, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005322128851540616, + "to": "", + "p99_latency_ms": 14.56, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.7557422969187675, + "to": "", + "p99_latency_ms": 5.66, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 25.09, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 173.26, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.029131652661064426, + "to": "", + "p99_latency_ms": 8.33, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 13.15, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.012324929971988795, + "to": "", + "p99_latency_ms": 74.99, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.42, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.7683473389355743, + "to": "", + "p99_latency_ms": 2.11, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0070028011204481795, + "to": "", + "p99_latency_ms": 8.04, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.07563025210084033, + "to": "", + "p99_latency_ms": 43.65, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 15.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 59.03, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.9109243697478991, + "to": "", + "p99_latency_ms": 73.6, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.013445378151260505, + "to": "", + "p99_latency_ms": 51.5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 27.99, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.02296918767507003, + "to": "", + "p99_latency_ms": 5.82, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 73.22, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 18.62, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.02969187675070028, + "to": "", + "p99_latency_ms": 65.91, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.10476190476190476, + "to": "", + "p99_latency_ms": 6.55, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.8549019607843137, + "to": "", + "p99_latency_ms": 2.41, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.21176470588235294, + "to": "", + "p99_latency_ms": 17.4, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 4.445378151260504, + "to": "", + "p99_latency_ms": 36.22, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.020168067226890758, + "to": "", + "p99_latency_ms": 11.53, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.01484593837535014, + "to": "", + "p99_latency_ms": 1782.06, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 15.9, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.9156862745098039, + "to": "", + "p99_latency_ms": 13.05, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0907563025210084, + "to": "", + "p99_latency_ms": 905365, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 24.51, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.888515406162465, + "to": "", + "p99_latency_ms": 4.25, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0907563025210084, + "to": "", + "p99_latency_ms": 174.58, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 12.64, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 6.39, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 13.19, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 12.99, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.20784313725490197, + "to": "", + "p99_latency_ms": 3.28, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.29, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.5005602240896359, + "to": "", + "p99_latency_ms": 120.04, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004761904761904762, + "to": "", + "p99_latency_ms": 95.09, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 13.17, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.81, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 96.1, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.16750700280112044, + "to": "", + "p99_latency_ms": 57.09, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 15.77, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 2.54, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.9369747899159664, + "to": "", + "p99_latency_ms": 41.76, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 910600, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.11204481792717087, + "to": "", + "p99_latency_ms": 22.67, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 59.27, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 897330, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 14.73, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 15.97, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.027170868347338936, + "to": "", + "p99_latency_ms": 12.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004481792717086834, + "to": "", + "p99_latency_ms": 708780, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 92.72, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0546218487394958, + "to": "", + "p99_latency_ms": 50.71, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.08263305322128851, + "to": "", + "p99_latency_ms": 68.07, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 5.66, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 12.49, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 21.51, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 27.26, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00784313725490196, + "to": "", + "p99_latency_ms": 681.73, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.02969187675070028, + "to": "", + "p99_latency_ms": 8.52, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 8.85, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 63.94, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 23.29, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0226890756302521, + "to": "", + "p99_latency_ms": 1.16, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.3400560224089635, + "to": "", + "p99_latency_ms": 10.25, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 7.79, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0056022408963585435, + "to": "", + "p99_latency_ms": 12.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 12.37, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 16.01, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 11.84, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004761904761904762, + "to": "", + "p99_latency_ms": 708.89, + "from": "" + }, + { + "error_rate_pct": 50, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 45.21, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 2.04, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 16.19, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0907563025210084, + "to": "", + "p99_latency_ms": 1.19, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00784313725490196, + "to": "", + "p99_latency_ms": 679.12, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 707157, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 1.99, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 72.66, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 4.8593837535014, + "to": "", + "p99_latency_ms": 6.63, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0058823529411764705, + "to": "", + "p99_latency_ms": 11.11, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0061624649859943975, + "to": "", + "p99_latency_ms": 142.5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 6.4, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.006442577030812325, + "to": "", + "p99_latency_ms": 20.49, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 10.08, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 14.93, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 12.57, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0030812324929971988, + "to": "", + "p99_latency_ms": 13.16, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 100, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 39.69, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0070028011204481795, + "to": "", + "p99_latency_ms": 8.38, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.7028011204481792, + "to": "", + "p99_latency_ms": 1.34, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.15518207282913166, + "to": "", + "p99_latency_ms": 8.68, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 636191, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 8.58, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.08543417366946779, + "to": "", + "p99_latency_ms": 2.38, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.13977591036414566, + "to": "", + "p99_latency_ms": 12.12, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 31029.49, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 1.73, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 6.01, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.2134453781512605, + "to": "", + "p99_latency_ms": 5.6, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 64.81, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.78, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 62.23, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005042016806722689, + "to": "", + "p99_latency_ms": 59.89, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 14.32, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0067226890756302525, + "to": "", + "p99_latency_ms": 643.97, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 15.12, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.014005602240896359, + "to": "", + "p99_latency_ms": 33.57, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.016526610644257703, + "to": "", + "p99_latency_ms": 9.48, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.008963585434173669, + "to": "", + "p99_latency_ms": 214.97, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0067226890756302525, + "to": "", + "p99_latency_ms": 50.13, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005042016806722689, + "to": "", + "p99_latency_ms": 887200, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 509.49, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.006442577030812325, + "to": "", + "p99_latency_ms": 16.82, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 2.85, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0025210084033613447, + "to": "", + "p99_latency_ms": 623.99, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 13.96, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 12.95, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 38.21, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.014285714285714285, + "to": "", + "p99_latency_ms": 1.26, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.08515406162464986, + "to": "", + "p99_latency_ms": 15.55, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 78.09, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.19215686274509805, + "to": "", + "p99_latency_ms": 5.08, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.038375350140056025, + "to": "", + "p99_latency_ms": 24.86, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.007282913165266107, + "to": "", + "p99_latency_ms": 85.63, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0061624649859943975, + "to": "", + "p99_latency_ms": 28.93, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.011204481792717087, + "to": "", + "p99_latency_ms": 6.24, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004481792717086834, + "to": "", + "p99_latency_ms": 1.98, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 658200, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 12.78, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.96, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 14.94, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 406.76, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 1661.11, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 29.59, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 1750.48, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 12.187114845938375, + "to": "", + "p99_latency_ms": 1.26, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 23.35, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 239.4, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 5.46, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 11.88, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.06386554621848739, + "to": "", + "p99_latency_ms": 1.87, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.8904761904761904, + "to": "", + "p99_latency_ms": 8.68, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00784313725490196, + "to": "", + "p99_latency_ms": 647.71, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 142.11, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 9.93, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.85, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.5529411764705883, + "to": "", + "p99_latency_ms": 440.34, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.006442577030812325, + "to": "", + "p99_latency_ms": 15.4, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 13.09, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.1, + "to": "", + "p99_latency_ms": 13.33, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 58.49, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 287.53, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 66.56, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 340.77, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004201680672268907, + "to": "", + "p99_latency_ms": 30.89, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.017086834733893556, + "to": "", + "p99_latency_ms": 35.98, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 46.07, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.009243697478991597, + "to": "", + "p99_latency_ms": 5.37, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 30.12, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 12.55, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.9005602240896359, + "to": "", + "p99_latency_ms": 1.27, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.04873949579831933, + "to": "", + "p99_latency_ms": 23.32, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.7557422969187675, + "to": "", + "p99_latency_ms": 14.84, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0030812324929971988, + "to": "", + "p99_latency_ms": 151.52, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005042016806722689, + "to": "", + "p99_latency_ms": 14.71, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.23865546218487396, + "to": "", + "p99_latency_ms": 29.24, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 12.96, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.02296918767507003, + "to": "", + "p99_latency_ms": 3.89, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 13.2, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 2.581512605042017, + "to": "", + "p99_latency_ms": 1.29, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.011764705882352941, + "to": "", + "p99_latency_ms": 2.95, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 14.08, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.56, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.03669467787114846, + "to": "", + "p99_latency_ms": 12.22, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 5.48, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005322128851540616, + "to": "", + "p99_latency_ms": 113.64, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 3.24, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.21288515406162464, + "to": "", + "p99_latency_ms": 10.82, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 16.94, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005322128851540616, + "to": "", + "p99_latency_ms": 701908, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 86.92, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0025210084033613447, + "to": "", + "p99_latency_ms": 114.68, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.01904761904761905, + "to": "", + "p99_latency_ms": 18.3, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 7.6, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.012044817927170869, + "to": "", + "p99_latency_ms": 13.05, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.895518207282913, + "to": "", + "p99_latency_ms": 8.76, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0025210084033613447, + "to": "", + "p99_latency_ms": 98.66, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.45, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 12.95, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 12.15, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.010084033613445379, + "to": "", + "p99_latency_ms": 13.98, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0061624649859943975, + "to": "", + "p99_latency_ms": 39.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.81, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 13.48, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0067226890756302525, + "to": "", + "p99_latency_ms": 38.4, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0061624649859943975, + "to": "", + "p99_latency_ms": 29.04, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 17.48, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 14.29, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 14.75, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 24.49, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 12.35, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 14.08, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.03557422969187675, + "to": "", + "p99_latency_ms": 3.85, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004201680672268907, + "to": "", + "p99_latency_ms": 246.11, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 12.28, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 11.86, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0030812324929971988, + "to": "", + "p99_latency_ms": 59.7, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 8.04, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0025210084033613447, + "to": "", + "p99_latency_ms": 11.3, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 1.05, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 12.47, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.30952380952380953, + "to": "", + "p99_latency_ms": 52.64, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004481792717086834, + "to": "", + "p99_latency_ms": 5.29, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.07058823529411765, + "to": "", + "p99_latency_ms": 9.46, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 18.67, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0056022408963585435, + "to": "", + "p99_latency_ms": 660.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 12.85, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 3.25, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 35.68, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 13.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0761904761904762, + "to": "", + "p99_latency_ms": 6.97, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.10840336134453782, + "to": "", + "p99_latency_ms": 42.44, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00392156862745098, + "to": "", + "p99_latency_ms": 13.44, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 12.65, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 642.29, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 12.5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 12.91, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.032492997198879554, + "to": "", + "p99_latency_ms": 7.22, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.007282913165266107, + "to": "", + "p99_latency_ms": 749350, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.10448179271708684, + "to": "", + "p99_latency_ms": 22.15, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.008683473389355743, + "to": "", + "p99_latency_ms": 4.3, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.24313725490196078, + "to": "", + "p99_latency_ms": 10.87, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0067226890756302525, + "to": "", + "p99_latency_ms": 20.2, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.3025210084033613, + "to": "", + "p99_latency_ms": 11.41, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005042016806722689, + "to": "", + "p99_latency_ms": 5.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005042016806722689, + "to": "", + "p99_latency_ms": 15.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.03333333333333333, + "to": "", + "p99_latency_ms": 9.04, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0056022408963585435, + "to": "", + "p99_latency_ms": 722002, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 6.330812324929972, + "to": "", + "p99_latency_ms": 1.21, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 380.02, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.042296918767507005, + "to": "", + "p99_latency_ms": 10.58, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.05378151260504202, + "to": "", + "p99_latency_ms": 36.47, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 165.79, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.3464985994397759, + "to": "", + "p99_latency_ms": 79.92, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.006442577030812325, + "to": "", + "p99_latency_ms": 217.38, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 14.89, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0070028011204481795, + "to": "", + "p99_latency_ms": 23.04, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 1.4064425770308124, + "to": "", + "p99_latency_ms": 2.42, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 15.12, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004761904761904762, + "to": "", + "p99_latency_ms": 284.84, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.6310924369747899, + "to": "", + "p99_latency_ms": 28.31, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 10.068347338935574, + "to": "", + "p99_latency_ms": 4.93, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 92.83, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 12.67, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 12.44, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 12.4, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 3.61, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005322128851540616, + "to": "", + "p99_latency_ms": 33.91, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 13.38, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.05742296918767507, + "to": "", + "p99_latency_ms": 55.61, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.009523809523809525, + "to": "", + "p99_latency_ms": 332.14, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 877.5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 6.07, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 14.91, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.007563025210084034, + "to": "", + "p99_latency_ms": 3072.47, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 30.48, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 29.34, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 1.09, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.008963585434173669, + "to": "", + "p99_latency_ms": 56.99, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 16.63, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.20560224089635853, + "to": "", + "p99_latency_ms": 51.26, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.043697478991596636, + "to": "", + "p99_latency_ms": 85.44, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.48207282913165267, + "to": "", + "p99_latency_ms": 2.55, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.03081232492997199, + "to": "", + "p99_latency_ms": 379.77, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 16.92, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 21.26, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 12.59, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 95.99, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 136.32, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.1887955182072829, + "to": "", + "p99_latency_ms": 26.59, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.007563025210084034, + "to": "", + "p99_latency_ms": 53.12, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 80.42, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 12.45, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 2.0436974789915965, + "to": "", + "p99_latency_ms": 11.5, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 10.06610644257703, + "to": "", + "p99_latency_ms": 2.81, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.19439775910364146, + "to": "", + "p99_latency_ms": 11.89, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.11372549019607843, + "to": "", + "p99_latency_ms": 2.48, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.3700280112044818, + "to": "", + "p99_latency_ms": 199.92, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 6.14, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 39.95, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.2184873949579832, + "to": "", + "p99_latency_ms": 51.63, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.013165266106442577, + "to": "", + "p99_latency_ms": 97.03, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 59.6, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 12.38, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0907563025210084, + "to": "", + "p99_latency_ms": 1.04, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.008403361344537815, + "to": "", + "p99_latency_ms": 16.69, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.03361344537815126, + "to": "", + "p99_latency_ms": 4.9, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.005322128851540616, + "to": "", + "p99_latency_ms": 35.44, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.060784313725490195, + "to": "", + "p99_latency_ms": 1.3, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 221.44, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.008963585434173669, + "to": "", + "p99_latency_ms": 2.41, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0070028011204481795, + "to": "", + "p99_latency_ms": 44.36, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0070028011204481795, + "to": "", + "p99_latency_ms": 8.4, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 15, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 601980, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0067226890756302525, + "to": "", + "p99_latency_ms": 78.62, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 15.35, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 720050, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.06722689075630252, + "to": "", + "p99_latency_ms": 10.29, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.03361344537815126, + "to": "", + "p99_latency_ms": 14.68, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 6.48, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0014005602240896359, + "to": "", + "p99_latency_ms": 12.64, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 5.37, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0016806722689075631, + "to": "", + "p99_latency_ms": 13779.82, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 22.88, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 15, + "from": "" + }, + { + "error_rate_pct": 50, + "call_rate_rps": 0.0011204481792717086, + "to": "", + "p99_latency_ms": 30002.12, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 20.44, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.007282913165266107, + "to": "", + "p99_latency_ms": 20.85, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0008403361344537816, + "to": "", + "p99_latency_ms": 4.77, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.22605042016806723, + "to": "", + "p99_latency_ms": 100.24, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0036414565826330533, + "to": "", + "p99_latency_ms": 4.88, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00784313725490196, + "to": "", + "p99_latency_ms": 686.62, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.004481792717086834, + "to": "", + "p99_latency_ms": 103.65, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 13.371428571428572, + "to": "", + "p99_latency_ms": 4.98, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 8072.13, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0033613445378151263, + "to": "", + "p99_latency_ms": 844053, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 7.488515406162465, + "to": "", + "p99_latency_ms": 3.02, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0070028011204481795, + "to": "", + "p99_latency_ms": 8.66, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.08095238095238096, + "to": "", + "p99_latency_ms": 763.04, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.06722689075630252, + "to": "", + "p99_latency_ms": 1.27, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 15.7, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.002240896358543417, + "to": "", + "p99_latency_ms": 577258, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.16946778711484595, + "to": "", + "p99_latency_ms": 1.38, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.20224089635854342, + "to": "", + "p99_latency_ms": 612.69, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 918.59, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 76.65, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 4.02, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00028011204481792715, + "to": "", + "p99_latency_ms": 783900, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.06722689075630252, + "to": "", + "p99_latency_ms": 1.33, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.9392156862745098, + "to": "", + "p99_latency_ms": 782692, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.00196078431372549, + "to": "", + "p99_latency_ms": 15.6, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0028011204481792717, + "to": "", + "p99_latency_ms": 13.81, + "from": "" + }, + { + "error_rate_pct": 0, + "call_rate_rps": 0.0005602240896358543, + "to": "", + "p99_latency_ms": 5.18, + "from": "" + } + ], + "nodes": [ + { + "id": "" + } + ], + "node_count": 1, + "raw": [ + { + "errorRate": 0, + "p99": 2037306060, + "p95": 2010611500, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 1877138700, + "p50": 1710297700, + "p90": 1977243300, + "parent": "universal-salesforce-wrapper-service", + "child": "seller-offer-assignment-service" + }, + { + "errorRate": 0, + "p99": 2430214.000000025, + "p95": 853835, + "callRate": 17.540896358543417, + "callCount": 62621, + "p75": 666100, + "p50": 524100, + "p90": 756290, + "parent": "identity-provider-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 2849228, + "p95": 2723350, + "callRate": 0.006442577030812325, + "callCount": 23, + "p75": 1787550, + "p50": 1609400, + "p90": 2656020, + "parent": "buyer-bid-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 535509600, + "p95": 535509600, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 535509600, + "p50": 535509600, + "p90": 535509600, + "parent": "identity-api-gateway-service-staging", + "child": "peddle-go-merged-salvage-calculator-service-staging" + }, + { + "errorRate": 0, + "p99": 15768407, + "p95": 14799634.999999996, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 12526400, + "p50": 8450450, + "p90": 13588670, + "parent": "identity-external-api-gateway-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 19389940.000000037, + "p95": 3423424.9999999953, + "callRate": 0.031932773109243695, + "callCount": 114, + "p75": 1676975, + "p50": 1017600, + "p90": 2997060, + "parent": "cha-offer-service-staging", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 1033193, + "p95": 875565, + "callRate": 0.03137254901960784, + "callCount": 112, + "p75": 832750, + "p50": 800350, + "p90": 860400, + "parent": "uni-salesforce-event-integration-daemon", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 12669537, + "p95": 12349685, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 10750425, + "p50": 8751350, + "p90": 11949870, + "parent": "auc-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 9084912.000000002, + "p95": 813634.9999999999, + "callRate": 0.017366946778711485, + "callCount": 62, + "p75": 707625, + "p50": 640050, + "p90": 767730, + "parent": "comms-messaging-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 12427100, + "p95": 12427100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 12427100, + "p50": 12427100, + "p90": 12427100, + "parent": "remkt-shadow-iaa-calculator-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 15191160, + "p95": 15021800, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 14175000, + "p50": 12934800, + "p90": 14810100, + "parent": "comms-email-sender-message-listener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 12183188.999999998, + "p95": 11289944.999999998, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 6823725, + "p50": 4914850, + "p90": 10173390, + "parent": "finance-receivable-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 5368134.999999999, + "p95": 4979074.999999999, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 3763750, + "p50": 2891300, + "p90": 4492750, + "parent": "carrier-message-listener-service-development", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 65760398.9999999, + "p95": 10259195.000000052, + "callRate": 0.0056022408963585435, + "callCount": 20, + "p75": 4322675, + "p50": 3553000, + "p90": 5534550.000000002, + "parent": "identity-api-gateway-service", + "child": "publisher-service" + }, + { + "errorRate": 0, + "p99": 2892929436.999999, + "p95": 2535161184.999999, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 746319925, + "p50": 959800, + "p90": 2087950870.0000005, + "parent": "seller-offer-service", + "child": "buyer-message-listener-service" + }, + { + "errorRate": 0, + "p99": 12528542, + "p95": 12521510, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 12486350, + "p50": 12442400, + "p90": 12512720, + "parent": "cha-offer-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 17092058, + "p95": 16287889.999999996, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12407925, + "p50": 8065450, + "p90": 15282680, + "parent": "charity-message-listener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 40301493.99999999, + "p95": 27915469.999999978, + "callRate": 0.004201680672268907, + "callCount": 15, + "p75": 12134600, + "p50": 5781600, + "p90": 17768899.999999996, + "parent": "auc-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 1208814, + "p95": 1206070, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 1192350, + "p50": 1175200, + "p90": 1202640, + "parent": "auc-counter-bid-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 4522641, + "p95": 4510805, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 4451625, + "p50": 4377650, + "p90": 4496010, + "parent": "auc-service", + "child": "seller-message-listener-service" + }, + { + "errorRate": 0, + "p99": 13163050, + "p95": 13109250, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 12840250, + "p50": 12504000, + "p90": 13042000, + "parent": "uni-url-shortener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 327168330.0000002, + "p95": 278876250.00000006, + "callRate": 0.10084033613445378, + "callCount": 360, + "p75": 182375300, + "p50": 152078500, + "p90": 243086880.00000006, + "parent": "identity-api-gateway-service", + "child": "peddle-go-bid-service" + }, + { + "errorRate": 0, + "p99": 117263184.99999997, + "p95": 58725925, + "callRate": 0.004481792717086834, + "callCount": 16, + "p75": 18709000, + "p50": 4133950, + "p90": 33454600, + "parent": "finance-payable-message-listener-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 9393830, + "p95": 9380750, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 9315350, + "p50": 9233600, + "p90": 9364400, + "parent": "seller-message-listener-service-staging", + "child": "uni-system-notification-platform-daemon-staging" + }, + { + "errorRate": 0, + "p99": 2633500, + "p95": 2633500, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 2633500, + "p50": 2633500, + "p90": 2633500, + "parent": "auc-counter-bid-daemon-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 13158928, + "p95": 13139040, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 13039600, + "p50": 12915300, + "p90": 13114180, + "parent": "finance-payable-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 1850645.000000001, + "p95": 636435, + "callRate": 1.1915966386554622, + "callCount": 4254, + "p75": 418075, + "p50": 380600, + "p90": 555790.0000000002, + "parent": "uni-vehicle-readonly-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 39513510.00000003, + "p95": 17849549.999999996, + "callRate": 0.006442577030812325, + "callCount": 23, + "p75": 9149550, + "p50": 7214500, + "p90": 14354180.000000002, + "parent": "carrier-transport-message-listener-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 92147939, + "p95": 77894805, + "callRate": 0.0061624649859943975, + "callCount": 22, + "p75": 23695950, + "p50": 9989150, + "p90": 71399160.00000007, + "parent": "finance-accrual-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 22171300, + "p95": 22171300, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 22171300, + "p50": 22171300, + "p90": 22171300, + "parent": "publisher-site", + "child": "universal-salesforce-classic-service" + }, + { + "errorRate": 0, + "p99": 5877650, + "p95": 1003100, + "callRate": 1.2397759103641457, + "callCount": 4426, + "p75": 644650, + "p50": 481950, + "p90": 817050, + "parent": "identity-provider-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 22936911.00000005, + "p95": 3637630, + "callRate": 1.3669467787114846, + "callCount": 4880, + "p75": 2745825, + "p50": 1448800, + "p90": 3333980.0000000005, + "parent": "carrier-transport-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 2173069, + "p95": 1838494.9999999995, + "callRate": 0.06498599439775911, + "callCount": 232, + "p75": 1070175, + "p50": 930300, + "p90": 1328830, + "parent": "remkt-shadow-auction-net-salvage-calculator-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 16340130, + "p95": 16246650, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 15779250, + "p50": 15195000, + "p90": 16129800, + "parent": "identity-api-gateway-service-staging", + "child": "uni-url-shortener-service-staging" + }, + { + "errorRate": 0, + "p99": 59781481.99999991, + "p95": 3373804.9999999986, + "callRate": 0.05434173669467787, + "callCount": 194, + "p75": 1193325, + "p50": 1078400, + "p90": 1813960.000000001, + "parent": "publisher-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 12826580, + "p95": 12822500, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 12797550, + "p50": 12572700, + "p90": 12817400, + "parent": "uni-feed-event-integration-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 64696096, + "p95": 21130770.000000007, + "callRate": 0.0896358543417367, + "callCount": 320, + "p75": 2168450, + "p50": 1218800, + "p90": 4738390.00000001, + "parent": "finance-company-message-listener-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 5501498.000000005, + "p95": 1139405, + "callRate": 16.076470588235296, + "callCount": 57393, + "p75": 811100, + "p50": 711500, + "p90": 975940.0000000003, + "parent": "comms-messaging-message-listener-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 73567610, + "p95": 70483250, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 41017600, + "p50": 20013000, + "p90": 66627800, + "parent": "auc-service", + "child": "auc-counter-bid-daemon" + }, + { + "errorRate": 0, + "p99": 17786000, + "p95": 17786000, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 17786000, + "p50": 17786000, + "p90": 17786000, + "parent": "peddle-go-copart-hybrid-calculator-service-staging", + "child": "peddle-go-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 5009694, + "p95": 4997270, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 4935150, + "p50": 4857500, + "p90": 4981740, + "parent": "fin-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 6940242, + "p95": 6929610, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 6876450, + "p50": 6827050, + "p90": 6916320, + "parent": "identity-api-gateway-service", + "child": "charity-service" + }, + { + "errorRate": 0, + "p99": 38352413, + "p95": 38026865, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 36399125, + "p50": 34364450, + "p90": 37619930, + "parent": "identity-external-api-gateway-service", + "child": "universal-salesforce-wrapper-service" + }, + { + "errorRate": 0, + "p99": 12475280, + "p95": 12458400, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 12385925, + "p50": 9056250, + "p90": 12437300, + "parent": "peddle-go-auction-net-salvage-calculator-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 32070408.000000004, + "p95": 30166440, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 15653100, + "p50": 9319150, + "p90": 28043790, + "parent": "finance-company-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 1322381.9999999641, + "p95": 1143265, + "callRate": 0.08403361344537816, + "callCount": 300, + "p75": 675725, + "p50": 616200, + "p90": 805700.0000000001, + "parent": "remarketing-peddle-calculator-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 6111737.000000042, + "p95": 1207480, + "callRate": 2.9714285714285715, + "callCount": 10608, + "p75": 993725, + "p50": 635700, + "p90": 1109890, + "parent": "comms-action-link-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 4911055, + "p95": 4910875, + "callRate": 0.004481792717086834, + "callCount": 16, + "p75": 4646250, + "p50": 651950, + "p90": 4909800, + "parent": "peddle-go-iaa-hybrid-calculator-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 52989363.00000001, + "p95": 38240414.999999955, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12101075, + "p50": 7817700, + "p90": 19804229.999999985, + "parent": "comms-messaging-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 14692320, + "p95": 14487600, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 13464000, + "p50": 8773750, + "p90": 14231700, + "parent": "peddle-go-iaa-calculator-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 43574804, + "p95": 35515219.99999999, + "callRate": 0.004761904761904762, + "callCount": 17, + "p75": 21942200, + "p50": 13470600, + "p90": 29303420, + "parent": "comm-proxy-service", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 5231404, + "p95": 5119420, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 4742050, + "p50": 4623200, + "p90": 4979440, + "parent": "peddle-offer-calculation-message-listener-service-development", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 10027464, + "p95": 9327144.999999998, + "callRate": 0.0061624649859943975, + "callCount": 22, + "p75": 8476725, + "p50": 3145500, + "p90": 8801910, + "parent": "comms-messaging-service", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 12825704, + "p95": 11477319.999999998, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 4735400, + "p50": 4536700, + "p90": 9791840, + "parent": "identity-admin-site", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 12867913, + "p95": 12855565, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 12793825, + "p50": 9583000, + "p90": 12840130, + "parent": "uni-segment-event-integration-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 2086678.999999999, + "p95": 1463124.9999999998, + "callRate": 1.688515406162465, + "callCount": 6028, + "p75": 1036200, + "p50": 928450, + "p90": 1225010, + "parent": "peddle-go-manheim-salvage-api-calculator-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 811405, + "p95": 798625, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 753750, + "p50": 640250, + "p90": 782650, + "parent": "remkt-shadow-auction-net-salvage-calculator-service-development", + "child": "redis" + }, + { + "errorRate": 0.6369426751592357, + "p99": 21556925151.999966, + "p95": 151534019.99999952, + "callRate": 0.04397759103641457, + "callCount": 157, + "p75": 18487200, + "p50": 11975000, + "p90": 88409540, + "parent": "seller-offer-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 12768614, + "p95": 12304270, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 9982550, + "p50": 7080400, + "p90": 11723840, + "parent": "comms-email-sender-message-listener-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 210598583.99999988, + "p95": 169904119.99999994, + "callRate": 0.005042016806722689, + "callCount": 18, + "p75": 28334525, + "p50": 12781000, + "p90": 86226550.00000007, + "parent": "carrier-transport-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 1347846.0000000002, + "p95": 1287605, + "callRate": 0.05042016806722689, + "callCount": 180, + "p75": 915825, + "p50": 702950, + "p90": 1098260, + "parent": "uni-segment-event-integration-daemon-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 5272504.000000001, + "p95": 3522900, + "callRate": 4.086274509803921, + "callCount": 14588, + "p75": 2598150, + "p50": 2402150, + "p90": 3244920.000000001, + "parent": "carrier-message-listener-service", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 24420029.999999996, + "p95": 1983569.9999999956, + "callRate": 0.016246498599439777, + "callCount": 58, + "p75": 1152875, + "p50": 1099900, + "p90": 1170100, + "parent": "uni-tray-event-integration-daemon-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 5792233.999999999, + "p95": 5736770, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 5459450, + "p50": 5189100, + "p90": 5667440, + "parent": "identity-api-gateway-service", + "child": "buy-campaign-instant-bid-service" + }, + { + "errorRate": 0, + "p99": 13833649, + "p95": 13202645, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 12097950, + "p50": 8042800, + "p90": 12517800, + "parent": "cha-account-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 673992547.0000002, + "p95": 419128995, + "callRate": 0.00784313725490196, + "callCount": 28, + "p75": 59529525, + "p50": 28487600, + "p90": 189961200.00000024, + "parent": "peddle-go-merged-salvage-calculator-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 8810692.999999797, + "p95": 868634.9999999998, + "callRate": 0.16750700280112044, + "callCount": 598, + "p75": 673375, + "p50": 620600, + "p90": 723630, + "parent": "carrier-message-listener-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 8704722, + "p95": 8532810, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 7914950, + "p50": 7540000, + "p90": 8317920, + "parent": "finance-company-message-listener-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 1470919, + "p95": 1470595, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 1468975, + "p50": 1466950, + "p90": 1470190, + "parent": "carrier-transport-service-staging", + "child": "carrier-transport-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 8430875, + "p95": 8277975, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 7513475, + "p50": 6557850, + "p90": 8086850, + "parent": "uni-salesforce-event-integration-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 16230900, + "p95": 16230900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 16230900, + "p50": 16230900, + "p90": 16230900, + "parent": "seller-offer-service-staging", + "child": "comm-daemon-staging" + }, + { + "errorRate": 0, + "p99": 14192100, + "p95": 14192100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 14192100, + "p50": 14192100, + "p90": 14192100, + "parent": "carrier-transport-service-staging", + "child": "charity-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 66426226.99999978, + "p95": 4988104.999999997, + "callRate": 0.03081232492997199, + "callCount": 110, + "p75": 1252975, + "p50": 1175150, + "p90": 3904270.0000000005, + "parent": "carrier-transport-message-listener-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 2846180, + "p95": 2768900, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 2350575, + "p50": 1848100, + "p90": 2672300, + "parent": "peddle-go-auction-net-salvage-calculator-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 35795205.99999999, + "p95": 32342829.999999993, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 15080950, + "p50": 7593850, + "p90": 28027360.000000007, + "parent": "publisher-offer-service-development", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 208676000, + "p95": 208676000, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 208676000, + "p50": 208676000, + "p90": 208676000, + "parent": "identity-api-gateway-service-staging", + "child": "remkt-shadow-auction-net-salvage-calculator-service-staging" + }, + { + "errorRate": 0, + "p99": 16745082, + "p95": 16385410, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 14587050, + "p50": 12339100, + "p90": 15935820, + "parent": "peddle-go-manheim-wholecar-api-calculator-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 17678641, + "p95": 16798405, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 13336975, + "p50": 12524500, + "p90": 15698110, + "parent": "fin-accrual-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 2234358991.0000014, + "p95": 1135994954.9999983, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 12284125, + "p50": 9568700, + "p90": 12633760, + "parent": "identity-provider-message-listener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 1794200, + "p95": 1794200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 1794200, + "p50": 1794200, + "p90": 1794200, + "parent": "seller-offer-service", + "child": "auc-daemon" + }, + { + "errorRate": 0, + "p99": 4924800, + "p95": 4924800, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4924800, + "p50": 4924800, + "p90": 4924800, + "parent": "pdl-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 294195304, + "p95": 282378120, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 223292200, + "p50": 149434800, + "p90": 267606640, + "parent": "seller-instant-offer-service-staging", + "child": "buyer-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 116101335.99999999, + "p95": 80969879.99999996, + "callRate": 0.0025210084033613447, + "callCount": 9, + "p75": 13531700, + "p50": 5440000, + "p90": 37055560.00000002, + "parent": "remkt-shadow-peddle-calculator-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 17538079.99999997, + "p95": 4996014.999999998, + "callRate": 0.05938375350140056, + "callCount": 212, + "p75": 3494550, + "p50": 2665950, + "p90": 4023850, + "parent": "carrier-message-listener-service-staging", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 9066000, + "p95": 9066000, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 9066000, + "p50": 9066000, + "p90": 9066000, + "parent": "peddle-go-manheim-salvage-api-calculator-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 12869710, + "p95": 12846150, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 12728350, + "p50": 12581100, + "p90": 12816700, + "parent": "pdl-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 949449, + "p95": 813594.9999999998, + "callRate": 0.8773109243697479, + "callCount": 3132, + "p75": 607700, + "p50": 560100, + "p90": 681880, + "parent": "universal-salesforce-sync-message-listener-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 5049360, + "p95": 5011200, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 4820400, + "p50": 4581900, + "p90": 4963500, + "parent": "peddle-go-merged-salvage-calculator-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 691400.0000000001, + "p95": 624400, + "callRate": 0.0226890756302521, + "callCount": 81, + "p75": 528200, + "p50": 428200, + "p90": 595200, + "parent": "peddle-offer-calculation-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 14236848, + "p95": 12656239.999999998, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 4753200, + "p50": 4411600, + "p90": 10680480.000000002, + "parent": "publisher-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 16220136.000000002, + "p95": 14740679.999999996, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 12251200, + "p50": 8923500, + "p90": 13137520.000000002, + "parent": "charity-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 10224200, + "p95": 10224200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 10224200, + "p50": 10224200, + "p90": 10224200, + "parent": "finance-intacct-message-listener-service", + "child": "finance-company-message-listener-service" + }, + { + "errorRate": 0, + "p99": 2154669.090000002, + "p95": 1696581.7, + "callRate": 0.035854341736694675, + "callCount": 128, + "p75": 1379666.5, + "p50": 1164149, + "p90": 1559966.2, + "parent": "marketing-frontend-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 17170125, + "p95": 13564700, + "callRate": 0.42745098039215684, + "callCount": 1526, + "p75": 11151400, + "p50": 10285750, + "p90": 12441450, + "parent": "carrier-service", + "child": "carrier-message-listener-service" + }, + { + "errorRate": 0, + "p99": 33308780, + "p95": 30936700, + "callRate": 0.0058823529411764705, + "callCount": 21, + "p75": 27507200, + "p50": 23638400, + "p90": 30168200, + "parent": "comms-cyborg-service", + "child": "peddle-messaging-service" + }, + { + "errorRate": 0, + "p99": 815410, + "p95": 796249.9999999999, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 700450, + "p50": 580700, + "p90": 772300, + "parent": "identity-provider-message-listener-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 144317650.99999902, + "p95": 8963764.999999996, + "callRate": 0.01680672268907563, + "callCount": 60, + "p75": 4381450, + "p50": 4303000, + "p90": 4721980, + "parent": "identity-api-gateway-service-development", + "child": "seller-account-service-development" + }, + { + "errorRate": 0, + "p99": 16075740.000000002, + "p95": 15219100, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 9972300, + "p50": 3834250, + "p90": 14148300, + "parent": "peddle-go-manheim-salvage-api-calculator-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 14253700, + "p95": 14253700, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 14253700, + "p50": 14253700, + "p90": 14253700, + "parent": "remkt-shadow-merged-salvage-calculator-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 5372955370, + "p95": 5271442850, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 4763880250, + "p50": 4129427000, + "p90": 5144552200, + "parent": "uni-system-notification-platform-daemon", + "child": "uni-tray-event-integration-daemon" + }, + { + "errorRate": 0, + "p99": 1807819.999999999, + "p95": 556224.9999999972, + "callRate": 0.01680672268907563, + "callCount": 60, + "p75": 100, + "p50": 100, + "p90": 17190.000000000244, + "parent": "classic-seller-site-development", + "child": "universal-salesforce-classic-service-development" + }, + { + "errorRate": 0, + "p99": 4400898, + "p95": 4395690, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 4369650, + "p50": 4337100, + "p90": 4389180, + "parent": "carrier-transport-service", + "child": "finance-data-sync-message-listener-service" + }, + { + "errorRate": 0, + "p99": 16640770.000000002, + "p95": 14768250, + "callRate": 0.0030812324929971988, + "callCount": 11, + "p75": 12183800, + "p50": 8005000, + "p90": 12427600, + "parent": "peddle-go-iaa-calculator-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 5973711, + "p95": 5968155, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 5940375, + "p50": 5891500, + "p90": 5961210, + "parent": "auc-daemon-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 3625045, + "p95": 1414490, + "callRate": 5.464425770308123, + "callCount": 19508, + "p75": 1261600, + "p50": 1189150, + "p90": 1341880, + "parent": "buyer-bid-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 350313300, + "p95": 350313300, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 350313300, + "p50": 350313300, + "p90": 350313300, + "parent": "auc-lcu-daemon", + "child": "auc-service" + }, + { + "errorRate": 0, + "p99": 9277752, + "p95": 8731830, + "callRate": 0.04145658263305322, + "callCount": 148, + "p75": 6977200, + "p50": 6249850, + "p90": 8018200, + "parent": "uni-salesforce-resync-daemon", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 572348212.9999994, + "p95": 155930459.99999973, + "callRate": 0.014005602240896359, + "callCount": 50, + "p75": 83040350, + "p50": 5023850, + "p90": 91833130, + "parent": "identity-api-gateway-service-development", + "child": "publisher-service-development" + }, + { + "errorRate": 0, + "p99": 7655869.999999996, + "p95": 5333845, + "callRate": 2.2890756302521007, + "callCount": 8172, + "p75": 3532325, + "p50": 2877850, + "p90": 4728570, + "parent": "uni-url-shortener-service", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 1955376, + "p95": 1917680, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 1729200, + "p50": 1493600, + "p90": 1870560, + "parent": "universal-company-blacklist-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 19563846, + "p95": 19033230, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 16380150, + "p50": 12284750, + "p90": 18369960, + "parent": "carrier-transport-service", + "child": "uni-system-notification-platform-daemon" + }, + { + "errorRate": 0, + "p99": 13380125, + "p95": 13273024.999999998, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 12737525, + "p50": 12410150, + "p90": 13139150, + "parent": "valuations-sales-data-import-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 14799970, + "p95": 14347450, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12932225, + "p50": 8151700, + "p90": 13781800, + "parent": "universal-marketing-message-listener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 171639900, + "p95": 171639900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 171639900, + "p50": 171639900, + "p90": 171639900, + "parent": "buy-purchase-service", + "child": "buy-limit-calculation-daemon" + }, + { + "errorRate": 0, + "p99": 187214000, + "p95": 187214000, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 187214000, + "p50": 187214000, + "p90": 187214000, + "parent": "seller-offer-service", + "child": "buy-purchase-service" + }, + { + "errorRate": 0, + "p99": 2584868, + "p95": 2575540, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 2528900, + "p50": 2470600, + "p90": 2563880, + "parent": "peddle-go-auction-net-wholecar-calculator-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 31909472, + "p95": 31264160, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 28489600, + "p50": 22561500, + "p90": 30457520, + "parent": "identity-api-gateway-service", + "child": "publisher-site" + }, + { + "errorRate": 0, + "p99": 62430968.00000002, + "p95": 47554039.99999997, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 12016450, + "p50": 11665550, + "p90": 30375250.000000007, + "parent": "uni-llm-integration-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 5667500, + "p95": 5059739.999999998, + "callRate": 0.022408963585434174, + "callCount": 80, + "p75": 1111450, + "p50": 1059900, + "p90": 4775500.000000003, + "parent": "uni-salesforce-resync-daemon", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 880699.9999999988, + "p95": 685435, + "callRate": 0.07507002801120448, + "callCount": 268, + "p75": 576925, + "p50": 499600, + "p90": 641450, + "parent": "remkt-shadow-copart-calculator-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 272417313.9999993, + "p95": 6488034.999999992, + "callRate": 0.03473389355742297, + "callCount": 124, + "p75": 2128100, + "p50": 856850, + "p90": 4248620, + "parent": "buyer-message-listener-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 12452300, + "p95": 12452300, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 12452300, + "p50": 12452300, + "p90": 12452300, + "parent": "universal-location-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 5047351, + "p95": 5040755, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 5007775, + "p50": 4966550, + "p90": 5032510, + "parent": "fin-frost-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 12633560, + "p95": 12006199.999999998, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 8869400, + "p50": 4948400, + "p90": 11222000, + "parent": "finance-payable-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 4441300, + "p95": 4441300, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4441300, + "p50": 4441300, + "p90": 4441300, + "parent": "comms-action-link-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 16200944, + "p95": 15822319.999999998, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 13929200, + "p50": 12451200, + "p90": 15349040, + "parent": "peddle-offer-calculation-service-staging", + "child": "peddle-offer-calculation-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 14821742, + "p95": 14412310, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 12365150, + "p50": 9806200, + "p90": 13900520, + "parent": "universal-email-platform-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 17685122.000000004, + "p95": 15876809.999999996, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 12812900, + "p50": 8012300, + "p90": 13964480, + "parent": "finance-payable-message-listener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 8496700, + "p95": 8496700, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 8496700, + "p50": 8496700, + "p90": 8496700, + "parent": "identity-api-gateway-service-staging", + "child": "peddle-go-manheim-salvage-api-calculator-service-staging" + }, + { + "errorRate": 0, + "p99": 34708215.00000001, + "p95": 28252275, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 3389150, + "p50": 1420350, + "p90": 20182350, + "parent": "uni-photo-service-staging", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 74954471, + "p95": 43664104.9999998, + "callRate": 0.008403361344537815, + "callCount": 30, + "p75": 753150, + "p50": 625000, + "p90": 5416730, + "parent": "peddle-go-bid-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 28134828, + "p95": 27894960, + "callRate": 0.5005602240896359, + "callCount": 1787, + "p75": 24765000, + "p50": 20533000, + "p90": 27698000, + "parent": "comms-cyborg-service", + "child": "seller-offer-legacy-service" + }, + { + "errorRate": 0, + "p99": 4646700, + "p95": 4646700, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4646700, + "p50": 4646700, + "p90": 4646700, + "parent": "peddle-offer-calculation-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 20724363.999999996, + "p95": 16951419.999999993, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 6772600, + "p50": 6150900, + "p90": 12235239.999999998, + "parent": "seller-message-listener-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 10412200, + "p95": 10412200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 10412200, + "p50": 10412200, + "p90": 10412200, + "parent": "carrier-transport-service-staging", + "child": "universal-salesforce-sync-message-listener-service-staging" + }, + { + "errorRate": 7.142857142857142, + "p99": 31065538555, + "p95": 30743889175, + "callRate": 0.00392156862745098, + "callCount": 14, + "p75": 579863825, + "p50": 21541050, + "p90": 21797314210.000034, + "parent": "identity-api-gateway-service-development", + "child": "peddle-offer-calculation-service-development" + }, + { + "errorRate": 0, + "p99": 6074000, + "p95": 6074000, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 6074000, + "p50": 6074000, + "p90": 6074000, + "parent": "peddle-go-iaa-calculator-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0.9708737864077669, + "p99": 30536649112.000057, + "p95": 634620819.9999981, + "callRate": 0.0288515406162465, + "callCount": 103, + "p75": 79987150, + "p50": 40601600, + "p90": 244995899.99999994, + "parent": "identity-api-gateway-service-development", + "child": "seller-offer-service-development" + }, + { + "errorRate": 0, + "p99": 1088625, + "p95": 933504.9999999999, + "callRate": 2.011204481792717, + "callCount": 7180, + "p75": 877300, + "p50": 828800, + "p90": 906300, + "parent": "peddle-go-bid-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 6406187.999999994, + "p95": 1420239.9999999998, + "callRate": 0.861904761904762, + "callCount": 3077, + "p75": 1165900, + "p50": 1106400, + "p90": 1254480, + "parent": "seller-offer-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 100, + "p95": 100, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 100, + "p50": 100, + "p90": 100, + "parent": "identity-api-gateway-service-development", + "child": "buyer-legacy-site-development" + }, + { + "errorRate": 0, + "p99": 7627300, + "p95": 7627300, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 7627300, + "p50": 7627300, + "p90": 7627300, + "parent": "remkt-shadow-auction-net-salvage-calculator-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 1654688.0000000098, + "p95": 1444655, + "callRate": 0.028011204481792718, + "callCount": 100, + "p75": 1234925, + "p50": 1110350, + "p90": 1386460, + "parent": "uni-segment-event-integration-daemon", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 13717494, + "p95": 13648270, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 13302150, + "p50": 12869500, + "p90": 13561740, + "parent": "comms-messaging-message-listener-service", + "child": "uni-system-notification-platform-daemon" + }, + { + "errorRate": 0, + "p99": 201573798, + "p95": 197230190, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 175512150, + "p50": 148364600, + "p90": 191800680, + "parent": "identity-api-gateway-service-development", + "child": "remkt-shadow-iaa-calculator-service-development" + }, + { + "errorRate": 0, + "p99": 76683340, + "p95": 76040000, + "callRate": 0.017086834733893556, + "callCount": 61, + "p75": 62607900, + "p50": 61363000, + "p90": 67208000, + "parent": "buyer-message-listener-service-staging", + "child": "seller-offer-legacy-service-staging" + }, + { + "errorRate": 0, + "p99": 74355936, + "p95": 72566539.99999999, + "callRate": 0.1400560224089636, + "callCount": 500, + "p75": 68707025, + "p50": 65309700, + "p90": 71491660, + "parent": "seller-legacy-service-staging", + "child": "universal-salesforce-classic-service-staging" + }, + { + "errorRate": 0, + "p99": 7355400, + "p95": 7355400, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 7355400, + "p50": 7355400, + "p90": 7355400, + "parent": "carrier-transport-message-listener-service", + "child": "universal-salesforce-sync-message-listener-service" + }, + { + "errorRate": 0, + "p99": 189615513.99999997, + "p95": 171284770.00000003, + "callRate": 0.0056022408963585435, + "callCount": 20, + "p75": 61808375, + "p50": 49003950, + "p90": 114072700.00000009, + "parent": "seller-instant-offer-service", + "child": "buyer-message-listener-service" + }, + { + "errorRate": 0, + "p99": 28597266, + "p95": 27948330, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 25681075, + "p50": 24435350, + "p90": 27137160, + "parent": "seller-offer-assignment-service", + "child": "seller-legacy-service" + }, + { + "errorRate": 0, + "p99": 13120461.999999998, + "p95": 13007110, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 12672850, + "p50": 12478000, + "p90": 12865420, + "parent": "buy-limit-calculation-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 6102411, + "p95": 6101655, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 6097875, + "p50": 6093150, + "p90": 6100710, + "parent": "buyer-service", + "child": "seller-offer-service" + }, + { + "errorRate": 0, + "p99": 231749300, + "p95": 231749300, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 231749300, + "p50": 231749300, + "p90": 231749300, + "parent": "identity-provider-service", + "child": "seller-offer-assignment-service" + }, + { + "errorRate": 0, + "p99": 16708458.000000004, + "p95": 13798449.999999998, + "callRate": 0.006442577030812325, + "callCount": 23, + "p75": 12090300, + "p50": 11960300, + "p90": 13133140, + "parent": "remkt-shadow-merged-salvage-calculator-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 885000, + "p95": 885000, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 885000, + "p50": 885000, + "p90": 885000, + "parent": "buyer-service", + "child": "buy-campaign-instant-bid-daemon" + }, + { + "errorRate": 0, + "p99": 15345513, + "p95": 15049965, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 12192025, + "p50": 7928700, + "p90": 14646790, + "parent": "uni-feed-event-integration-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 23304664.999999873, + "p95": 4700250, + "callRate": 0.8168067226890756, + "callCount": 2916, + "p75": 1217975, + "p50": 1001800, + "p90": 2658200, + "parent": "identity-provider-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 13492200, + "p95": 13492200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 13492200, + "p50": 13492200, + "p90": 13492200, + "parent": "identity-api-gateway-service-staging", + "child": "car-user-company-connection-service-staging" + }, + { + "errorRate": 0, + "p99": 52930675.00000008, + "p95": 2559775, + "callRate": 0.2957983193277311, + "callCount": 1056, + "p75": 1551625, + "p50": 1457000, + "p90": 1675900, + "parent": "identity-provider-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 2157900, + "p95": 2157900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 2157900, + "p50": 2157900, + "p90": 2157900, + "parent": "universal-company-blacklist-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 15081147.999999844, + "p95": 4443339.999999994, + "callRate": 1.1198879551820728, + "callCount": 3998, + "p75": 2239150, + "p50": 1327950, + "p90": 2883710.0000000014, + "parent": "carrier-message-listener-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 15630477.999999987, + "p95": 5160399.999999999, + "callRate": 0.09635854341736695, + "callCount": 344, + "p75": 1197100, + "p50": 970450, + "p90": 2215880, + "parent": "auc-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 23064950, + "p95": 730250, + "callRate": 0.014285714285714285, + "callCount": 51, + "p75": 563900, + "p50": 484800, + "p90": 629700, + "parent": "carrier-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 8772754, + "p95": 8563770, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 7518850, + "p50": 6212700, + "p90": 8302540, + "parent": "identity-api-gateway-service-development", + "child": "peddle-go-manheim-wholecar-api-calculator-service-development" + }, + { + "errorRate": 0, + "p99": 11130438, + "p95": 10937389.999999998, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 9972150, + "p50": 8765600, + "p90": 10696080, + "parent": "carrier-transport-message-listener-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 14700055, + "p95": 14393875, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12318975, + "p50": 9144600, + "p90": 14011150, + "parent": "publisher-offer-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 33170825, + "p95": 33018925, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 30805625, + "p50": 28544750, + "p90": 32829050, + "parent": "charity-classic-service", + "child": "ped-no-sql-data-access-service" + }, + { + "errorRate": 0, + "p99": 32736800, + "p95": 32736800, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 32736800, + "p50": 32736800, + "p90": 32736800, + "parent": "carrier-site-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 8091681, + "p95": 7577985, + "callRate": 0.036414565826330535, + "callCount": 130, + "p75": 2899575, + "p50": 2038900, + "p90": 5101040, + "parent": "seller-offer-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 13399780, + "p95": 13376900, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 13262500, + "p50": 6182600, + "p90": 13348300, + "parent": "finance-receivable-message-listener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 679535601, + "p95": 227783444.99999937, + "callRate": 0.017366946778711485, + "callCount": 62, + "p75": 15504800, + "p50": 7197050, + "p90": 38150160, + "parent": "seller-offer-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 7222960, + "p95": 7163600, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 6920025, + "p50": 6846600, + "p90": 7089400, + "parent": "identity-api-gateway-service", + "child": "car-user-company-connection-service" + }, + { + "errorRate": 0, + "p99": 9312256, + "p95": 9190480, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 8581600, + "p50": 7820500, + "p90": 9038260, + "parent": "auc-counter-bid-daemon", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 15558622.999999998, + "p95": 14642314.999999996, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 10060775, + "p50": 6668450, + "p90": 13496930.000000002, + "parent": "finance-receivable-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 4634326, + "p95": 4627630, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 4594150, + "p50": 4552300, + "p90": 4619260, + "parent": "pub-account-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 52276481.00000002, + "p95": 20889249.999999996, + "callRate": 0.00784313725490196, + "callCount": 28, + "p75": 15570775, + "p50": 15147900, + "p90": 17167790, + "parent": "finance-intacct-message-listener-service", + "child": "finance-receivable-message-listener-service" + }, + { + "errorRate": 0, + "p99": 1536872.0000000016, + "p95": 1189345, + "callRate": 20.337254901960783, + "callCount": 72604, + "p75": 1008800, + "p50": 914300, + "p90": 1135780, + "parent": "universal-location-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 4551200, + "p95": 4551200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4551200, + "p50": 4551200, + "p90": 4551200, + "parent": "finance-data-sync-message-listener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 69635567.99999999, + "p95": 49465039.99999996, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 2497500, + "p50": 1543150, + "p90": 24251879.999999985, + "parent": "finance-company-message-listener-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 37931572, + "p95": 1046559.9999999965, + "callRate": 0.22380952380952382, + "callCount": 799, + "p75": 904400, + "p50": 778100, + "p90": 952940, + "parent": "carrier-message-listener-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 827161052, + "p95": 731841659.9999999, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 255244700, + "p50": 112518300, + "p90": 612692420, + "parent": "carrier-transport-service", + "child": "carrier-message-listener-service" + }, + { + "errorRate": 0, + "p99": 14354829.999999985, + "p95": 3996850.000000002, + "callRate": 1.4173669467787116, + "callCount": 5060, + "p75": 1728850, + "p50": 747000, + "p90": 2069580.0000000012, + "parent": "seller-offer-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 3188907616.9999976, + "p95": 1569383684.999999, + "callRate": 0.00392156862745098, + "callCount": 14, + "p75": 130656875, + "p50": 28419200, + "p90": 393154280.00000036, + "parent": "buyer-bid-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 5609900, + "p95": 5609900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 5609900, + "p50": 5609900, + "p90": 5609900, + "parent": "carrier-transport-message-listener-service", + "child": "finance-data-sync-message-listener-service" + }, + { + "errorRate": 0, + "p99": 1036646008, + "p95": 935517239.9999999, + "callRate": 0.004761904761904762, + "callCount": 17, + "p75": 142268300, + "p50": 27987400, + "p90": 566734480.0000002, + "parent": "publisher-offer-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 12761600, + "p95": 12761600, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 12761600, + "p50": 12761600, + "p90": 12761600, + "parent": "universal-salesforce-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 8935274, + "p95": 7873569.999999998, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 5395475, + "p50": 5070950, + "p90": 6546439.999999999, + "parent": "buyer-message-listener-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 13192390, + "p95": 13103949.999999998, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 12661750, + "p50": 8186950, + "p90": 12993400, + "parent": "uni-segment-event-integration-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 42656019.99999996, + "p95": 20703600, + "callRate": 0.017086834733893556, + "callCount": 61, + "p75": 3292500, + "p50": 1857200, + "p90": 8766200, + "parent": "remkt-shadow-auction-net-salvage-calculator-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 9894640.000000002, + "p95": 7416400, + "callRate": 0.0058823529411764705, + "callCount": 21, + "p75": 6956400, + "p50": 6605100, + "p90": 7116800, + "parent": "identity-api-gateway-service-staging", + "child": "buyer-service-staging" + }, + { + "errorRate": 0, + "p99": 27880485.999999944, + "p95": 18131664.999999974, + "callRate": 0.011764705882352941, + "callCount": 42, + "p75": 7901025, + "p50": 5255050, + "p90": 10636030, + "parent": "identity-api-gateway-service-staging", + "child": "universal-vehicle-service-staging" + }, + { + "errorRate": 0, + "p99": 59587515.999999985, + "p95": 42680779.99999996, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 3330625, + "p50": 2788350, + "p90": 21547359.99999999, + "parent": "uni-url-shortener-service-development", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 10024127, + "p95": 9923435, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 9419975, + "p50": 9201250, + "p90": 9797570, + "parent": "seller-offer-service", + "child": "uni-system-notification-platform-daemon" + }, + { + "errorRate": 0, + "p99": 23445840.000000004, + "p95": 22152800, + "callRate": 0.0058823529411764705, + "callCount": 21, + "p75": 1986400, + "p50": 1210900, + "p90": 2682000, + "parent": "auc-counter-bid-daemon", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 4216193.999999999, + "p95": 3890969.999999999, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 2264850, + "p50": 1109450, + "p90": 3484440.0000000005, + "parent": "remkt-shadow-manheim-salvage-api-calculator-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 29060727.000000097, + "p95": 1064845, + "callRate": 12.29327731092437, + "callCount": 43887, + "p75": 841600, + "p50": 629800, + "p90": 969800, + "parent": "peddle-go-valuations-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 14930093, + "p95": 14634065, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12355200, + "p50": 7785700, + "p90": 14264030, + "parent": "sel-offer-bid-adjustment-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 11004396, + "p95": 10750379.999999998, + "callRate": 0.005322128851540616, + "callCount": 19, + "p75": 8251100, + "p50": 6555000, + "p90": 10397180, + "parent": "identity-external-api-gateway-service-staging", + "child": "uni-salesforce-outbound-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 12566300, + "p95": 12566300, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 12566300, + "p50": 12566300, + "p90": 12566300, + "parent": "seller-instant-offer-service-staging", + "child": "universal-salesforce-sync-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 73281279.99999997, + "p95": 52431475, + "callRate": 0.010084033613445379, + "callCount": 36, + "p75": 8927725, + "p50": 8184000, + "p90": 24840350, + "parent": "universal-marketing-message-listener-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 6067963.999999999, + "p95": 5997020, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 5642300, + "p50": 3297600, + "p90": 5908340, + "parent": "comms-email-sender-message-listener-service", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 12627441, + "p95": 12618405, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 12573225, + "p50": 12516750, + "p90": 12607110, + "parent": "finance-payable-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 11475061.000000067, + "p95": 1294069.9999999998, + "callRate": 0.42128851540616247, + "callCount": 1504, + "p75": 1111825, + "p50": 1047350, + "p90": 1181170, + "parent": "seller-instant-offer-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 52502868, + "p95": 44577539.99999997, + "callRate": 0.005322128851540616, + "callCount": 19, + "p75": 30075000, + "p50": 16949200, + "p90": 43447360, + "parent": "peddler-site-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 5734200, + "p95": 5734200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 5734200, + "p50": 5734200, + "p90": 5734200, + "parent": "universal-account-sync-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 6365063, + "p95": 6324515, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 6121775, + "p50": 5968000, + "p90": 6273830, + "parent": "pub-daemon", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 13537920, + "p95": 13438799.999999998, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 12943200, + "p50": 8860050, + "p90": 13314900, + "parent": "remkt-shadow-manheim-salvage-api-calculator-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 3825827, + "p95": 3825135, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 3821675, + "p50": 3817350, + "p90": 3824270, + "parent": "peddle-go-auction-net-wholecar-calculator-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 9024828, + "p95": 8679420, + "callRate": 0.006442577030812325, + "callCount": 23, + "p75": 7302100, + "p50": 6468200, + "p90": 8126160, + "parent": "remkt-shadow-auction-net-salvage-calculator-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 19499280.000000004, + "p95": 16686800, + "callRate": 0.0030812324929971988, + "callCount": 11, + "p75": 12190950, + "p50": 3925400, + "p90": 13171200, + "parent": "peddle-go-message-listener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 67301829, + "p95": 67116745, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 66191325, + "p50": 65034550, + "p90": 66885390, + "parent": "peddler-site-staging", + "child": "peddle-helper-service-staging" + }, + { + "errorRate": 0, + "p99": 7412545, + "p95": 6537525, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 2708600, + "p50": 1052700, + "p90": 5443750, + "parent": "universal-location-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 4689183, + "p95": 4689115, + "callRate": 0.005042016806722689, + "callCount": 18, + "p75": 2157125, + "p50": 488700, + "p90": 4688540, + "parent": "remkt-shadow-peddle-calculator-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 71861409, + "p95": 12570584.999999823, + "callRate": 0.011204481792717087, + "callCount": 40, + "p75": 660650, + "p50": 499050, + "p90": 2533440.000000006, + "parent": "auc-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 8715359, + "p95": 8670395, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 8445575, + "p50": 8164550, + "p90": 8614190, + "parent": "comms-email-sender-message-listener-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 30353518, + "p95": 28808015, + "callRate": 0.010644257703081233, + "callCount": 38, + "p75": 25438825, + "p50": 21338750, + "p90": 28463990, + "parent": "seller-legacy-service", + "child": "universal-salesforce-classic-service" + }, + { + "errorRate": 0, + "p99": 1916446.0000000042, + "p95": 1291850, + "callRate": 3.169467787114846, + "callCount": 11315, + "p75": 993600, + "p50": 854400, + "p90": 1195990, + "parent": "identity-provider-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 8238400, + "p95": 8238400, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 8238400, + "p50": 8238400, + "p90": 8238400, + "parent": "universal-salesforce-sync-message-listener-service-staging", + "child": "uni-salesforce-resync-daemon-staging" + }, + { + "errorRate": 0, + "p99": 4895164, + "p95": 4881820, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 4815100, + "p50": 4773850, + "p90": 4865140, + "parent": "car-user-company-connection-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 616505, + "p95": 609725, + "callRate": 0.004481792717086834, + "callCount": 16, + "p75": 572850, + "p50": 559450, + "p90": 605950, + "parent": "remarketing-peddle-calculator-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 12825881, + "p95": 12789005, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 12596150, + "p50": 5286900, + "p90": 12742910, + "parent": "auc-counter-bid-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 68990140, + "p95": 68641700, + "callRate": 0.011484593837535015, + "callCount": 41, + "p75": 67102000, + "p50": 66650700, + "p90": 68491000, + "parent": "buyer-beta-legacy-service-staging", + "child": "peddle-helper-service-staging" + }, + { + "errorRate": 0, + "p99": 14871626, + "p95": 14855730, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 14776250, + "p50": 14676900, + "p90": 14835860, + "parent": "sel-offer-bid-adjustment-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 2832400, + "p95": 2588400, + "callRate": 0.028291316526610644, + "callCount": 101, + "p75": 2271900, + "p50": 1520000, + "p90": 2486700, + "parent": "comms-messaging-message-listener-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 1541549196, + "p95": 1275551979.9999998, + "callRate": 0.0025210084033613447, + "callCount": 9, + "p75": 300800100, + "p50": 165549000, + "p90": 943055460.0000002, + "parent": "uni-salesforce-outbound-listener-service", + "child": "seller-message-listener-service" + }, + { + "errorRate": 0, + "p99": 14376530, + "p95": 14301450, + "callRate": 0.0030812324929971988, + "callCount": 11, + "p75": 12490850, + "p50": 4025200, + "p90": 14207600, + "parent": "identity-verification-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 14680534, + "p95": 14310669.999999998, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 12461350, + "p50": 7803550, + "p90": 13848340, + "parent": "uni-salesforce-event-integration-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 266006277, + "p95": 263138185, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 248797725, + "p50": 230872150, + "p90": 259553070, + "parent": "identity-api-gateway-service-development", + "child": "remarketing-peddle-calculator-service-development" + }, + { + "errorRate": 0, + "p99": 35823220.00000002, + "p95": 16767040, + "callRate": 0.06694677871148459, + "callCount": 239, + "p75": 12768550, + "p50": 7965200, + "p90": 14164560, + "parent": "comms-cyborg-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 781020.0000000021, + "p95": 651400, + "callRate": 0.3532212885154062, + "callCount": 1261, + "p75": 514800, + "p50": 411100, + "p90": 625300, + "parent": "universal-vehicle-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 35773300, + "p95": 35773300, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 35773300, + "p50": 35773300, + "p90": 35773300, + "parent": "identity-api-gateway-service-staging", + "child": "publisher-site-staging" + }, + { + "errorRate": 0, + "p99": 72580955.9999997, + "p95": 19110879.999999963, + "callRate": 0.056862745098039215, + "callCount": 203, + "p75": 2238800, + "p50": 1098900, + "p90": 6873140, + "parent": "finance-receivable-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 14922280, + "p95": 14404600, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12581300, + "p50": 7878150, + "p90": 13757500, + "parent": "comms-call-center-integration-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 5007299684, + "p95": 5006924020, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 5005045700, + "p50": 5002697800, + "p90": 5006454440, + "parent": "uni-system-notification-platform-daemon-staging", + "child": "uni-tray-event-integration-daemon-staging" + }, + { + "errorRate": 0, + "p99": 79712500, + "p95": 79712500, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 79712500, + "p50": 79712500, + "p90": 79712500, + "parent": "peddle-database-deploy-app-staging", + "child": "peddle-helper-service-staging" + }, + { + "errorRate": 0, + "p99": 12039700.000000011, + "p95": 5562089.999999999, + "callRate": 4.221008403361345, + "callCount": 15069, + "p75": 3480025, + "p50": 2103150, + "p90": 4973150.000000001, + "parent": "peddle-go-valuations-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 1495264, + "p95": 1494320, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 1489600, + "p50": 1483700, + "p90": 1493140, + "parent": "identity-external-api-gateway-service", + "child": "uni-url-shortener-service" + }, + { + "errorRate": 0, + "p99": 74158334, + "p95": 69556660, + "callRate": 0.5182072829131653, + "callCount": 1850, + "p75": 57873250, + "p50": 2099850, + "p90": 64992490, + "parent": "seller-account-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 158733741.9999999, + "p95": 120395109.99999988, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 8534850, + "p50": 7482200, + "p90": 72471820.00000006, + "parent": "seller-instant-offer-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 5664164, + "p95": 5565620, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 5072900, + "p50": 4886400, + "p90": 5442440, + "parent": "peddle-offer-calculation-service-development", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 34754842.00000012, + "p95": 8119195, + "callRate": 19.830812324929973, + "callCount": 70796, + "p75": 1742050, + "p50": 923000, + "p90": 2502280.000000002, + "parent": "comms-messaging-message-listener-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 18464358.000000004, + "p95": 8618310, + "callRate": 0.8131652661064426, + "callCount": 2903, + "p75": 7538600, + "p50": 6513900, + "p90": 8201680, + "parent": "peddle-go-auction-net-salvage-calculator-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 6747472, + "p95": 6706960, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 6504400, + "p50": 6251200, + "p90": 6656320, + "parent": "uni-salesforce-outbound-listener-service-staging", + "child": "buyer-service-staging" + }, + { + "errorRate": 0, + "p99": 688638442.24, + "p95": 218856911.79999998, + "callRate": 3.171708683473389, + "callCount": 11323, + "p75": 87858010.25, + "p50": 7932473, + "p90": 175713718.5, + "parent": "marketing-frontend", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 147282252.0000006, + "p95": 14770264.999999985, + "callRate": 0.023529411764705882, + "callCount": 84, + "p75": 2326175, + "p50": 1038600, + "p90": 7937080.000000006, + "parent": "universal-vehicle-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 12841430, + "p95": 12446350, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 10814525, + "p50": 10338050, + "p90": 11952500, + "parent": "identity-api-gateway-service-staging", + "child": "cha-offer-service-staging" + }, + { + "errorRate": 0, + "p99": 17388439, + "p95": 16777795, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 13724575, + "p50": 8520700, + "p90": 16014490.000000002, + "parent": "fin-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 4741671.999999996, + "p95": 787440.0000000001, + "callRate": 0.19859943977591035, + "callCount": 709, + "p75": 661900, + "p50": 635100, + "p90": 694520, + "parent": "uni-url-shortener-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 36660783.99999995, + "p95": 12058609.999999998, + "callRate": 0.007563025210084034, + "callCount": 27, + "p75": 8841650, + "p50": 7508300, + "p90": 10520680, + "parent": "carrier-service-staging", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 53823652.99999985, + "p95": 10929919.999999996, + "callRate": 0.9394957983193277, + "callCount": 3354, + "p75": 6756050, + "p50": 6183500, + "p90": 8630880, + "parent": "auc-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 15319441.000000002, + "p95": 14586005, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 12178425, + "p50": 8922450, + "p90": 13713000.000000002, + "parent": "auc-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 1209310, + "p95": 1144149.9999999998, + "callRate": 0.005322128851540616, + "callCount": 19, + "p75": 1103100, + "p50": 1081700, + "p90": 1129820, + "parent": "comms-call-center-integration-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 15276450, + "p95": 14375499.999999998, + "callRate": 0.0061624649859943975, + "callCount": 22, + "p75": 11958650, + "p50": 9791950, + "p90": 12481470, + "parent": "uni-photo-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 64693000, + "p95": 64693000, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 64693000, + "p50": 64693000, + "p90": 64693000, + "parent": "uni-salesforce-resync-daemon-staging", + "child": "seller-offer-legacy-service-staging" + }, + { + "errorRate": 0, + "p99": 5831443.999999998, + "p95": 1257719.9999999998, + "callRate": 0.1257703081232493, + "callCount": 449, + "p75": 1068600, + "p50": 998200, + "p90": 1172580, + "parent": "buyer-bid-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 4491610, + "p95": 4489250, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 4477450, + "p50": 4462700, + "p90": 4486300, + "parent": "carrier-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 12512400, + "p95": 12512400, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 12512400, + "p50": 12512400, + "p90": 12512400, + "parent": "peddle-go-iaa-hybrid-calculator-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 32411205, + "p95": 29616825, + "callRate": 0.004481792717086834, + "callCount": 16, + "p75": 25075850, + "p50": 19292950, + "p90": 27249100, + "parent": "identity-api-gateway-service", + "child": "buyer-legacy-site" + }, + { + "errorRate": 0, + "p99": 2099295, + "p95": 2066075, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 1778850, + "p50": 1130850, + "p90": 2008470, + "parent": "pub-daemon", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 437224272.00000036, + "p95": 330357979.99999976, + "callRate": 0.4927170868347339, + "callCount": 1759, + "p75": 198390900, + "p50": 154815800, + "p90": 262989160, + "parent": "identity-api-gateway-service", + "child": "buyer-bid-service" + }, + { + "errorRate": 0, + "p99": 9674095.000000013, + "p95": 5031650, + "callRate": 5.129411764705883, + "callCount": 18312, + "p75": 3282900, + "p50": 1190100, + "p90": 4259040.000000001, + "parent": "carrier-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 2036900, + "p95": 2036900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 2036900, + "p50": 2036900, + "p90": 2036900, + "parent": "auc-service-staging", + "child": "auc-daemon-staging" + }, + { + "errorRate": 0, + "p99": 25058200, + "p95": 25058200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 25058200, + "p50": 25058200, + "p90": 25058200, + "parent": "finance-intacct-message-listener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 1140926.0000000002, + "p95": 954629.9999999998, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 759600, + "p50": 632500, + "p90": 763890, + "parent": "remkt-shadow-iaa-calculator-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 28948645.000000007, + "p95": 24592424.999999993, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 11964725, + "p50": 4041550, + "p90": 19363580.000000004, + "parent": "buy-limit-calculation-daemon", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 71915287.99999997, + "p95": 59837239.99999996, + "callRate": 0.0036414565826330533, + "callCount": 13, + "p75": 13211900, + "p50": 12633400, + "p90": 46004080.000000015, + "parent": "buy-purchase-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 850900, + "p95": 850900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 850900, + "p50": 850900, + "p90": 850900, + "parent": "buyer-service-staging", + "child": "buy-campaign-instant-bid-daemon-staging" + }, + { + "errorRate": 0, + "p99": 113877753.99999999, + "p95": 108360369.99999999, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 80773450, + "p50": 35945450, + "p90": 101463640, + "parent": "comm-proxy-service-staging", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 352275390, + "p95": 334997349.99999994, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 248607150, + "p50": 140619400, + "p90": 313399800, + "parent": "universal-marketing-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 11286800, + "p95": 11286800, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 11286800, + "p50": 11286800, + "p90": 11286800, + "parent": "remkt-shadow-peddle-calculator-service-staging", + "child": "peddle-go-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 20135325.000000004, + "p95": 17173024.999999996, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 12623550, + "p50": 8034600, + "p90": 14117640, + "parent": "universal-company-blacklist-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 10753660, + "p95": 10206739.999999996, + "callRate": 0.0070028011204481795, + "callCount": 25, + "p75": 8475500, + "p50": 7426100, + "p90": 8904860, + "parent": "peddle-go-iaa-calculator-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 8006800, + "p95": 7937600, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 7591600, + "p50": 7159100, + "p90": 7851100, + "parent": "comms-action-link-service", + "child": "uni-system-notification-platform-daemon" + }, + { + "errorRate": 0, + "p99": 51865516.00000014, + "p95": 10818639.999999998, + "callRate": 0.02492997198879552, + "callCount": 89, + "p75": 8019300, + "p50": 7582300, + "p90": 9263240.000000002, + "parent": "identity-api-gateway-service", + "child": "buyer-service" + }, + { + "errorRate": 0, + "p99": 15813845, + "p95": 14651400, + "callRate": 0.0061624649859943975, + "callCount": 22, + "p75": 12346900, + "p50": 9189850, + "p90": 14406280, + "parent": "buy-purchase-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 13375562, + "p95": 12805410, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 11981800, + "p50": 7897050, + "p90": 12201190, + "parent": "finance-intacct-message-listener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 17412286, + "p95": 10379999.999999998, + "callRate": 0.02464985994397759, + "callCount": 88, + "p75": 9062025, + "p50": 7531700, + "p90": 9635080, + "parent": "seller-offer-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 7356568, + "p95": 7353240, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 7336600, + "p50": 7315800, + "p90": 7349080, + "parent": "finance-intacct-message-listener-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 38679119.99999963, + "p95": 11890739.999999993, + "callRate": 0.07647058823529412, + "callCount": 273, + "p75": 7837500, + "p50": 2267300, + "p90": 8836160, + "parent": "peddle-go-bid-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 6991165, + "p95": 6867025, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 6246325, + "p50": 5470450, + "p90": 6711850, + "parent": "peddle-go-message-listener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 6072623.000000002, + "p95": 1948700, + "callRate": 3.4913165266106443, + "callCount": 12464, + "p75": 1518500, + "p50": 1257550, + "p90": 1720570.0000000002, + "parent": "auc-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 13818958, + "p95": 7477469.999999979, + "callRate": 0.015406162464985995, + "callCount": 55, + "p75": 1470550, + "p50": 1077300, + "p90": 4109180.0000000005, + "parent": "auc-lcu-daemon", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 78951589.9999994, + "p95": 21606800, + "callRate": 0.12212885154061624, + "callCount": 436, + "p75": 13804675, + "p50": 11612900, + "p90": 19170300, + "parent": "identity-api-gateway-service", + "child": "peddle-go-manheim-salvage-api-calculator-service" + }, + { + "errorRate": 0, + "p99": 12523350304, + "p95": 12092886320, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 9940566400, + "p50": 7250166500, + "p90": 11554806340, + "parent": "identity-api-gateway-service-development", + "child": "carrier-transport-service-development" + }, + { + "errorRate": 0, + "p99": 301548336.99999946, + "p95": 230899049.99999997, + "callRate": 0.17366946778711484, + "callCount": 620, + "p75": 130875825, + "p50": 101855200, + "p90": 184970670.00000003, + "parent": "identity-api-gateway-service", + "child": "peddle-go-valuations-service" + }, + { + "errorRate": 0, + "p99": 29354809.0000005, + "p95": 6698984.999999995, + "callRate": 0.7675070028011205, + "callCount": 2740, + "p75": 2290175, + "p50": 1468950, + "p90": 3983689.999999996, + "parent": "seller-offer-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 960347.9999999998, + "p95": 929680, + "callRate": 0.01484593837535014, + "callCount": 53, + "p75": 745600, + "p50": 691900, + "p90": 894760, + "parent": "peddle-go-manheim-salvage-api-calculator-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 14179650, + "p95": 13222649.999999998, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 11939450, + "p50": 5160700, + "p90": 12243320, + "parent": "carrier-transport-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 3005720, + "p95": 2937000, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 2593400, + "p50": 2163900, + "p90": 2851100, + "parent": "identity-api-gateway-service-staging", + "child": "finance-receivable-service-staging" + }, + { + "errorRate": 0, + "p99": 7608700, + "p95": 7608700, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 7608700, + "p50": 7608700, + "p90": 7608700, + "parent": "auc-counter-bid-service", + "child": "seller-offer-assignment-service" + }, + { + "errorRate": 0, + "p99": 94877500, + "p95": 94877500, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 94877500, + "p50": 94877500, + "p90": 94877500, + "parent": "uni-salesforce-outbound-listener-service", + "child": "buyer-service" + }, + { + "errorRate": 0, + "p99": 65817620.99999994, + "p95": 35448490, + "callRate": 0.8408963585434174, + "callCount": 3002, + "p75": 6380575, + "p50": 5965100, + "p90": 8154520.000000003, + "parent": "peddle-go-valuations-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 15345700, + "p95": 15345700, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 15345700, + "p50": 15345700, + "p90": 15345700, + "parent": "identity-api-gateway-service-development", + "child": "buyer-service-development" + }, + { + "errorRate": 0, + "p99": 20377000, + "p95": 20377000, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 20377000, + "p50": 20377000, + "p90": 20377000, + "parent": "identity-external-api-gateway-service", + "child": "universal-message-processor-service" + }, + { + "errorRate": 0, + "p99": 107192368.00000006, + "p95": 63803439.99999993, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 17324125, + "p50": 12474900, + "p90": 19285660, + "parent": "seller-instant-offer-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 94718899.99999997, + "p95": 17342084.999999996, + "callRate": 0.0067226890756302525, + "callCount": 24, + "p75": 13394225, + "p50": 12191300, + "p90": 15094040, + "parent": "peddle-go-merged-salvage-calculator-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 18882030, + "p95": 18265750, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 15746950, + "p50": 13054900, + "p90": 17495400, + "parent": "comms-cyborg-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 12680366, + "p95": 12641430, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 12446750, + "p50": 12203400, + "p90": 12592760, + "parent": "uni-vehicle-import-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 15392672, + "p95": 15160960, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 14002400, + "p50": 12554200, + "p90": 14871320, + "parent": "uni-feed-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 8901024, + "p95": 8841920, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 8546400, + "p50": 8177000, + "p90": 8768040, + "parent": "buy-limit-calculation-daemon", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 147717883.99999997, + "p95": 95645819.99999994, + "callRate": 0.004761904761904762, + "callCount": 17, + "p75": 7403000, + "p50": 6901900, + "p90": 38351900.00000003, + "parent": "identity-api-gateway-service-staging", + "child": "seller-instant-offer-service-staging" + }, + { + "errorRate": 0, + "p99": 21931652, + "p95": 16180679.999999996, + "callRate": 0.2876750700280112, + "callCount": 1027, + "p75": 14198900, + "p50": 8764400, + "p90": 15185660, + "parent": "identity-api-gateway-service", + "child": "universal-vehicle-service" + }, + { + "errorRate": 0, + "p99": 184279192, + "p95": 6883799.999999999, + "callRate": 0.14705882352941177, + "callCount": 525, + "p75": 5026900, + "p50": 4916500, + "p90": 5206380, + "parent": "identity-api-gateway-service", + "child": "seller-account-service" + }, + { + "errorRate": 0, + "p99": 1031200, + "p95": 804500, + "callRate": 2.03109243697479, + "callCount": 7251, + "p75": 621500, + "p50": 555700, + "p90": 725700, + "parent": "universal-vehicle-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 12502000, + "p95": 12502000, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 12502000, + "p50": 12502000, + "p90": 12502000, + "parent": "peddle-go-merged-salvage-calculator-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 572230614, + "p95": 550544270, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 442112550, + "p50": 306572900, + "p90": 523436340, + "parent": "identity-api-gateway-service", + "child": "comms-messaging-service" + }, + { + "errorRate": 0, + "p99": 689800, + "p95": 689800, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 689800, + "p50": 689800, + "p90": 689800, + "parent": "buyer-service", + "child": "buyer-message-listener-service" + }, + { + "errorRate": 0, + "p99": 16237609, + "p95": 15792060, + "callRate": 0.009523809523809525, + "callCount": 34, + "p75": 5837100, + "p50": 4624500, + "p90": 7914880, + "parent": "remarketing-peddle-calculator-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 4450404732.999999, + "p95": 3900318864.9999986, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 1149889525, + "p50": 3545200, + "p90": 3212711530.000001, + "parent": "getusedparts-site-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 28531604.999999985, + "p95": 15284784.999999998, + "callRate": 0.0061624649859943975, + "callCount": 22, + "p75": 12113950, + "p50": 9935950, + "p90": 14081740.000000004, + "parent": "fin-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 12288490, + "p95": 11991250, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 10505050, + "p50": 8647300, + "p90": 11619700, + "parent": "finance-receivable-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 1710357, + "p95": 1684985, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 1558125, + "p50": 1399550, + "p90": 1653270, + "parent": "buy-purchase-service-staging", + "child": "buy-limit-calculation-daemon-staging" + }, + { + "errorRate": 0, + "p99": 24205513.999999993, + "p95": 22138369.999999996, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 11802650, + "p50": 6923050, + "p90": 19554440.000000004, + "parent": "finance-payable-message-listener-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 602137509.9999999, + "p95": 346135050, + "callRate": 0.21932773109243697, + "callCount": 783, + "p75": 202374700, + "p50": 133822900, + "p90": 277835380, + "parent": "identity-api-gateway-service", + "child": "peddle-offer-calculation-service" + }, + { + "errorRate": 0, + "p99": 1024520457, + "p95": 999297085, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 873180225, + "p50": 715534150, + "p90": 967767870, + "parent": "carrier-transport-service", + "child": "carrier-transport-message-listener-service" + }, + { + "errorRate": 0, + "p99": 11212649.999999959, + "p95": 7141509.999999999, + "callRate": 0.16330532212885154, + "callCount": 583, + "p75": 4393600, + "p50": 3988900, + "p90": 5716460.0000000065, + "parent": "peddle-go-merged-salvage-calculator-service", + "child": "peddle-go-message-listener-service" + }, + { + "errorRate": 0, + "p99": 5637750, + "p95": 2742850, + "callRate": 1.1627450980392158, + "callCount": 4151, + "p75": 2220700, + "p50": 2146100, + "p90": 2323300, + "parent": "auc-daemon", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 17274656, + "p95": 17131280, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 16414400, + "p50": 15518300, + "p90": 16952060, + "parent": "pub-external-offer-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 1870486, + "p95": 1393889.9999999995, + "callRate": 0.008963585434173669, + "callCount": 32, + "p75": 915775, + "p50": 691250, + "p90": 1011570.0000000001, + "parent": "comm-daemon", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 26737575, + "p95": 23834675, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 12875150, + "p50": 12588100, + "p90": 20206050, + "parent": "uni-tray-event-integration-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 12979020, + "p95": 12901100, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 12524400, + "p50": 8566700, + "p90": 12803700, + "parent": "car-user-company-connection-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 3310627.999999989, + "p95": 2526879.999999999, + "callRate": 0.07647058823529412, + "callCount": 273, + "p75": 2339200, + "p50": 2249600, + "p90": 2447100, + "parent": "universal-location-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 1149600, + "p95": 1149600, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 1149600, + "p50": 1149600, + "p90": 1149600, + "parent": "comms-messaging-service", + "child": "buyer-message-listener-service" + }, + { + "errorRate": 0, + "p99": 30808899708, + "p95": 30770836940, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 30580523100, + "p50": 30342630800, + "p90": 30723258480, + "parent": "identity-api-gateway-service-development", + "child": "peddle-go-valuations-service-development" + }, + { + "errorRate": 0, + "p99": 1162724.0000000002, + "p95": 1024615, + "callRate": 0.008963585434173669, + "callCount": 32, + "p75": 861475, + "p50": 766100, + "p90": 956880.0000000001, + "parent": "comms-messaging-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 8306800, + "p95": 8306800, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 8281375, + "p50": 8205100, + "p90": 8306800, + "parent": "universal-salesforce-sync-message-listener-service", + "child": "uni-salesforce-resync-daemon" + }, + { + "errorRate": 0, + "p99": 6091100, + "p95": 6091100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 6091100, + "p50": 6091100, + "p90": 6091100, + "parent": "charity-site", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 4719006900, + "p95": 4719006900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4719006900, + "p50": 4719006900, + "p90": 4719006900, + "parent": "finance-receivable-message-listener-service-staging", + "child": "finance-intacct-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 68986734, + "p95": 66412469.99999999, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 53541150, + "p50": 37452000, + "p90": 63194640, + "parent": "peddler-site-staging", + "child": "buyer-beta-legacy-service-staging" + }, + { + "errorRate": 0, + "p99": 5309663.999999994, + "p95": 3507140, + "callRate": 0.045658263305322126, + "callCount": 163, + "p75": 2833200, + "p50": 2662100, + "p90": 3054460.0000000005, + "parent": "identity-api-gateway-service", + "child": "peddle-go-auction-net-wholecar-calculator-service" + }, + { + "errorRate": 0, + "p99": 70977841, + "p95": 38227054.99999996, + "callRate": 0.008963585434173669, + "callCount": 32, + "p75": 3237425, + "p50": 1757300, + "p90": 7593830.000000008, + "parent": "carrier-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 6681794, + "p95": 6680570, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 6674450, + "p50": 6156500, + "p90": 6679040, + "parent": "peddle-go-manheim-wholecar-api-calculator-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 80437044.00000024, + "p95": 17092259.999999985, + "callRate": 0.0196078431372549, + "callCount": 70, + "p75": 2337425, + "p50": 2050350, + "p90": 6384810, + "parent": "pub-daemon-staging", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 2625191.000000004, + "p95": 1471439.9999999995, + "callRate": 6.635294117647059, + "callCount": 23688, + "p75": 707025, + "p50": 540100, + "p90": 1059660.0000000007, + "parent": "peddle-go-auction-net-salvage-calculator-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 86605288, + "p95": 85049640, + "callRate": 0.004761904761904762, + "callCount": 17, + "p75": 5522800, + "p50": 927300, + "p90": 84415480, + "parent": "seller-instant-offer-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 267128959.99999988, + "p95": 108408800, + "callRate": 0.004481792717086834, + "callCount": 16, + "p75": 22823900, + "p50": 13844100, + "p90": 41042350, + "parent": "seller-message-listener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 13564688, + "p95": 13532240, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 13370000, + "p50": 13167200, + "p90": 13491680, + "parent": "auc-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 5106500, + "p95": 5106500, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 5106500, + "p50": 5106500, + "p90": 5106500, + "parent": "remkt-shadow-iaa-calculator-service-staging", + "child": "peddle-go-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 150336292.00000006, + "p95": 34340039.99999996, + "callRate": 0.03277310924369748, + "callCount": 117, + "p75": 14616500, + "p50": 12581100, + "p90": 26975420, + "parent": "seller-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 29231633.999999993, + "p95": 9353830, + "callRate": 1.553781512605042, + "callCount": 5547, + "p75": 8546450, + "p50": 6640900, + "p90": 9005400, + "parent": "comms-messaging-message-listener-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 8404948, + "p95": 8234740, + "callRate": 0.0025210084033613447, + "callCount": 9, + "p75": 7713100, + "p50": 6977100, + "p90": 8021980, + "parent": "seller-message-listener-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 9189800, + "p95": 9189800, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 9189800, + "p50": 9189800, + "p90": 9189800, + "parent": "peddle-go-manheim-wholecar-api-calculator-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 140136005.00000003, + "p95": 121574025, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 50166750, + "p50": 44745050, + "p90": 98371550, + "parent": "identity-api-gateway-service-staging", + "child": "peddle-go-copart-hybrid-calculator-service-staging" + }, + { + "errorRate": 0, + "p99": 12769562.999999998, + "p95": 11759414.999999998, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 6708675, + "p50": 4548100, + "p90": 10496730, + "parent": "universal-company-blacklist-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 941752, + "p95": 928360, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 861400, + "p50": 791600, + "p90": 911620, + "parent": "charity-message-listener-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 17068568, + "p95": 16654440, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 14583800, + "p50": 11995500, + "p90": 16136780, + "parent": "buyer-message-listener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 1670600, + "p95": 1670600, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 1670600, + "p50": 1670600, + "p90": 1670600, + "parent": "buyer-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 8695459, + "p95": 7751805, + "callRate": 0.0896358543417367, + "callCount": 320, + "p75": 1715375, + "p50": 1253900, + "p90": 2604220.0000000005, + "parent": "universal-vehicle-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 20695518.99999994, + "p95": 9064090, + "callRate": 0.8313725490196079, + "callCount": 2968, + "p75": 7724650, + "p50": 6713700, + "p90": 8492160.000000002, + "parent": "peddle-go-copart-calculator-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 1254811, + "p95": 844339.9999999997, + "callRate": 0.09187675070028012, + "callCount": 328, + "p75": 663350, + "p50": 549050, + "p90": 778930, + "parent": "remkt-shadow-peddle-calculator-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 104887720.99999997, + "p95": 81171804.99999996, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 14073650, + "p50": 1875650, + "p90": 51526909.999999985, + "parent": "seller-message-listener-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 12765360, + "p95": 12718800, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 12449775, + "p50": 8445750, + "p90": 12660600, + "parent": "cha-user-company-connection-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 1411253.0000000002, + "p95": 1143490, + "callRate": 21.0624649859944, + "callCount": 75193, + "p75": 928700, + "p50": 840850, + "p90": 1033130.0000000003, + "parent": "universal-vehicle-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 4441300, + "p95": 4441300, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4441300, + "p50": 4441300, + "p90": 4441300, + "parent": "finance-accrual-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 25149181, + "p95": 24797905, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 23041525, + "p50": 20846050, + "p90": 24358810, + "parent": "identity-api-gateway-service-development", + "child": "peddle-go-copart-calculator-service-development" + }, + { + "errorRate": 0, + "p99": 397618504, + "p95": 356270919.99999994, + "callRate": 0.004761904761904762, + "callCount": 17, + "p75": 110628900, + "p50": 70771800, + "p90": 317259520, + "parent": "identity-provider-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 39819815.00000001, + "p95": 34578675, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 14889000, + "p50": 9533800, + "p90": 28027250, + "parent": "peddle-go-auction-net-salvage-calculator-service-staging", + "child": "peddle-go-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 104335375.99999994, + "p95": 10419879.999999994, + "callRate": 0.1, + "callCount": 357, + "p75": 2354300, + "p50": 1792700, + "p90": 6683480.000000001, + "parent": "seller-instant-offer-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 209827800, + "p95": 202584200, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 166366200, + "p50": 121093700, + "p90": 193529700, + "parent": "identity-api-gateway-service-staging", + "child": "finance-payable-service-staging" + }, + { + "errorRate": 0, + "p99": 35666272, + "p95": 35491360, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 34616800, + "p50": 22636700, + "p90": 35272720, + "parent": "carrier-service-development", + "child": "carrier-message-listener-service-development" + }, + { + "errorRate": 0, + "p99": 100, + "p95": 100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 100, + "p50": 100, + "p90": 100, + "parent": "publisher-legacy-service-development", + "child": "universal-salesforce-classic-service-development" + }, + { + "errorRate": 0, + "p99": 77063706, + "p95": 71731330, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 45069450, + "p50": 11742100, + "p90": 65065860, + "parent": "seller-frontend-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 31301394.000000007, + "p95": 10422874.999999998, + "callRate": 0.3165266106442577, + "callCount": 1130, + "p75": 6467900, + "p50": 5617300, + "p90": 7971340, + "parent": "carrier-message-listener-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 15072935, + "p95": 14493875, + "callRate": 0.004481792717086834, + "callCount": 16, + "p75": 12425725, + "p50": 8125650, + "p90": 14226400, + "parent": "comms-action-link-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 35866093.00000001, + "p95": 26584464.99999997, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12156500, + "p50": 7936600, + "p90": 14982429.99999999, + "parent": "peddle-go-copart-hybrid-calculator-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 92236743.99999999, + "p95": 87151719.99999999, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 62264600, + "p50": 27035000, + "p90": 80795440, + "parent": "carrier-transport-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 5127700, + "p95": 5127700, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 5127700, + "p50": 5127700, + "p90": 5127700, + "parent": "finance-data-sync-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 19554033.000000004, + "p95": 16675364.99999999, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12159125, + "p50": 8016050, + "p90": 13077029.999999996, + "parent": "identity-admin-site-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 516270604.0000007, + "p95": 294221019.9999999, + "callRate": 0.08487394957983194, + "callCount": 303, + "p75": 127928750, + "p50": 18626000, + "p90": 237418460.00000003, + "parent": "seller-instant-offer-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 8349528, + "p95": 8332440, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 8247000, + "p50": 8140200, + "p90": 8311080, + "parent": "auc-counter-bid-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 31828050, + "p95": 24309449.999999978, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12362200, + "p50": 8238800, + "p90": 14911199.999999993, + "parent": "cha-user-company-connection-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 2422251, + "p95": 2404455, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 2315475, + "p50": 2204250, + "p90": 2382210, + "parent": "comms-action-link-service", + "child": "carrier-transport-message-listener-service" + }, + { + "errorRate": 0, + "p99": 421834605.9999992, + "p95": 204390934.9999994, + "callRate": 0.24761904761904763, + "callCount": 884, + "p75": 27749475, + "p50": 12948850, + "p90": 58655900, + "parent": "seller-frontend", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 45169610.00000001, + "p95": 38620050, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 12871750, + "p50": 9110350, + "p90": 30433100, + "parent": "finance-payable-message-listener-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 79015031, + "p95": 75291204.99999994, + "callRate": 0.0061624649859943975, + "callCount": 22, + "p75": 989375, + "p50": 817350, + "p90": 5118740, + "parent": "pub-external-offer-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 1073385, + "p95": 1066925, + "callRate": 0.005042016806722689, + "callCount": 18, + "p75": 922650, + "p50": 883350, + "p90": 1029940, + "parent": "universal-salesforce-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 11308142, + "p95": 11140310, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 10228250, + "p50": 9775600, + "p90": 10930520, + "parent": "carrier-service-staging", + "child": "carrier-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 1639412.9999999993, + "p95": 1366664.9999999995, + "callRate": 0.005042016806722689, + "callCount": 18, + "p75": 1113350, + "p50": 914750, + "p90": 1277100, + "parent": "auc-lcu-daemon-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 247421313.99999976, + "p95": 46750549.999999985, + "callRate": 0.041176470588235294, + "callCount": 147, + "p75": 2297650, + "p50": 1767700, + "p90": 7826060.000000002, + "parent": "carrier-transport-message-listener-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 15277050, + "p95": 14411650, + "callRate": 0.0030812324929971988, + "callCount": 11, + "p75": 12276300, + "p50": 3968200, + "p90": 13329900, + "parent": "carrier-message-listener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 14580000, + "p95": 14580000, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 14580000, + "p50": 14580000, + "p90": 14580000, + "parent": "remarketing-peddle-calculator-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 14611867, + "p95": 14296135, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 12717475, + "p50": 10744150, + "p90": 13901470, + "parent": "remkt-shadow-iaa-calculator-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 51747892.00000012, + "p95": 3632599.9999999925, + "callRate": 0.014565826330532213, + "callCount": 52, + "p75": 2343800, + "p50": 1781100, + "p90": 2721920, + "parent": "charity-service", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 1212848, + "p95": 1189440, + "callRate": 0.0056022408963585435, + "callCount": 20, + "p75": 872450, + "p50": 794150, + "p90": 1129220, + "parent": "auc-counter-bid-daemon", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 13822876.999999998, + "p95": 12684784.999999996, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 6994325, + "p50": 4581500, + "p90": 11262170, + "parent": "valuations-sales-data-import-message-listener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 1562000.0000000028, + "p95": 1127925, + "callRate": 0.8392156862745098, + "callCount": 2996, + "p75": 1046125, + "p50": 1004800, + "p90": 1088300, + "parent": "auc-daemon", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 15294159, + "p95": 14857195, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 12672375, + "p50": 9941350, + "p90": 14310990, + "parent": "buy-limit-calculation-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 723728, + "p95": 717040, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 683600, + "p50": 641800, + "p90": 708680, + "parent": "peddle-go-manheim-salvage-api-calculator-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 196905606.00000006, + "p95": 124697049.99999979, + "callRate": 0.009523809523809525, + "callCount": 34, + "p75": 2855400, + "p50": 2662650, + "p90": 50115359.99999996, + "parent": "identity-api-gateway-service-development", + "child": "universal-location-service-development" + }, + { + "errorRate": 0, + "p99": 13330201.999999996, + "p95": 10079290, + "callRate": 1.546778711484594, + "callCount": 5522, + "p75": 9019825, + "p50": 8011950, + "p90": 9705370, + "parent": "uni-system-notification-platform-daemon-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 1496300, + "p95": 1496300, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 1496300, + "p50": 1496300, + "p90": 1496300, + "parent": "universal-location-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 21445978.000000004, + "p95": 17688289.999999993, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 12155025, + "p50": 8154750, + "p90": 13700940.000000002, + "parent": "comm-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 16963969.999999996, + "p95": 15709849.999999996, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 12148775, + "p50": 5595200, + "p90": 14142200, + "parent": "uni-feed-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 10720256.000000004, + "p95": 2292325, + "callRate": 4.050980392156863, + "callCount": 14462, + "p75": 1975600, + "p50": 1813600, + "p90": 2163100, + "parent": "peddle-go-bid-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 30192758.000000127, + "p95": 9868239.999999998, + "callRate": 0.01764705882352941, + "callCount": 63, + "p75": 7488850, + "p50": 7105700, + "p90": 9227240, + "parent": "auc-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 144817439.99999878, + "p95": 2269480.0000000033, + "callRate": 0.04285714285714286, + "callCount": 153, + "p75": 1220800, + "p50": 971200, + "p90": 1658440.0000000002, + "parent": "carrier-transport-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 2798844, + "p95": 2783420, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 2706300, + "p50": 2609900, + "p90": 2764140, + "parent": "peddle-go-copart-calculator-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 9400058, + "p95": 8765089.999999998, + "callRate": 0.005322128851540616, + "callCount": 19, + "p75": 8291650, + "p50": 7317300, + "p90": 8627060, + "parent": "remarketing-peddle-calculator-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 1668170, + "p95": 1103355.0000000014, + "callRate": 0.03865546218487395, + "callCount": 138, + "p75": 868200, + "p50": 798050, + "p90": 1032010, + "parent": "uni-salesforce-outbound-listener-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 5456771, + "p95": 3222494.999999976, + "callRate": 0.02857142857142857, + "callCount": 102, + "p75": 966750, + "p50": 674750, + "p90": 1038510, + "parent": "identity-external-api-gateway-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 40113600, + "p95": 40113600, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 40113600, + "p50": 40113600, + "p90": 40113600, + "parent": "identity-api-gateway-service-staging", + "child": "charity-site-staging" + }, + { + "errorRate": 0, + "p99": 64155235, + "p95": 1463249.9999999993, + "callRate": 0.0700280112044818, + "callCount": 250, + "p75": 1147375, + "p50": 1072250, + "p90": 1206190, + "parent": "publisher-offer-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 8722066, + "p95": 8583930, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 7893250, + "p50": 7029900, + "p90": 8411260, + "parent": "finance-receivable-message-listener-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 14071330, + "p95": 13880250, + "callRate": 0.005042016806722689, + "callCount": 18, + "p75": 12049200, + "p50": 4396250, + "p90": 12979130, + "parent": "auc-counter-bid-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 38200800, + "p95": 38200800, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 38200800, + "p50": 38200800, + "p90": 38200800, + "parent": "publisher-site", + "child": "publisher-legacy-service" + }, + { + "errorRate": 0, + "p99": 51103415.99999976, + "p95": 10918079.999999993, + "callRate": 0.8361344537815126, + "callCount": 2985, + "p75": 8453500, + "p50": 7330300, + "p90": 9132880, + "parent": "peddle-go-merged-salvage-calculator-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 26257292.999999996, + "p95": 22320464.999999993, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 12894525, + "p50": 12716100, + "p90": 17399429.999999996, + "parent": "auc-lcu-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 4041800, + "p95": 4041800, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4041800, + "p50": 4041800, + "p90": 4041800, + "parent": "peddle-go-iaa-hybrid-calculator-service-staging", + "child": "peddle-go-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 40019136, + "p95": 38618879.99999999, + "callRate": 0.0036414565826330533, + "callCount": 13, + "p75": 22178500, + "p50": 15834300, + "p90": 36747180, + "parent": "identity-api-gateway-service", + "child": "buyer-site" + }, + { + "errorRate": 0, + "p99": 2624860.000000005, + "p95": 1137750, + "callRate": 0.16554621848739495, + "callCount": 591, + "p75": 1027650, + "p50": 958000, + "p90": 1072700, + "parent": "buyer-service-staging", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 141699692, + "p95": 59413489.99999979, + "callRate": 0.9644257703081233, + "callCount": 3443, + "p75": 30133850, + "p50": 22382000, + "p90": 42279620.000000015, + "parent": "peddle-go-valuations-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 23609731, + "p95": 22664255, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 15905125, + "p50": 12950550, + "p90": 21482410, + "parent": "universal-marketing-message-listener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 15854228, + "p95": 15287939.999999998, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 12456500, + "p50": 8917200, + "p90": 14580080, + "parent": "universal-location-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 13913728.000000004, + "p95": 10745419.999999998, + "callRate": 0.006442577030812325, + "callCount": 23, + "p75": 9153850, + "p50": 8703100, + "p90": 9608140, + "parent": "seller-instant-offer-service", + "child": "universal-salesforce-sync-message-listener-service" + }, + { + "errorRate": 0, + "p99": 1269874, + "p95": 1253770, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 987150, + "p50": 746600, + "p90": 1233640, + "parent": "comm-proxy-service", + "child": "redis" + }, + { + "errorRate": 100, + "p99": 30005665610, + "p95": 30005576450, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 30005130650, + "p50": 30004573400, + "p90": 30005465000, + "parent": "peddle-go-message-listener-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 8657200, + "p95": 8657200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 8657200, + "p50": 8657200, + "p90": 8657200, + "parent": "comms-messaging-service-staging", + "child": "uni-system-notification-platform-daemon-staging" + }, + { + "errorRate": 0, + "p99": 9150160.000000285, + "p95": 1120239.999999999, + "callRate": 0.23221288515406163, + "callCount": 829, + "p75": 921400, + "p50": 774900, + "p90": 1051880, + "parent": "peddle-offer-calculation-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 17397289, + "p95": 16827645, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 13979425, + "p50": 10419150, + "p90": 16115590, + "parent": "remkt-shadow-manheim-salvage-api-calculator-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 84661140, + "p95": 81896900, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 68075700, + "p50": 50799200, + "p90": 78441600, + "parent": "identity-api-gateway-service-development", + "child": "remkt-shadow-manheim-salvage-api-calculator-service-development" + }, + { + "errorRate": 0, + "p99": 35444700, + "p95": 35444700, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 35444700, + "p50": 35444700, + "p90": 35444700, + "parent": "seller-offer-assignment-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 13900290, + "p95": 13442250, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 12161375, + "p50": 10159600, + "p90": 12900500, + "parent": "pub-external-offer-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 1081295, + "p95": 1080875, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 1069525, + "p50": 1026800, + "p90": 1080350, + "parent": "buy-purchase-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 796814879.0000001, + "p95": 436389319.9999995, + "callRate": 0.00784313725490196, + "callCount": 28, + "p75": 48422275, + "p50": 27696150, + "p90": 196794130, + "parent": "peddle-go-iaa-hybrid-calculator-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 12887305, + "p95": 12548525, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 10854625, + "p50": 8737250, + "p90": 12125050, + "parent": "identity-admin-site-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 17074283, + "p95": 15906214.999999998, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 12318050, + "p50": 8084800, + "p90": 14480420.000000002, + "parent": "remarketing-peddle-calculator-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 8314146.000000003, + "p95": 3767855, + "callRate": 16.997759103641457, + "callCount": 60682, + "p75": 2240475, + "p50": 1897550, + "p90": 2832220.000000001, + "parent": "peddle-go-message-listener-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 6394655, + "p95": 6373675, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 6268775, + "p50": 6137650, + "p90": 6347450, + "parent": "identity-external-api-gateway-service", + "child": "comms-messaging-service" + }, + { + "errorRate": 0, + "p99": 351947104, + "p95": 338208320, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 269514400, + "p50": 183647000, + "p90": 321034840, + "parent": "identity-api-gateway-service", + "child": "finance-accrual-service" + }, + { + "errorRate": 0, + "p99": 11165504, + "p95": 10725979.999999996, + "callRate": 0.0070028011204481795, + "callCount": 25, + "p75": 8346500, + "p50": 7127300, + "p90": 9782740, + "parent": "peddle-go-copart-calculator-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 21396292, + "p95": 21068660, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 19430500, + "p50": 17958100, + "p90": 20659120, + "parent": "seller-offer-service", + "child": "comm-daemon" + }, + { + "errorRate": 0, + "p99": 1931300, + "p95": 1931300, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 1931300, + "p50": 1931300, + "p90": 1931300, + "parent": "uni-salesforce-outbound-listener-service", + "child": "car-user-company-connection-service" + }, + { + "errorRate": 0, + "p99": 72101931, + "p95": 70289875, + "callRate": 0.0061624649859943975, + "callCount": 22, + "p75": 67388900, + "p50": 66992900, + "p90": 68335250, + "parent": "comms-cyborg-service-staging", + "child": "universal-environment-settings-service-staging" + }, + { + "errorRate": 0, + "p99": 296760960.00000167, + "p95": 57441359.99999997, + "callRate": 0.03725490196078431, + "callCount": 133, + "p75": 4970500, + "p50": 2813300, + "p90": 13464819.999999989, + "parent": "peddle-go-valuations-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 5644214, + "p95": 5447869.999999999, + "callRate": 0.005322128851540616, + "callCount": 19, + "p75": 3596550, + "p50": 2707600, + "p90": 4948199.999999999, + "parent": "peddle-go-iaa-calculator-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 135048275.99999997, + "p95": 53191509.999999955, + "callRate": 0.130812324929972, + "callCount": 467, + "p75": 27970400, + "p50": 22860200, + "p90": 36997500.00000001, + "parent": "identity-api-gateway-service", + "child": "peddle-go-auction-net-salvage-calculator-service" + }, + { + "errorRate": 0, + "p99": 7198171, + "p95": 7072854.999999999, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 6446275, + "p50": 5948050, + "p90": 6916210, + "parent": "universal-email-platform-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 790613866, + "p95": 741620129.9999999, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 496651450, + "p50": 190440600, + "p90": 680377960, + "parent": "identity-api-gateway-service-staging", + "child": "carrier-transport-service-staging" + }, + { + "errorRate": 0, + "p99": 514450700, + "p95": 514450700, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 514450700, + "p50": 514450700, + "p90": 514450700, + "parent": "identity-api-gateway-service-development", + "child": "universal-company-blacklist-service-development" + }, + { + "errorRate": 0, + "p99": 203108694.99999994, + "p95": 179774274.99999994, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 63102175, + "p50": 13759400, + "p90": 150606250.00000003, + "parent": "identity-api-gateway-service-staging", + "child": "charity-service-staging" + }, + { + "errorRate": 0, + "p99": 11832600, + "p95": 11832600, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 11832600, + "p50": 11832600, + "p90": 11832600, + "parent": "seller-message-listener-service-staging", + "child": "universal-salesforce-sync-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 25385962.999999996, + "p95": 21651014.999999993, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 12871775, + "p50": 12388900, + "p90": 16982329.999999996, + "parent": "cha-external-offer-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 663184955.000001, + "p95": 16569534.999999998, + "callRate": 0.04873949579831933, + "callCount": 174, + "p75": 14626100, + "p50": 723800, + "p90": 15933400, + "parent": "comms-messaging-message-listener-service-staging", + "child": "buyer-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 14864200, + "p95": 14864200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 14864200, + "p50": 14864200, + "p90": 14864200, + "parent": "marketing-frontend-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 10159415.999999996, + "p95": 8244099.999999992, + "callRate": 0.0070028011204481795, + "callCount": 25, + "p75": 5847500, + "p50": 5720400, + "p90": 5963780, + "parent": "peddle-go-valuations-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 24346674.999999996, + "p95": 17190175, + "callRate": 0.004481792717086834, + "callCount": 16, + "p75": 12433325, + "p50": 4247600, + "p90": 13959650, + "parent": "auc-lcu-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 2463140, + "p95": 2453700, + "callRate": 0.0025210084033613447, + "callCount": 9, + "p75": 2315000, + "p50": 2285000, + "p90": 2441900, + "parent": "peddle-go-bid-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 16495730.000000004, + "p95": 14034489.999999998, + "callRate": 0.006442577030812325, + "callCount": 23, + "p75": 12155950, + "p50": 11738800, + "p90": 13192440, + "parent": "remkt-shadow-copart-calculator-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 33933762, + "p95": 33797610, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 30168150, + "p50": 25420200, + "p90": 33627420, + "parent": "buyer-beta-legacy-service", + "child": "seller-offer-assignment-service" + }, + { + "errorRate": 0, + "p99": 12901284, + "p95": 12811220, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 12360900, + "p50": 4749200, + "p90": 12698640, + "parent": "uni-system-notification-platform-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 4790239.999999999, + "p95": 2564550, + "callRate": 1.7187675070028012, + "callCount": 6136, + "p75": 1582300, + "p50": 1469750, + "p90": 1723350, + "parent": "peddle-go-auction-net-salvage-calculator-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 13889815.999999998, + "p95": 12759079.999999996, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 7105400, + "p50": 4571950, + "p90": 11345660, + "parent": "carrier-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 25255541.999999914, + "p95": 8264119.999999998, + "callRate": 0.00980392156862745, + "callCount": 35, + "p75": 6632650, + "p50": 6240500, + "p90": 7855020, + "parent": "peddle-offer-calculation-message-listener-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 15105373, + "p95": 14072064.999999996, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12154400, + "p50": 7897350, + "p90": 12780429.999999998, + "parent": "uni-aws-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 14122892, + "p95": 13362859.999999998, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12022175, + "p50": 7808500, + "p90": 12412819.999999998, + "parent": "uni-webhook-sender-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 422143574, + "p95": 415333870, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 381285350, + "p50": 338724700, + "p90": 406821740, + "parent": "buyer-service", + "child": "finance-company-message-listener-service" + }, + { + "errorRate": 0, + "p99": 548982875, + "p95": 530314774.99999994, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 436974275, + "p50": 346042500, + "p90": 506979650.00000006, + "parent": "identity-api-gateway-service-staging", + "child": "buyer-bid-service-staging" + }, + { + "errorRate": 0, + "p99": 18339885.999999996, + "p95": 16250630, + "callRate": 0.00392156862745098, + "callCount": 14, + "p75": 12524100, + "p50": 9078900, + "p90": 14669950, + "parent": "auc-counter-bid-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 1460298288, + "p95": 1241657839.9999998, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 148455600, + "p50": 143729000, + "p90": 968357280.0000001, + "parent": "charity-site", + "child": "charity-classic-service" + }, + { + "errorRate": 0, + "p99": 7067008, + "p95": 6982240, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 6687950, + "p50": 6416200, + "p90": 6876280, + "parent": "auc-lcu-daemon", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 23248454, + "p95": 22395069.999999996, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 18128150, + "p50": 12794500, + "p90": 21328340, + "parent": "uni-vehicle-readonly-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 1961450, + "p95": 1941650, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 1842650, + "p50": 1772400, + "p90": 1916900, + "parent": "universal-location-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 80659601, + "p95": 77465670, + "callRate": 0.0067226890756302525, + "callCount": 24, + "p75": 70380400, + "p50": 67765650, + "p90": 75651610, + "parent": "comms-cyborg-service-staging", + "child": "seller-offer-legacy-service-staging" + }, + { + "errorRate": 0, + "p99": 1235300, + "p95": 1235300, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 1235300, + "p50": 1235300, + "p90": 1235300, + "parent": "identity-external-api-gateway-service-development", + "child": "uni-url-shortener-service-development" + }, + { + "errorRate": 0, + "p99": 12872376, + "p95": 12525080, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 10788600, + "p50": 8618000, + "p90": 12090960, + "parent": "comms-call-center-integration-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 108605191.99999999, + "p95": 95872359.99999997, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 21354200, + "p50": 5152950, + "p90": 79956320, + "parent": "identity-api-gateway-service-development", + "child": "uni-url-shortener-service-development" + }, + { + "errorRate": 0, + "p99": 54883451.00000001, + "p95": 39844054.999999955, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 14381225, + "p50": 8090800, + "p90": 21044809.999999985, + "parent": "universal-salesforce-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 2772257.999999986, + "p95": 1930934.9999999998, + "callRate": 0.08515406162464986, + "callCount": 304, + "p75": 1793000, + "p50": 1603650, + "p90": 1871340, + "parent": "identity-api-gateway-service", + "child": "uni-aws-service" + }, + { + "errorRate": 0, + "p99": 1517100, + "p95": 1517100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 1517100, + "p50": 1517100, + "p90": 1517100, + "parent": "uni-segment-event-integration-daemon-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 3258555.9999999837, + "p95": 953130, + "callRate": 1.3487394957983194, + "callCount": 4815, + "p75": 861100, + "p50": 814600, + "p90": 912000, + "parent": "buyer-message-listener-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 74154701, + "p95": 71776705, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 59886725, + "p50": 45024250, + "p90": 68804210, + "parent": "identity-api-gateway-service-development", + "child": "peddle-go-merged-salvage-calculator-service-development" + }, + { + "errorRate": 0, + "p99": 2274900, + "p95": 2124100, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 1370100, + "p50": 1333700, + "p90": 1935600, + "parent": "buyer-message-listener-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 1226308, + "p95": 1076200, + "callRate": 0.2030812324929972, + "callCount": 725, + "p75": 921200, + "p50": 880300, + "p90": 997820, + "parent": "uni-url-shortener-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 11212708, + "p95": 9540300, + "callRate": 0.03165266106442577, + "callCount": 113, + "p75": 6635500, + "p50": 4910300, + "p90": 8178200, + "parent": "peddle-go-manheim-salvage-api-calculator-service", + "child": "peddle-go-message-listener-service" + }, + { + "errorRate": 0, + "p99": 100, + "p95": 100, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 100, + "p50": 100, + "p90": 100, + "parent": "identity-api-gateway-service-development", + "child": "buyer-site-development" + }, + { + "errorRate": 0, + "p99": 4509044, + "p95": 4505620, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 4488500, + "p50": 4467100, + "p90": 4501340, + "parent": "uni-location-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 2695838, + "p95": 2662790, + "callRate": 0.005042016806722689, + "callCount": 18, + "p75": 2106350, + "p50": 1392550, + "p90": 2609580, + "parent": "peddle-offer-calculation-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 9904380.00000003, + "p95": 4493239.999999999, + "callRate": 0.01764705882352941, + "callCount": 63, + "p75": 2116650, + "p50": 1342800, + "p90": 3141140.000000001, + "parent": "universal-location-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 24238582, + "p95": 23301309.999999996, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 18614950, + "p50": 12757000, + "p90": 22129720, + "parent": "comms-messaging-message-listener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 13566100, + "p95": 13566100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 13566100, + "p50": 13566100, + "p90": 13566100, + "parent": "finance-accrual-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 2429857, + "p95": 2426085, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 2407225, + "p50": 2383650, + "p90": 2421370, + "parent": "uni-system-notification-platform-daemon", + "child": "uni-feed-event-integration-daemon" + }, + { + "errorRate": 0, + "p99": 9539200, + "p95": 9539200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 9539200, + "p50": 9539200, + "p90": 9539200, + "parent": "car-user-company-connection-daemon", + "child": "universal-salesforce-sync-message-listener-service" + }, + { + "errorRate": 0, + "p99": 57595243.999999955, + "p95": 15673064.999999998, + "callRate": 0.0061624649859943975, + "callCount": 22, + "p75": 12905925, + "p50": 12429550, + "p90": 13357030, + "parent": "remkt-shadow-auction-net-salvage-calculator-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 5990345.00000013, + "p95": 1888359.9999999998, + "callRate": 0.5865546218487395, + "callCount": 2094, + "p75": 1614600, + "p50": 878100, + "p90": 1829200, + "parent": "finance-company-message-listener-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 4773000, + "p95": 4773000, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4773000, + "p50": 4773000, + "p90": 4773000, + "parent": "finance-payable-message-listener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 1434285.0000000019, + "p95": 1011724.9999999999, + "callRate": 0.14789915966386555, + "callCount": 528, + "p75": 870100, + "p50": 825850, + "p90": 954860, + "parent": "finance-company-message-listener-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 1104192, + "p95": 1088960, + "callRate": 0.004761904761904762, + "callCount": 17, + "p75": 1042200, + "p50": 1017200, + "p90": 1070220, + "parent": "auc-lcu-daemon", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 817975, + "p95": 792860, + "callRate": 0.012324929971988795, + "callCount": 44, + "p75": 566700, + "p50": 516600, + "p90": 766260, + "parent": "finance-intacct-message-listener-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 247851200, + "p95": 247851200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 247851200, + "p50": 247851200, + "p90": 247851200, + "parent": "comm-proxy-service-development", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 71405248, + "p95": 70963840, + "callRate": 0.0056022408963585435, + "callCount": 20, + "p75": 64931100, + "p50": 61672700, + "p90": 70471750, + "parent": "identity-external-api-gateway-service-staging", + "child": "universal-message-processor-service-staging" + }, + { + "errorRate": 0, + "p99": 13034172, + "p95": 12680460, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 10911900, + "p50": 8701200, + "p90": 12238320, + "parent": "remkt-shadow-iaa-calculator-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 5113705.999999961, + "p95": 1827470, + "callRate": 1.8750700280112045, + "callCount": 6694, + "p75": 1577275, + "p50": 1439800, + "p90": 1728920, + "parent": "buyer-bid-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 8765515, + "p95": 8235575, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 6112825, + "p50": 5473400, + "p90": 7573150, + "parent": "buy-purchase-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 12203163.999999998, + "p95": 8817330, + "callRate": 0.1957983193277311, + "callCount": 699, + "p75": 7956450, + "p50": 7326700, + "p90": 8397900, + "parent": "universal-salesforce-sync-message-listener-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 360581880, + "p95": 355336999.99999994, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 329112600, + "p50": 296332100, + "p90": 348780900, + "parent": "identity-api-gateway-service", + "child": "uni-feed-service" + }, + { + "errorRate": 0, + "p99": 56756453.999999955, + "p95": 46713019.99999999, + "callRate": 0.00980392156862745, + "callCount": 35, + "p75": 41756100, + "p50": 39825400, + "p90": 45387620, + "parent": "uni-vehicle-readonly-service", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 12026922, + "p95": 11743410, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 10325850, + "p50": 8553900, + "p90": 11389020, + "parent": "remarketing-peddle-calculator-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 36335844.99999999, + "p95": 10385169.999999944, + "callRate": 0.011204481792717087, + "callCount": 40, + "p75": 6750250, + "p50": 6583450, + "p90": 7009190.000000001, + "parent": "finance-company-message-listener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 21896926, + "p95": 16128589.999999989, + "callRate": 0.24509803921568626, + "callCount": 875, + "p75": 9651650, + "p50": 7514400, + "p90": 14524900, + "parent": "identity-external-api-gateway-service-staging", + "child": "comms-messaging-service-staging" + }, + { + "errorRate": 0, + "p99": 1549056239.000001, + "p95": 842163194.9999989, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 115606350, + "p50": 22072300, + "p90": 118874520, + "parent": "publisher-offer-service", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 10447914.999999994, + "p95": 8482850, + "callRate": 0.01288515406162465, + "callCount": 46, + "p75": 6919125, + "p50": 6594900, + "p90": 8135500, + "parent": "finance-receivable-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 16150175, + "p95": 15317674.999999998, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12569325, + "p50": 8159650, + "p90": 14277050, + "parent": "finance-receivable-message-listener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 30864702110, + "p95": 30439298950, + "callRate": 0.0056022408963585435, + "callCount": 20, + "p75": 15676050, + "p50": 12874750, + "p90": 4072773560.000042, + "parent": "buyer-bid-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 12522100, + "p95": 12522100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 12522100, + "p50": 12522100, + "p90": 12522100, + "parent": "comm-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 8392288, + "p95": 8342310, + "callRate": 0.006442577030812325, + "callCount": 23, + "p75": 7196900, + "p50": 6262200, + "p90": 8193220, + "parent": "peddle-go-auction-net-salvage-calculator-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 9551285, + "p95": 9314580, + "callRate": 0.0067226890756302525, + "callCount": 24, + "p75": 8979075, + "p50": 7455300, + "p90": 9223520, + "parent": "comms-messaging-message-listener-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 133102107.99999999, + "p95": 115911739.99999999, + "callRate": 0.0025210084033613447, + "callCount": 9, + "p75": 63225700, + "p50": 62630600, + "p90": 94423780.00000001, + "parent": "peddler-site-staging", + "child": "seller-offer-legacy-service-staging" + }, + { + "errorRate": 0, + "p99": 20539380, + "p95": 18916900, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 10804500, + "p50": 664000, + "p90": 16888800, + "parent": "finance-company-message-listener-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 29226190, + "p95": 29212150, + "callRate": 0.00392156862745098, + "callCount": 14, + "p75": 4513125, + "p50": 1093150, + "p90": 21827260.000000026, + "parent": "carrier-transport-message-listener-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 63832903.99999997, + "p95": 15453669.999999998, + "callRate": 0.029131652661064426, + "callCount": 104, + "p75": 12876250, + "p50": 12402550, + "p90": 13441270.000000002, + "parent": "publisher-embed-frontend", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 100, + "p95": 100, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 100, + "p50": 100, + "p90": 100, + "parent": "identity-api-gateway-service-development", + "child": "publisher-site-development" + }, + { + "errorRate": 0, + "p99": 364917200, + "p95": 364917200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 364917200, + "p50": 364917200, + "p90": 364917200, + "parent": "seller-offer-service", + "child": "universal-vehicle-message-listener-service" + }, + { + "errorRate": 0, + "p99": 9337232, + "p95": 9171240, + "callRate": 0.00980392156862745, + "callCount": 35, + "p75": 8558900, + "p50": 6048700, + "p90": 8985360, + "parent": "comms-messaging-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 123934855.99999973, + "p95": 74936159.99999997, + "callRate": 0.08207282913165266, + "callCount": 293, + "p75": 35954400, + "p50": 24842400, + "p90": 53984420, + "parent": "identity-api-gateway-service", + "child": "peddle-go-copart-calculator-service" + }, + { + "errorRate": 0, + "p99": 337094816, + "p95": 329116520, + "callRate": 0.01904761904761905, + "callCount": 68, + "p75": 113365250, + "p50": 3808100, + "p90": 315736970.0000001, + "parent": "identity-api-gateway-service-staging", + "child": "seller-account-service-staging" + }, + { + "errorRate": 0, + "p99": 6371900, + "p95": 6371900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 6371900, + "p50": 6371900, + "p90": 6371900, + "parent": "auc-lcu-daemon-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 38094540.00000001, + "p95": 26529899.999999963, + "callRate": 0.005322128851540616, + "callCount": 19, + "p75": 12145400, + "p50": 11788400, + "p90": 19968739.999999996, + "parent": "identity-external-api-gateway-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 12523235.999999998, + "p95": 11581379.999999998, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 6872100, + "p50": 4854550, + "p90": 10404060, + "parent": "comms-call-center-integration-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 11278977.000000002, + "p95": 8421985, + "callRate": 5.678991596638656, + "callCount": 20274, + "p75": 7059725, + "p50": 6570250, + "p90": 7490470, + "parent": "comms-messaging-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 612869845.0000002, + "p95": 311970494.99999964, + "callRate": 0.010644257703081233, + "callCount": 38, + "p75": 55232500, + "p50": 39426300, + "p90": 97392460.00000018, + "parent": "identity-api-gateway-service-staging", + "child": "seller-offer-service-staging" + }, + { + "errorRate": 0, + "p99": 9775371.999999978, + "p95": 1706639.9999999998, + "callRate": 0.8394957983193277, + "callCount": 2997, + "p75": 1509400, + "p50": 1394500, + "p90": 1599200, + "parent": "carrier-message-listener-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 3028598.000000002, + "p95": 1938290, + "callRate": 7.518487394957983, + "callCount": 26841, + "p75": 957100, + "p50": 790000, + "p90": 1426210.0000000005, + "parent": "peddle-go-iaa-calculator-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 13109709, + "p95": 13044545, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 12718725, + "p50": 12311450, + "p90": 12963090, + "parent": "universal-company-blacklist-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 210367495.9999998, + "p95": 18802534.999999963, + "callRate": 0.02464985994397759, + "callCount": 88, + "p75": 2822850, + "p50": 2262000, + "p90": 8515929.999999994, + "parent": "peddle-offer-calculation-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 99395548.00000001, + "p95": 93370539.99999999, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 33368825, + "p50": 13043450, + "p90": 85384670, + "parent": "identity-api-gateway-service-development", + "child": "carrier-service-development" + }, + { + "errorRate": 0, + "p99": 1313500, + "p95": 1313500, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 1313500, + "p50": 1313500, + "p90": 1313500, + "parent": "buyer-service", + "child": "universal-salesforce-sync-message-listener-service" + }, + { + "errorRate": 0, + "p99": 5535100, + "p95": 5535100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 5535100, + "p50": 5535100, + "p90": 5535100, + "parent": "identity-api-gateway-service-development", + "child": "car-user-company-connection-service-development" + }, + { + "errorRate": 0, + "p99": 299434737.9999998, + "p95": 230458089.9999998, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 21197250, + "p50": 12973000, + "p90": 144237280.00000012, + "parent": "cha-account-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 98941000, + "p95": 91329650, + "callRate": 0.014285714285714285, + "callCount": 51, + "p75": 50718150, + "p50": 1560900, + "p90": 88383000, + "parent": "publisher-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 12523566, + "p95": 8559480, + "callRate": 0.26974789915966385, + "callCount": 963, + "p75": 6674750, + "p50": 5491400, + "p90": 7983400, + "parent": "auc-daemon", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 2901172, + "p95": 2865060, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 2684500, + "p50": 2458800, + "p90": 2819920, + "parent": "auc-service-development", + "child": "auc-daemon-development" + }, + { + "errorRate": 0, + "p99": 47450400, + "p95": 47450400, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 47450400, + "p50": 47450400, + "p90": 47450400, + "parent": "seller-offer-service-staging", + "child": "buy-purchase-service-staging" + }, + { + "errorRate": 0, + "p99": 596240174.0000002, + "p95": 159741044.99999985, + "callRate": 0.00784313725490196, + "callCount": 28, + "p75": 20707175, + "p50": 10797450, + "p90": 59568240.00000003, + "parent": "remkt-shadow-iaa-calculator-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 94242441.99999999, + "p95": 90883810, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 74090650, + "p50": 67087450, + "p90": 86685520, + "parent": "comms-cyborg-service-staging", + "child": "peddle-service-locator-service-staging" + }, + { + "errorRate": 0, + "p99": 2311392684, + "p95": 1512699019.999999, + "callRate": 0.0025210084033613447, + "callCount": 9, + "p75": 13224400, + "p50": 4062400, + "p90": 514331940.0000004, + "parent": "peddle-go-copart-calculator-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 966444721.0000001, + "p95": 589134804.9999989, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12294925, + "p50": 8025500, + "p90": 117497409.99999963, + "parent": "uni-system-notification-platform-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 2438435.999999998, + "p95": 1566179.9999999974, + "callRate": 0.0036414565826330533, + "callCount": 13, + "p75": 701700, + "p50": 663400, + "p90": 835760, + "parent": "publisher-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 6145436.0000000205, + "p95": 1257940.000000001, + "callRate": 0.31708683473389354, + "callCount": 1132, + "p75": 1001425, + "p50": 800000, + "p90": 1088770, + "parent": "carrier-message-listener-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 57958079.999999985, + "p95": 11851199.999999983, + "callRate": 0.009243697478991597, + "callCount": 33, + "p75": 4689400, + "p50": 3449800, + "p90": 5941960.000000001, + "parent": "uni-url-shortener-service-staging", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 10310004.000000004, + "p95": 7090520, + "callRate": 0.4081232492997199, + "callCount": 1457, + "p75": 5473400, + "p50": 5318700, + "p90": 6118220.000000001, + "parent": "seller-offer-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 24596438.999999996, + "p95": 18049739.999999996, + "callRate": 0.0067226890756302525, + "callCount": 24, + "p75": 3060375, + "p50": 2266300, + "p90": 16315970, + "parent": "finance-payable-message-listener-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 69467300.99999997, + "p95": 45185154.999999985, + "callRate": 1.1983193277310924, + "callCount": 4278, + "p75": 2317425, + "p50": 1752850, + "p90": 43316910, + "parent": "finance-receivable-message-listener-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 84325072, + "p95": 77870559.99999999, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 45598000, + "p50": 5257300, + "p90": 69802420, + "parent": "peddle-go-valuations-service-staging", + "child": "peddle-go-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 30152103, + "p95": 29912115, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 29035575, + "p50": 21542600, + "p90": 29612130, + "parent": "buyer-beta-legacy-service", + "child": "peddle-helper-service" + }, + { + "errorRate": 0, + "p99": 9301100, + "p95": 9301100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 9301100, + "p50": 9301100, + "p90": 9301100, + "parent": "remkt-shadow-manheim-salvage-api-calculator-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 6951300, + "p95": 6951300, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 6951300, + "p50": 6951300, + "p90": 6951300, + "parent": "universal-salesforce-wrapper-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 692047516.0000001, + "p95": 491851059.9999998, + "callRate": 0.00784313725490196, + "callCount": 28, + "p75": 51363275, + "p50": 34334550, + "p90": 188777310.00000024, + "parent": "remkt-shadow-merged-salvage-calculator-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 4844564.999999999, + "p95": 3597225, + "callRate": 0.004481792717086834, + "callCount": 16, + "p75": 1154425, + "p50": 899600, + "p90": 2132150, + "parent": "buy-campaign-instant-bid-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 11308373.000000004, + "p95": 8992500, + "callRate": 0.04257703081232493, + "callCount": 152, + "p75": 4415475, + "p50": 4146700, + "p90": 6234050, + "parent": "remarketing-peddle-calculator-service", + "child": "peddle-go-message-listener-service" + }, + { + "errorRate": 0, + "p99": 100, + "p95": 100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 100, + "p50": 100, + "p90": 100, + "parent": "publisher-site-development", + "child": "publisher-legacy-service-development" + }, + { + "errorRate": 0, + "p99": 14960089, + "p95": 14060844.999999998, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12091825, + "p50": 9014150, + "p90": 12936789.999999998, + "parent": "universal-vehicle-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 5788164.999999981, + "p95": 3114025.0000000005, + "callRate": 0.08403361344537816, + "callCount": 300, + "p75": 2795025, + "p50": 2683450, + "p90": 2958450, + "parent": "identity-api-gateway-service", + "child": "peddle-go-manheim-wholecar-api-calculator-service" + }, + { + "errorRate": 0, + "p99": 20492951.000000026, + "p95": 8599610, + "callRate": 0.8341736694677871, + "callCount": 2978, + "p75": 7487300, + "p50": 6530300, + "p90": 8151260.000000001, + "parent": "peddle-go-iaa-calculator-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 23026500, + "p95": 23026500, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 23026500, + "p50": 23026500, + "p90": 23026500, + "parent": "identity-api-gateway-service-staging", + "child": "remkt-shadow-iaa-calculator-service-staging" + }, + { + "errorRate": 0, + "p99": 379841280.99999976, + "p95": 264588269.99999982, + "callRate": 0.014005602240896359, + "callCount": 50, + "p75": 100842500, + "p50": 27271450, + "p90": 195209530.00000003, + "parent": "peddle-go-valuations-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 143297216, + "p95": 139698480, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 121704800, + "p50": 99212700, + "p90": 135200060, + "parent": "identity-api-gateway-service-development", + "child": "remkt-shadow-copart-calculator-service-development" + }, + { + "errorRate": 0, + "p99": 48526252, + "p95": 33019659.99999998, + "callRate": 0.0025210084033613447, + "callCount": 9, + "p75": 3842700, + "p50": 1427900, + "p90": 13636420.000000007, + "parent": "auc-counter-bid-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 12674235.000000004, + "p95": 3908304.999999999, + "callRate": 6.089915966386554, + "callCount": 21741, + "p75": 1934825, + "p50": 1827500, + "p90": 2069740.0000000002, + "parent": "buyer-message-listener-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 12942491, + "p95": 12932455, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 12882275, + "p50": 12819550, + "p90": 12919910, + "parent": "uni-webhook-sender-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 352444027, + "p95": 339374135, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 274024675, + "p50": 192337850, + "p90": 323036770, + "parent": "identity-api-gateway-service-staging", + "child": "peddle-go-iaa-calculator-service-staging" + }, + { + "errorRate": 0, + "p99": 180359932, + "p95": 178780460, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 170883100, + "p50": 161011400, + "p90": 176806120, + "parent": "remarketing-peddle-calculator-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 3794600, + "p95": 3794600, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 3794600, + "p50": 3794600, + "p90": 3794600, + "parent": "peddle-go-auction-net-wholecar-calculator-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 444788411.9999994, + "p95": 260104589.99999994, + "callRate": 0.6103641456582634, + "callCount": 2179, + "p75": 137587050, + "p50": 10992800, + "p90": 201933140, + "parent": "peddle-offer-calculation-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 181845476.99999988, + "p95": 162320159.99999997, + "callRate": 0.011764705882352941, + "callCount": 42, + "p75": 52013400, + "p50": 29857300, + "p90": 119533119.99999997, + "parent": "peddle-go-valuations-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 1223132, + "p95": 1221260, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 1211900, + "p50": 1200200, + "p90": 1218920, + "parent": "carrier-transport-service", + "child": "seller-offer-service" + }, + { + "errorRate": 0, + "p99": 203336767.99999985, + "p95": 148566019.99999994, + "callRate": 0.046218487394957986, + "callCount": 165, + "p75": 46666300, + "p50": 27327000, + "p90": 107702259.99999997, + "parent": "identity-api-gateway-service", + "child": "peddle-go-merged-salvage-calculator-service" + }, + { + "errorRate": 0, + "p99": 1049926.9999999998, + "p95": 1016780, + "callRate": 0.07507002801120448, + "callCount": 268, + "p75": 913175, + "p50": 815800, + "p90": 987550, + "parent": "remkt-shadow-iaa-calculator-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 308655094, + "p95": 286321869.99999994, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 174655750, + "p50": 114620850, + "p90": 258405340.00000003, + "parent": "identity-api-gateway-service-staging", + "child": "peddle-go-bid-service-staging" + }, + { + "errorRate": 0, + "p99": 7750572.000000002, + "p95": 6373679.999999998, + "callRate": 0.031932773109243695, + "callCount": 114, + "p75": 4224125, + "p50": 2804350, + "p90": 5311810, + "parent": "comms-action-link-service-staging", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 26316398.999999996, + "p95": 25589594.999999996, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 21955575, + "p50": 14999750, + "p90": 24681090, + "parent": "comms-messaging-service-staging", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 49731354.999999985, + "p95": 40137775, + "callRate": 0.018487394957983194, + "callCount": 66, + "p75": 36798500, + "p50": 33300000, + "p90": 38640700, + "parent": "seller-offer-legacy-service", + "child": "ped-no-sql-data-access-service" + }, + { + "errorRate": 0, + "p99": 3015465.999999997, + "p95": 1626699.9999999998, + "callRate": 0.4969187675070028, + "callCount": 1774, + "p75": 1344600, + "p50": 1182050, + "p90": 1549580, + "parent": "buyer-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 34749923, + "p95": 32392414.999999993, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 20604875, + "p50": 14304300, + "p90": 29445530.000000004, + "parent": "carrier-transport-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 731744042, + "p95": 728353410, + "callRate": 0.004201680672268907, + "callCount": 15, + "p75": 503389550, + "p50": 302351000, + "p90": 680006360, + "parent": "uni-salesforce-outbound-listener-service", + "child": "auc-service" + }, + { + "errorRate": 0, + "p99": 12723816, + "p95": 12676280, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 12438600, + "p50": 4812600, + "p90": 12616860, + "parent": "universal-company-blacklist-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 1312837, + "p95": 1165170, + "callRate": 0.09859943977591036, + "callCount": 352, + "p75": 976625, + "p50": 922250, + "p90": 1059750.0000000002, + "parent": "remkt-shadow-merged-salvage-calculator-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 5577124.000000002, + "p95": 2694069.9999999995, + "callRate": 1.5851540616246498, + "callCount": 5659, + "p75": 2130450, + "p50": 1147500, + "p90": 2505100, + "parent": "carrier-message-listener-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 16271179.999999993, + "p95": 6560300, + "callRate": 0.004481792717086834, + "callCount": 16, + "p75": 2420425, + "p50": 2327900, + "p90": 2480100, + "parent": "finance-data-sync-message-listener-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 2391433, + "p95": 2374765, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 1897800, + "p50": 532300, + "p90": 2353930, + "parent": "peddle-go-iaa-calculator-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 1794336.0000000002, + "p95": 1312349.999999999, + "callRate": 0.2560224089635854, + "callCount": 914, + "p75": 993350, + "p50": 733250, + "p90": 1184040.0000000002, + "parent": "peddle-go-valuations-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 8390572, + "p95": 8368860, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 8260300, + "p50": 8124600, + "p90": 8341720, + "parent": "buyer-message-listener-service", + "child": "uni-system-notification-platform-daemon" + }, + { + "errorRate": 0, + "p99": 769100, + "p95": 769100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 769100, + "p50": 769100, + "p90": 769100, + "parent": "seller-offer-service", + "child": "pub-daemon" + }, + { + "errorRate": 0, + "p99": 72850854, + "p95": 72843070, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 18857100, + "p50": 810850, + "p90": 72833340, + "parent": "charity-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 79947834, + "p95": 78913955, + "callRate": 0.01680672268907563, + "callCount": 60, + "p75": 66665625, + "p50": 20910150, + "p90": 73836880, + "parent": "classic-seller-site-staging", + "child": "universal-salesforce-classic-service-staging" + }, + { + "errorRate": 0, + "p99": 70066222, + "p95": 70062710, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 70045150, + "p50": 70023200, + "p90": 70058320, + "parent": "auc-service", + "child": "seller-offer-assignment-service" + }, + { + "errorRate": 0, + "p99": 100, + "p95": 100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 100, + "p50": 100, + "p90": 100, + "parent": "publisher-site-development", + "child": "universal-environment-settings-service-development" + }, + { + "errorRate": 0, + "p99": 30947009152, + "p95": 30902464160, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 30679739200, + "p50": 30401333000, + "p90": 30846782920, + "parent": "identity-api-gateway-service-development", + "child": "peddle-go-bid-service-development" + }, + { + "errorRate": 0, + "p99": 59570990.000000015, + "p95": 38508550, + "callRate": 0.0030812324929971988, + "callCount": 11, + "p75": 12125800, + "p50": 3944300, + "p90": 12180500, + "parent": "comms-email-sender-message-listener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 1732710, + "p95": 1469779.9999999998, + "callRate": 0.05714285714285714, + "callCount": 204, + "p75": 806600, + "p50": 657400, + "p90": 1119090.0000000002, + "parent": "peddle-go-auction-net-salvage-calculator-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 17258479, + "p95": 15736794.999999996, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12273550, + "p50": 7955100, + "p90": 13834690, + "parent": "uni-feed-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 959970900, + "p95": 959970900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 959970900, + "p50": 959970900, + "p90": 959970900, + "parent": "uni-salesforce-outbound-listener-service", + "child": "cha-account-daemon" + }, + { + "errorRate": 0, + "p99": 246012621.99999958, + "p95": 144637015.00000003, + "callRate": 0.02296918767507003, + "callCount": 82, + "p75": 83282575, + "p50": 60764150, + "p90": 110898760.00000001, + "parent": "auc-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 21505100, + "p95": 21505100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 21505100, + "p50": 21505100, + "p90": 21505100, + "parent": "finance-company-message-listener-service", + "child": "buyer-beta-legacy-service" + }, + { + "errorRate": 0, + "p99": 16051589, + "p95": 14876344.999999996, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 11869175, + "p50": 3825250, + "p90": 13407290, + "parent": "universal-location-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 13654334, + "p95": 13606070, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 13364750, + "p50": 13063100, + "p90": 13545740, + "parent": "remkt-shadow-manheim-salvage-api-calculator-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 7464322.000000008, + "p95": 4640990, + "callRate": 1.477591036414566, + "callCount": 5275, + "p75": 3643400, + "p50": 2681100, + "p90": 4214480, + "parent": "comms-action-link-service", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 53142915.00000001, + "p95": 44576175, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 12268550, + "p50": 11671050, + "p90": 33867750, + "parent": "uni-system-notification-platform-daemon", + "child": "uni-segment-event-integration-daemon" + }, + { + "errorRate": 0, + "p99": 4668100, + "p95": 4668100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4668100, + "p50": 4668100, + "p90": 4668100, + "parent": "remarketing-peddle-calculator-service-staging", + "child": "peddle-go-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 30711922925, + "p95": 22903723325, + "callRate": 0.007282913165266107, + "callCount": 26, + "p75": 27212950, + "p50": 13430450, + "p90": 516495700, + "parent": "peddle-go-bid-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 13246380, + "p95": 12889900, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 11107500, + "p50": 8879500, + "p90": 12444300, + "parent": "id-server-data-cleanup-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 1636205169.9999957, + "p95": 31955019.999999993, + "callRate": 0.13641456582633052, + "callCount": 487, + "p75": 11285550, + "p50": 10049500, + "p90": 16338320.000000006, + "parent": "identity-api-gateway-service-development", + "child": "identity-provider-service-development" + }, + { + "errorRate": 0, + "p99": 16056125.000000002, + "p95": 15245825, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 12172000, + "p50": 8941700, + "p90": 14232950, + "parent": "carrier-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 4337000, + "p95": 4337000, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4337000, + "p50": 4337000, + "p90": 4337000, + "parent": "auc-lcu-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 1418509.9999999993, + "p95": 1190825, + "callRate": 0.018487394957983194, + "callCount": 66, + "p75": 960600, + "p50": 863550, + "p90": 1158800, + "parent": "uni-salesforce-outbound-listener-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 4557569.999999994, + "p95": 901964.9999999999, + "callRate": 0.03305322128851541, + "callCount": 118, + "p75": 742950, + "p50": 693700, + "p90": 839419.9999999999, + "parent": "peddle-offer-calculation-message-listener-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 16501364, + "p95": 16286420, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 15211700, + "p50": 14810700, + "p90": 16017740, + "parent": "charity-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 2938006185.999995, + "p95": 513351399.99999964, + "callRate": 0.007563025210084034, + "callCount": 27, + "p75": 5453800, + "p50": 2004500, + "p90": 70881300.00000021, + "parent": "peddle-go-manheim-salvage-api-calculator-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 1290935.0000000002, + "p95": 1130335, + "callRate": 2.4296918767507, + "callCount": 8674, + "p75": 965200, + "p50": 889000, + "p90": 1061890, + "parent": "uni-vehicle-readonly-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 44216181.00000001, + "p95": 34780904.99999997, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 9120625, + "p50": 6721150, + "p90": 22986809.999999993, + "parent": "publisher-offer-service-staging", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 18214031, + "p95": 18003355, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 16949975, + "p50": 15633250, + "p90": 17740010, + "parent": "finance-intacct-message-listener-service", + "child": "finance-payable-message-listener-service" + }, + { + "errorRate": 0, + "p99": 645323, + "p95": 645015, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 566025, + "p50": 489100, + "p90": 644490, + "parent": "remkt-shadow-copart-calculator-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 12253754.000000002, + "p95": 11633970, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 8832250, + "p50": 7727600, + "p90": 10813090, + "parent": "universal-marketing-message-listener-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 15534372, + "p95": 15402660, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 14744100, + "p50": 13920900, + "p90": 15238020, + "parent": "peddle-go-manheim-wholecar-api-calculator-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 1444300, + "p95": 1444300, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 1444300, + "p50": 1444300, + "p90": 1444300, + "parent": "car-user-company-connection-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 329201507.9999999, + "p95": 238360605, + "callRate": 0.3764705882352941, + "callCount": 1344, + "p75": 148027050, + "p50": 18702700, + "p90": 196025950, + "parent": "buyer-bid-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 1299413, + "p95": 1259065, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 1138225, + "p50": 1076900, + "p90": 1210360, + "parent": "cha-offer-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 9419400.000000002, + "p95": 7032679.999999999, + "callRate": 0.010364145658263305, + "callCount": 37, + "p75": 5853100, + "p50": 4424700, + "p90": 6506539.999999999, + "parent": "identity-api-gateway-service-development", + "child": "universal-vehicle-service-development" + }, + { + "errorRate": 0, + "p99": 12798284, + "p95": 12791020, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 12754700, + "p50": 12709300, + "p90": 12781940, + "parent": "pdl-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 64574756, + "p95": 61233380, + "callRate": 0.0025210084033613447, + "callCount": 9, + "p75": 51914900, + "p50": 44404500, + "p90": 57056660, + "parent": "universal-vehicle-message-listener-service", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 291792839.9999999, + "p95": 194752050, + "callRate": 0.29299719887955183, + "callCount": 1046, + "p75": 95459175, + "p50": 32804350, + "p90": 141278350, + "parent": "peddle-go-bid-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 1215535.0000000002, + "p95": 1037390, + "callRate": 2.388235294117647, + "callCount": 8526, + "p75": 873400, + "p50": 823000, + "p90": 998680, + "parent": "uni-vehicle-readonly-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 170287400.0000001, + "p95": 92264159.99999991, + "callRate": 0.012605042016806723, + "callCount": 45, + "p75": 9066300, + "p50": 8461600, + "p90": 18212440.000000007, + "parent": "identity-api-gateway-service-development", + "child": "finance-receivable-service-development" + }, + { + "errorRate": 0, + "p99": 24385525.99999941, + "p95": 1347504.9999999998, + "callRate": 1.5165266106442576, + "callCount": 5414, + "p75": 1192250, + "p50": 1117900, + "p90": 1265600, + "parent": "seller-account-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 828900, + "p95": 828900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 828900, + "p50": 828900, + "p90": 828900, + "parent": "charity-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 15160800, + "p95": 14892000, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 13548000, + "p50": 9078600, + "p90": 14556000, + "parent": "peddle-go-auction-net-wholecar-calculator-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 16439289, + "p95": 15950845, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 13917450, + "p50": 8035500, + "p90": 15372210, + "parent": "uni-analytics-alert-processing-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 10029960, + "p95": 9975400, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 9702600, + "p50": 8936400, + "p90": 9907200, + "parent": "car-user-company-connection-daemon", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 65395661.76, + "p95": 57501452.79999999, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 18030408, + "p50": 11658318, + "p90": 47633691.6, + "parent": "identity-api-gateway-service-development", + "child": "pub-site-development" + }, + { + "errorRate": 0, + "p99": 81584208, + "p95": 81278240, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 79748400, + "p50": 77836100, + "p90": 80895780, + "parent": "buyer-beta-legacy-service-staging", + "child": "seller-offer-assignment-service-staging" + }, + { + "errorRate": 0, + "p99": 1960736.0000000028, + "p95": 669924.9999999999, + "callRate": 0.3103641456582633, + "callCount": 1108, + "p75": 555325, + "p50": 435550, + "p90": 641090, + "parent": "universal-location-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 1299772, + "p95": 1281260, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 1188700, + "p50": 1073000, + "p90": 1258120, + "parent": "seller-instant-offer-service-staging", + "child": "pub-daemon-staging" + }, + { + "errorRate": 0, + "p99": 5079142, + "p95": 1239700.0000000002, + "callRate": 0.09943977591036414, + "callCount": 355, + "p75": 1026200, + "p50": 852600, + "p90": 1124180, + "parent": "seller-instant-offer-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 6062317943.999977, + "p95": 1097373919.9999998, + "callRate": 0.015966386554621848, + "callCount": 57, + "p75": 163594300, + "p50": 78806300, + "p90": 338957179.9999999, + "parent": "finance-payable-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 13650142, + "p95": 13284710, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 11457550, + "p50": 9173600, + "p90": 12827920, + "parent": "peddle-go-auction-net-salvage-calculator-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 113302386, + "p95": 63255689.99999999, + "callRate": 0.06918767507002802, + "callCount": 247, + "p75": 31027700, + "p50": 24718100, + "p90": 45218820, + "parent": "identity-api-gateway-service", + "child": "peddle-go-iaa-calculator-service" + }, + { + "errorRate": 0, + "p99": 19629110, + "p95": 19225150, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 17205350, + "p50": 14680600, + "p90": 18720200, + "parent": "peddle-go-iaa-hybrid-calculator-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 12424250, + "p95": 12394450, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 10499525, + "p50": 5057450, + "p90": 12357200, + "parent": "peddle-go-copart-hybrid-calculator-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 21021790, + "p95": 18985349.999999996, + "callRate": 0.004201680672268907, + "callCount": 15, + "p75": 12822600, + "p50": 12077000, + "p90": 16400600, + "parent": "peddle-offer-calculation-message-listener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 5943855.999999999, + "p95": 5874880, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 5530000, + "p50": 5357050, + "p90": 5788660, + "parent": "finance-intacct-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 2379400, + "p95": 2379400, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 2379400, + "p50": 2379400, + "p90": 2379400, + "parent": "comms-nlp-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 10231558, + "p95": 10140990, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 9688150, + "p50": 9122100, + "p90": 10027780, + "parent": "buyer-service", + "child": "uni-system-notification-platform-daemon" + }, + { + "errorRate": 0, + "p99": 1649200, + "p95": 1649200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 1649200, + "p50": 1649200, + "p90": 1649200, + "parent": "universal-vehicle-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 133294055.99999999, + "p95": 92643879.99999996, + "callRate": 0.0025210084033613447, + "callCount": 9, + "p75": 9663600, + "p50": 2634300, + "p90": 41831160.00000002, + "parent": "remarketing-peddle-calculator-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 7314000, + "p95": 7314000, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 7314000, + "p50": 7314000, + "p90": 7314000, + "parent": "uni-feed-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 19020659.99999999, + "p95": 9651750, + "callRate": 0.008683473389355743, + "callCount": 31, + "p75": 6190150, + "p50": 5563100, + "p90": 7273200, + "parent": "peddle-go-merged-salvage-calculator-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 279495533, + "p95": 274274865, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 248171525, + "p50": 215542350, + "p90": 267749030, + "parent": "remkt-shadow-peddle-calculator-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 4249765, + "p95": 4222425, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 4085725, + "p50": 3914850, + "p90": 4188250, + "parent": "identity-api-gateway-service-development", + "child": "peddle-go-auction-net-wholecar-calculator-service-development" + }, + { + "errorRate": 0, + "p99": 883218183, + "p95": 847577315, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 669372975, + "p50": 446617550, + "p90": 803026230, + "parent": "seller-message-listener-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 2155595, + "p95": 2152375, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 2119800, + "p50": 1383150, + "p90": 2148350, + "parent": "buy-limit-calculation-daemon", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 57176668.99999993, + "p95": 18080364.999999993, + "callRate": 0.1103641456582633, + "callCount": 394, + "p75": 10373650, + "p50": 9298950, + "p90": 12756050, + "parent": "identity-api-gateway-service", + "child": "comms-action-link-service" + }, + { + "errorRate": 0, + "p99": 8895620, + "p95": 8866500, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 8686950, + "p50": 8438900, + "p90": 8830100, + "parent": "finance-accrual-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 34028714.99999999, + "p95": 27149875, + "callRate": 0.07170868347338935, + "callCount": 256, + "p75": 24771950, + "p50": 17664500, + "p90": 26724900, + "parent": "identity-api-gateway-service", + "child": "charity-site" + }, + { + "errorRate": 0, + "p99": 10904800, + "p95": 10904800, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 10904800, + "p50": 10904800, + "p90": 10904800, + "parent": "carrier-transport-service", + "child": "universal-salesforce-sync-message-listener-service" + }, + { + "errorRate": 0, + "p99": 377229700, + "p95": 377229700, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 377229700, + "p50": 377229700, + "p90": 377229700, + "parent": "identity-api-gateway-service-staging", + "child": "remkt-shadow-manheim-salvage-api-calculator-service-staging" + }, + { + "errorRate": 0, + "p99": 1167412, + "p95": 1163060, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 1141300, + "p50": 1084500, + "p90": 1157620, + "parent": "publisher-offer-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 10519500.000000002, + "p95": 7908899.999999998, + "callRate": 0.20364145658263305, + "callCount": 727, + "p75": 6257250, + "p50": 5989400, + "p90": 7163240, + "parent": "finance-intacct-message-listener-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 5000313, + "p95": 4998765, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 4991025, + "p50": 4981350, + "p90": 4996830, + "parent": "fin-accrual-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 180090201.99999997, + "p95": 157701009.99999994, + "callRate": 0.004201680672268907, + "callCount": 15, + "p75": 92457500, + "p50": 75655500, + "p90": 131558360, + "parent": "uni-system-notification-platform-daemon", + "child": "uni-salesforce-event-integration-daemon" + }, + { + "errorRate": 0, + "p99": 13774449, + "p95": 12971844.999999998, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 12028025, + "p50": 7886850, + "p90": 12149060, + "parent": "finance-data-sync-message-listener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 598655463, + "p95": 575069315, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 457138575, + "p50": 309725150, + "p90": 545586630, + "parent": "identity-api-gateway-service-staging", + "child": "peddle-go-valuations-service-staging" + }, + { + "errorRate": 0, + "p99": 180081712.0000003, + "p95": 34158860, + "callRate": 0.020448179271708684, + "callCount": 73, + "p75": 5446600, + "p50": 1518700, + "p90": 15451479.999999998, + "parent": "buy-purchase-service-staging", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 568824400, + "p95": 568824400, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 568824400, + "p50": 568824400, + "p90": 568824400, + "parent": "seller-offer-service", + "child": "auc-counter-bid-daemon" + }, + { + "errorRate": 0, + "p99": 9008698, + "p95": 8602690, + "callRate": 0.005322128851540616, + "callCount": 19, + "p75": 7480250, + "p50": 6431200, + "p90": 8459900, + "parent": "remkt-shadow-peddle-calculator-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 369456868.00000054, + "p95": 19878649.99999999, + "callRate": 0.04257703081232493, + "callCount": 152, + "p75": 10249000, + "p50": 9534700, + "p90": 13136700, + "parent": "identity-api-gateway-service", + "child": "carrier-transport-service" + }, + { + "errorRate": 0, + "p99": 7713900, + "p95": 7713900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 7713900, + "p50": 7713900, + "p90": 7713900, + "parent": "universal-salesforce-sync-message-listener-service", + "child": "uni-system-notification-platform-daemon" + }, + { + "errorRate": 0, + "p99": 14475931, + "p95": 14304209.999999996, + "callRate": 0.0067226890756302525, + "callCount": 24, + "p75": 12409475, + "p50": 9306600, + "p90": 13289770, + "parent": "finance-payable-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 13843012.999999978, + "p95": 9340820, + "callRate": 0.8313725490196079, + "callCount": 2968, + "p75": 8086525, + "p50": 7020100, + "p90": 8967730, + "parent": "remarketing-peddle-calculator-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 197184103, + "p95": 177647354.99999994, + "callRate": 0.0067226890756302525, + "callCount": 24, + "p75": 20872100, + "p50": 7038100, + "p90": 150880180, + "parent": "auc-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 1656109534.9999776, + "p95": 15093775, + "callRate": 0.018487394957983194, + "callCount": 66, + "p75": 1936150, + "p50": 1422500, + "p90": 4453200, + "parent": "carrier-transport-message-listener-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 16100929, + "p95": 14606244.999999996, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12154050, + "p50": 7757550, + "p90": 12737889.999999998, + "parent": "cha-offer-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 46770857.000000015, + "p95": 32871905, + "callRate": 0.4565826330532213, + "callCount": 1630, + "p75": 32012000, + "p50": 28376400, + "p90": 32635630, + "parent": "comms-cyborg-service", + "child": "seller-offer-assignment-service" + }, + { + "errorRate": 0, + "p99": 70075326, + "p95": 64743029.99999999, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 38081550, + "p50": 4754700, + "p90": 58077660, + "parent": "auc-service-development", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 106836196.00000006, + "p95": 61552979.999999925, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 12279400, + "p50": 12034400, + "p90": 14944990.000000002, + "parent": "peddle-go-auction-net-salvage-calculator-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 15286018.000000002, + "p95": 10685059.999999998, + "callRate": 0.03361344537815126, + "callCount": 120, + "p75": 2827150, + "p50": 2584800, + "p90": 8359310.000000004, + "parent": "charity-message-listener-service-staging", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 132812283.99999999, + "p95": 120339420, + "callRate": 0.0025210084033613447, + "callCount": 9, + "p75": 12899200, + "p50": 12463800, + "p90": 104748340, + "parent": "uni-vehicle-readonly-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 4149823, + "p95": 3913914.999999999, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 872350, + "p50": 723200, + "p90": 3619030, + "parent": "peddle-go-copart-calculator-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 57115957.00000001, + "p95": 40191384.99999995, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12185175, + "p50": 7829900, + "p90": 19035669.999999985, + "parent": "uni-location-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 731708, + "p95": 718940, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 681200, + "p50": 604100, + "p90": 702980, + "parent": "peddle-go-auction-net-salvage-calculator-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 16499555, + "p95": 16012175, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 13575275, + "p50": 10529150, + "p90": 15402950, + "parent": "peddle-go-iaa-hybrid-calculator-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 4008500, + "p95": 4008500, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4008500, + "p50": 4008500, + "p90": 4008500, + "parent": "peddle-go-auction-net-wholecar-calculator-service", + "child": "peddle-go-message-listener-service" + }, + { + "errorRate": 0, + "p99": 7917105.999999665, + "p95": 1283975, + "callRate": 0.026330532212885154, + "callCount": 94, + "p75": 1220850, + "p50": 1132000, + "p90": 1252520, + "parent": "finance-company-message-listener-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 446508232.00000024, + "p95": 259363559.9999997, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 21709125, + "p50": 12353050, + "p90": 65637600.00000001, + "parent": "pub-account-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 94841422, + "p95": 94545110, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 93063550, + "p50": 91211600, + "p90": 94174720, + "parent": "identity-api-gateway-service", + "child": "uni-photo-service" + }, + { + "errorRate": 0, + "p99": 12140512.000000026, + "p95": 8736740, + "callRate": 0.242296918767507, + "callCount": 865, + "p75": 7689200, + "p50": 7314900, + "p90": 8274180, + "parent": "universal-salesforce-sync-message-listener-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 24443700, + "p95": 24443700, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 24443700, + "p50": 24443700, + "p90": 24443700, + "parent": "identity-api-gateway-service-development", + "child": "publisher-offer-service-development" + }, + { + "errorRate": 0, + "p99": 5075441, + "p95": 5068805, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 5035625, + "p50": 4994150, + "p90": 5060510, + "parent": "comms-messaging-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 3030608800, + "p95": 3030608800, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 3030608800, + "p50": 3030608800, + "p90": 3030608800, + "parent": "identity-api-gateway-service", + "child": "uni-vehicle-readonly-service" + }, + { + "errorRate": 0, + "p99": 2433286.0000000265, + "p95": 1030469.9999999999, + "callRate": 0.7896358543417367, + "callCount": 2819, + "p75": 873250, + "p50": 829100, + "p90": 932320, + "parent": "uni-system-notification-platform-daemon-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 136543100, + "p95": 136543100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 136543100, + "p50": 136543100, + "p90": 136543100, + "parent": "charity-site", + "child": "seller-offer-assignment-service" + }, + { + "errorRate": 0, + "p99": 15095208, + "p95": 14950440, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 14226600, + "p50": 4574600, + "p90": 14769480, + "parent": "uni-analytics-alert-processing-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 156776956.00000006, + "p95": 128163834.99999997, + "callRate": 0.010644257703081233, + "callCount": 38, + "p75": 48393775, + "p50": 26859500, + "p90": 109070540, + "parent": "seller-frontend-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 793522, + "p95": 779610, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 710050, + "p50": 623100, + "p90": 762220, + "parent": "auc-daemon-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 43760280, + "p95": 34693399.99999999, + "callRate": 0.0025210084033613447, + "callCount": 9, + "p75": 15395500, + "p50": 4805700, + "p90": 23359800.000000004, + "parent": "peddle-go-copart-hybrid-calculator-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 12763871.999999998, + "p95": 12455760, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 10915200, + "p50": 10134700, + "p90": 12070620, + "parent": "charity-classic-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 6951852.000000002, + "p95": 4118135, + "callRate": 2.5831932773109245, + "callCount": 9222, + "p75": 2622125, + "p50": 1710650, + "p90": 3111070, + "parent": "peddle-offer-calculation-message-listener-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 40926200, + "p95": 40926200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 40926200, + "p50": 40926200, + "p90": 40926200, + "parent": "finance-company-message-listener-service-staging", + "child": "buyer-beta-legacy-service-staging" + }, + { + "errorRate": 0, + "p99": 30879549130, + "p95": 16362645650, + "callRate": 0.008683473389355743, + "callCount": 31, + "p75": 23486450, + "p50": 12344400, + "p90": 1306972600, + "parent": "peddle-offer-calculation-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 9807182, + "p95": 9558710, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 8316350, + "p50": 7534700, + "p90": 9248120, + "parent": "charity-message-listener-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 14875698, + "p95": 14759290, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 14177250, + "p50": 13449700, + "p90": 14613780, + "parent": "uni-webhook-sender-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 5850072, + "p95": 5097959.999999998, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 2284375, + "p50": 1578300, + "p90": 4157819.999999999, + "parent": "car-user-company-connection-daemon", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 18586000, + "p95": 18586000, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 18586000, + "p50": 18586000, + "p90": 18586000, + "parent": "identity-api-gateway-service-staging", + "child": "buyer-legacy-site-staging" + }, + { + "errorRate": 0, + "p99": 11949050, + "p95": 5425525, + "callRate": 0.007282913165266107, + "callCount": 26, + "p75": 4010050, + "p50": 2214500, + "p90": 4905100, + "parent": "peddle-go-copart-calculator-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 1255174400.000002, + "p95": 20176479.999999993, + "callRate": 0.006442577030812325, + "callCount": 23, + "p75": 12377850, + "p50": 7759300, + "p90": 15091760, + "parent": "universal-email-platform-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 7005213, + "p95": 6978465, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 6844725, + "p50": 6731400, + "p90": 6945030, + "parent": "peddle-go-auction-net-wholecar-calculator-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 3283587, + "p95": 3260335, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 3144075, + "p50": 2998750, + "p90": 3231270, + "parent": "peddle-go-iaa-calculator-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 991685, + "p95": 982025, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 952700, + "p50": 939300, + "p90": 969950, + "parent": "peddle-go-manheim-wholecar-api-calculator-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 23774824, + "p95": 20039599.99999999, + "callRate": 0.008123249299719889, + "callCount": 29, + "p75": 10569400, + "p50": 9764300, + "p90": 13348979.999999996, + "parent": "carrier-transport-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 60428224.00000033, + "p95": 869909.9999999999, + "callRate": 0.039775910364145656, + "callCount": 142, + "p75": 729450, + "p50": 622950, + "p90": 819480, + "parent": "universal-marketing-message-listener-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 12476100, + "p95": 12476100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 12476100, + "p50": 12476100, + "p90": 12476100, + "parent": "pub-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 20416062.00000002, + "p95": 9142450, + "callRate": 0.015406162464985995, + "callCount": 55, + "p75": 8128050, + "p50": 7541500, + "p90": 8633200, + "parent": "peddle-go-bid-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 5080200, + "p95": 5080200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 5080200, + "p50": 5080200, + "p90": 5080200, + "parent": "peddle-go-bid-service-development", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 1495100, + "p95": 1495100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 1495100, + "p50": 1495100, + "p90": 1495100, + "parent": "buyer-service", + "child": "carrier-transport-message-listener-service" + }, + { + "errorRate": 0, + "p99": 13011360, + "p95": 12959200, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 12698400, + "p50": 5159200, + "p90": 12894000, + "parent": "identity-provider-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 13282312, + "p95": 13121960, + "callRate": 0.0025210084033613447, + "callCount": 9, + "p75": 12671000, + "p50": 5902300, + "p90": 12921520, + "parent": "universal-salesforce-sync-message-listener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 23080803.999999996, + "p95": 17955554.999999993, + "callRate": 0.0067226890756302525, + "callCount": 24, + "p75": 13047600, + "p50": 8329400, + "p90": 14396600, + "parent": "comm-proxy-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 14564232, + "p95": 14558760, + "callRate": 0.005322128851540616, + "callCount": 19, + "p75": 12124150, + "p50": 11923300, + "p90": 13018720, + "parent": "finance-receivable-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 5657019.000000009, + "p95": 1440295, + "callRate": 0.7557422969187675, + "callCount": 2698, + "p75": 1230800, + "p50": 1158400, + "p90": 1356360, + "parent": "uni-feed-event-integration-daemon-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 25092770, + "p95": 25065050, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 24926450, + "p50": 24753200, + "p90": 25030400, + "parent": "buyer-service-staging", + "child": "finance-company-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 173258200, + "p95": 159705000, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 91939000, + "p50": 12630700, + "p90": 142763500, + "parent": "peddle-offer-calculation-service-development", + "child": "peddle-offer-calculation-message-listener-service-development" + }, + { + "errorRate": 0, + "p99": 8332701, + "p95": 7948579.999999998, + "callRate": 0.029131652661064426, + "callCount": 104, + "p75": 6789200, + "p50": 6146400, + "p90": 7172700, + "parent": "uni-salesforce-resync-daemon-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 13148131.999999998, + "p95": 13064660, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 12641350, + "p50": 12459300, + "p90": 12960320, + "parent": "buy-campaign-instant-bid-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 74991367, + "p95": 42876055, + "callRate": 0.012324929971988795, + "callCount": 44, + "p75": 1814825, + "p50": 1568550, + "p90": 24513000.000000067, + "parent": "charity-service-development", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 4421100, + "p95": 4421100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4421100, + "p50": 4421100, + "p90": 4421100, + "parent": "finance-company-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 2106165.999999998, + "p95": 1301380, + "callRate": 0.7683473389355743, + "callCount": 2743, + "p75": 1118250, + "p50": 1078100, + "p90": 1192780.0000000002, + "parent": "uni-salesforce-event-integration-daemon-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 8039340, + "p95": 7710379.999999999, + "callRate": 0.0070028011204481795, + "callCount": 25, + "p75": 6835400, + "p50": 5964700, + "p90": 7558220, + "parent": "peddle-go-iaa-hybrid-calculator-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 43648071.00000001, + "p95": 13030384.999999993, + "callRate": 0.07563025210084033, + "callCount": 270, + "p75": 3946150, + "p50": 1171550, + "p90": 9278370, + "parent": "buy-purchase-service", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 15832900, + "p95": 15726500, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 15194500, + "p50": 14529500, + "p90": 15593500, + "parent": "auc-counter-bid-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 59032565, + "p95": 57132825, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 47634125, + "p50": 35760750, + "p90": 54758150, + "parent": "identity-api-gateway-service-development", + "child": "peddle-go-iaa-calculator-service-development" + }, + { + "errorRate": 0, + "p99": 73602474.99999806, + "p95": 12993954.999999998, + "callRate": 0.9109243697478991, + "callCount": 3252, + "p75": 4488450, + "p50": 2322900, + "p90": 9679230.000000002, + "parent": "seller-instant-offer-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 51498818.00000004, + "p95": 1741965, + "callRate": 0.013445378151260505, + "callCount": 48, + "p75": 1114700, + "p50": 881550, + "p90": 1540880, + "parent": "comms-messaging-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 27989125.000000004, + "p95": 24070825, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 9317800, + "p50": 8797850, + "p90": 19172950, + "parent": "comms-action-link-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 5821009.999999984, + "p95": 2219895.0000000005, + "callRate": 0.02296918767507003, + "callCount": 82, + "p75": 1887775, + "p50": 1080950, + "p90": 2154140.0000000005, + "parent": "uni-segment-event-integration-daemon", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 73218490.99999999, + "p95": 51740054.999999955, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 1514900, + "p50": 1024650, + "p90": 24892009.999999985, + "parent": "peddle-go-auction-net-wholecar-calculator-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 18622544, + "p95": 18177520, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 15952400, + "p50": 12809600, + "p90": 17621240, + "parent": "remkt-shadow-auction-net-salvage-calculator-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 65912815.00000003, + "p95": 47108900, + "callRate": 0.02969187675070028, + "callCount": 106, + "p75": 13420350, + "p50": 12719700, + "p90": 40015100, + "parent": "marketing-frontend", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 6554532.999999969, + "p95": 958059.999999997, + "callRate": 0.10476190476190476, + "callCount": 374, + "p75": 567175, + "p50": 508750, + "p90": 651200, + "parent": "seller-offer-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 2405116.999999997, + "p95": 1096145, + "callRate": 0.8549019607843137, + "callCount": 3052, + "p75": 730550, + "p50": 624650, + "p90": 963100, + "parent": "identity-api-gateway-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 17404130.000000052, + "p95": 10011225, + "callRate": 0.21176470588235294, + "callCount": 756, + "p75": 9286775, + "p50": 8896200, + "p90": 9637850, + "parent": "seller-instant-offer-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 36215214.00000005, + "p95": 1258735, + "callRate": 4.445378151260504, + "callCount": 15870, + "p75": 1038700, + "p50": 950050, + "p90": 1183800, + "parent": "finance-intacct-message-listener-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 11534700, + "p95": 8262720.000000017, + "callRate": 0.020168067226890758, + "callCount": 72, + "p75": 1016550, + "p50": 893650, + "p90": 5243479.999999994, + "parent": "uni-salesforce-resync-daemon-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 1782060448, + "p95": 754027979.9999998, + "callRate": 0.01484593837535014, + "callCount": 53, + "p75": 13548700, + "p50": 11584300, + "p90": 576982860, + "parent": "identity-api-gateway-service", + "child": "finance-receivable-service" + }, + { + "errorRate": 0, + "p99": 15900314, + "p95": 15603570, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 14119850, + "p50": 12265200, + "p90": 15232640, + "parent": "fin-frost-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 13054580.000000004, + "p95": 8744320, + "callRate": 0.9156862745098039, + "callCount": 3269, + "p75": 6672300, + "p50": 6453000, + "p90": 7712480.000000004, + "parent": "peddle-go-bid-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 905364.9999999999, + "p95": 819219.9999999999, + "callRate": 0.0907563025210084, + "callCount": 324, + "p75": 677800, + "p50": 585800, + "p90": 733980, + "parent": "peddle-go-copart-hybrid-calculator-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 24506400, + "p95": 24506400, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 24506400, + "p50": 24506400, + "p90": 24506400, + "parent": "buyer-message-listener-service", + "child": "seller-offer-assignment-service" + }, + { + "errorRate": 0, + "p99": 4254448.000000006, + "p95": 864479.9999999999, + "callRate": 1.888515406162465, + "callCount": 6742, + "p75": 737275, + "p50": 668950, + "p90": 791990, + "parent": "seller-message-listener-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 174582860.9999984, + "p95": 19029504.99999999, + "callRate": 0.0907563025210084, + "callCount": 324, + "p75": 4960225, + "p50": 2182950, + "p90": 12311279.999999981, + "parent": "peddle-go-manheim-salvage-api-calculator-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 12640200, + "p95": 12640200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 12640200, + "p50": 12640200, + "p90": 12640200, + "parent": "car-user-company-connection-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 6388028, + "p95": 6291740, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 5810300, + "p50": 5208500, + "p90": 6171380, + "parent": "uni-salesforce-outbound-listener-service-staging", + "child": "seller-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 13191080, + "p95": 13133800, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 12847400, + "p50": 12489400, + "p90": 13062200, + "parent": "uni-salesforce-event-integration-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 12991092, + "p95": 12629060, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 10818900, + "p50": 8556200, + "p90": 12176520, + "parent": "universal-salesforce-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 3281362.0000000014, + "p95": 2459714.9999999995, + "callRate": 0.20784313725490197, + "callCount": 742, + "p75": 862775, + "p50": 711200, + "p90": 1320120, + "parent": "auc-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 4294900, + "p95": 4294900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4294900, + "p50": 4294900, + "p90": 4294900, + "parent": "uni-system-notification-platform-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 120044029.99999984, + "p95": 8088959.999999955, + "callRate": 0.5005602240896359, + "callCount": 1787, + "p75": 4130300, + "p50": 3909500, + "p90": 4406120, + "parent": "identity-api-gateway-service", + "child": "universal-location-service" + }, + { + "errorRate": 0, + "p99": 95094999.99999999, + "p95": 45312599.99999994, + "callRate": 0.004761904761904762, + "callCount": 17, + "p75": 12677300, + "p50": 8634900, + "p90": 22167460.000000007, + "parent": "buyer-message-listener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 13169574, + "p95": 12830670, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 11136150, + "p50": 9018000, + "p90": 12407040, + "parent": "pub-account-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 4811800, + "p95": 4811800, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4811800, + "p50": 4811800, + "p90": 4811800, + "parent": "uni-salesforce-outbound-listener-service-development", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 96104000, + "p95": 96104000, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 96104000, + "p50": 96104000, + "p90": 96104000, + "parent": "auc-counter-bid-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 57086618.99999996, + "p95": 8699590, + "callRate": 0.16750700280112044, + "callCount": 598, + "p75": 5751650, + "p50": 4784450, + "p90": 7506240.000000002, + "parent": "carrier-message-listener-service-development", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 15769315.999999998, + "p95": 15020179.999999998, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 12723850, + "p50": 6306100, + "p90": 14083760, + "parent": "valuations-sales-data-import-message-listener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 2539339, + "p95": 2534695, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 2511475, + "p50": 2488500, + "p90": 2528890, + "parent": "identity-api-gateway-service-staging", + "child": "peddle-go-manheim-wholecar-api-calculator-service-staging" + }, + { + "errorRate": 0, + "p99": 41764883.9999999, + "p95": 13627999.999999994, + "callRate": 0.9369747899159664, + "callCount": 3345, + "p75": 10386800, + "p50": 9876700, + "p90": 11087420, + "parent": "identity-api-gateway-service", + "child": "identity-provider-service" + }, + { + "errorRate": 0, + "p99": 910600, + "p95": 910600, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 910600, + "p50": 910600, + "p90": 910600, + "parent": "peddle-go-manheim-wholecar-api-calculator-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 22667294.99999999, + "p95": 11857484.999999994, + "callRate": 0.11204481792717087, + "callCount": 400, + "p75": 4118725, + "p50": 2473850, + "p90": 7833600.000000004, + "parent": "pub-daemon", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 59267636, + "p95": 57622579.99999999, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 49397300, + "p50": 39130550, + "p90": 55566260, + "parent": "identity-external-api-gateway-service", + "child": "auc-service" + }, + { + "errorRate": 0, + "p99": 897330, + "p95": 876650, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 773250, + "p50": 644000, + "p90": 850800, + "parent": "comm-daemon-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 14725400, + "p95": 14504600, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 13644725, + "p50": 9100700, + "p90": 14228600, + "parent": "buy-purchase-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 15970424, + "p95": 14837719.999999996, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12230075, + "p50": 8160250, + "p90": 13421839.999999998, + "parent": "finance-company-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 12833831.999999585, + "p95": 4306099.999999995, + "callRate": 0.027170868347338936, + "callCount": 97, + "p75": 1601600, + "p50": 1557100, + "p90": 1710860, + "parent": "seller-account-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 708780, + "p95": 708300, + "callRate": 0.004481792717086834, + "callCount": 16, + "p75": 696800, + "p50": 585550, + "p90": 707250, + "parent": "peddle-go-merged-salvage-calculator-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 92722107.00000001, + "p95": 61215734.99999991, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12961650, + "p50": 8383050, + "p90": 21832769.99999997, + "parent": "buy-campaign-instant-bid-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 50710648.000000015, + "p95": 16809379.999999944, + "callRate": 0.0546218487394958, + "callCount": 195, + "p75": 5724600, + "p50": 1770900, + "p90": 13209940, + "parent": "finance-receivable-message-listener-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 68068292.00000003, + "p95": 7245540.000000026, + "callRate": 0.08263305322128851, + "callCount": 295, + "p75": 1926000, + "p50": 1234500, + "p90": 3006800.000000001, + "parent": "buyer-bid-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 5660187.999999999, + "p95": 5613340, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 5379100, + "p50": 5131750, + "p90": 5554780, + "parent": "carrier-service-development", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 12494957, + "p95": 12484385, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 12431525, + "p50": 9255750, + "p90": 12471170, + "parent": "peddle-go-manheim-wholecar-api-calculator-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 21507228.000000004, + "p95": 17822139.999999993, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 12179950, + "p50": 7805950, + "p90": 13933030, + "parent": "carrier-transport-message-listener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 27255845, + "p95": 27103225, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 26391700, + "p50": 19798500, + "p90": 26912450, + "parent": "peddle-go-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 681730297, + "p95": 505206879.9999993, + "callRate": 0.00784313725490196, + "callCount": 28, + "p75": 40719100, + "p50": 19631100, + "p90": 135609350.00000006, + "parent": "peddle-go-copart-hybrid-calculator-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 8515565, + "p95": 7672675, + "callRate": 0.02969187675070028, + "callCount": 106, + "p75": 6516000, + "p50": 6304450, + "p90": 7135700, + "parent": "carrier-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 8849985, + "p95": 8782725, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 8446425, + "p50": 7743250, + "p90": 8698650, + "parent": "auc-service", + "child": "universal-salesforce-sync-message-listener-service" + }, + { + "errorRate": 0, + "p99": 63941466, + "p95": 63386930, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 60614250, + "p50": 57148400, + "p90": 62693760, + "parent": "peddle-go-bid-service-staging", + "child": "peddle-go-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 23288400, + "p95": 23288400, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 23288400, + "p50": 23288400, + "p90": 23288400, + "parent": "identity-api-gateway-service-staging", + "child": "remarketing-peddle-calculator-service-staging" + }, + { + "errorRate": 0, + "p99": 1158240.0000000007, + "p95": 1073800, + "callRate": 0.0226890756302521, + "callCount": 81, + "p75": 937200, + "p50": 833600, + "p90": 1023900, + "parent": "remkt-shadow-manheim-salvage-api-calculator-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 10252018.000000004, + "p95": 7670009.999999997, + "callRate": 1.3400560224089635, + "callCount": 4784, + "p75": 5986325, + "p50": 5747250, + "p90": 6611959.999999999, + "parent": "peddle-offer-calculation-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 7787434, + "p95": 7769970, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 7682650, + "p50": 7573500, + "p90": 7748140, + "parent": "auc-service", + "child": "uni-system-notification-platform-daemon" + }, + { + "errorRate": 0, + "p99": 12827571.999999998, + "p95": 12135060, + "callRate": 0.0056022408963585435, + "callCount": 20, + "p75": 10750150, + "p50": 10087750, + "p90": 11194720.000000002, + "parent": "buyer-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 12368900, + "p95": 12342500, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 11831100, + "p50": 8924900, + "p90": 12309500, + "parent": "uni-segment-event-integration-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 16005425, + "p95": 15874325, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 15218825, + "p50": 14399450, + "p90": 15710450, + "parent": "uni-aws-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 11841722, + "p95": 11209409.999999998, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 8047850, + "p50": 4095900, + "p90": 10419020, + "parent": "buy-campaign-instant-bid-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 708892143.9999999, + "p95": 195172719.99999943, + "callRate": 0.004761904761904762, + "callCount": 17, + "p75": 11844700, + "p50": 3935800, + "p90": 22817080.000000007, + "parent": "comms-messaging-message-listener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 50, + "p99": 45206869, + "p95": 43573145, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 35404525, + "p50": 25193750, + "p90": 41530990, + "parent": "peddle-messaging-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 2042000, + "p95": 2042000, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 2042000, + "p50": 2042000, + "p90": 2042000, + "parent": "buyer-service", + "child": "buy-campaign-instant-bid-service" + }, + { + "errorRate": 0, + "p99": 16186900, + "p95": 16186900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 16186900, + "p50": 16186900, + "p90": 16186900, + "parent": "identity-api-gateway-service-staging", + "child": "remkt-shadow-peddle-calculator-service-staging" + }, + { + "errorRate": 0, + "p99": 1192573, + "p95": 903829.9999999999, + "callRate": 0.0907563025210084, + "callCount": 324, + "p75": 729375, + "p50": 674850, + "p90": 805759.9999999999, + "parent": "peddle-go-merged-salvage-calculator-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 679117957.0000001, + "p95": 357818424.9999994, + "callRate": 0.00784313725490196, + "callCount": 28, + "p75": 17093950, + "p50": 7593500, + "p90": 76574890, + "parent": "remkt-shadow-copart-calculator-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 707156.9999999999, + "p95": 702585, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 679725, + "p50": 668800, + "p90": 696870, + "parent": "peddle-go-auction-net-wholecar-calculator-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 1987331.9999999998, + "p95": 1895459.9999999998, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 1436100, + "p50": 1174850, + "p90": 1780620.0000000002, + "parent": "seller-offer-service", + "child": "charity-message-listener-service" + }, + { + "errorRate": 0, + "p99": 72655300, + "p95": 72655300, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 72655300, + "p50": 72655300, + "p90": 72655300, + "parent": "identity-api-gateway-service-staging", + "child": "remkt-shadow-merged-salvage-calculator-service-staging" + }, + { + "errorRate": 0, + "p99": 6631859.000000008, + "p95": 2442785, + "callRate": 4.8593837535014, + "callCount": 17348, + "p75": 1315325, + "p50": 1217800, + "p90": 1435760.0000000002, + "parent": "identity-provider-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 11105380.000000006, + "p95": 5587300, + "callRate": 0.0058823529411764705, + "callCount": 21, + "p75": 1092400, + "p50": 1064200, + "p90": 1321600, + "parent": "seller-instant-offer-service", + "child": "pub-daemon" + }, + { + "errorRate": 0, + "p99": 142498511, + "p95": 138643450, + "callRate": 0.0061624649859943975, + "callCount": 22, + "p75": 80542825, + "p50": 73270850, + "p90": 134349220.00000006, + "parent": "comms-cyborg-service-staging", + "child": "seller-offer-assignment-service-staging" + }, + { + "errorRate": 0, + "p99": 6402794, + "p95": 6277970, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 5898875, + "p50": 5705600, + "p90": 6121940, + "parent": "carrier-site", + "child": "seller-offer-legacy-service" + }, + { + "errorRate": 0, + "p99": 20487878.00000001, + "p95": 11446459.99999999, + "callRate": 0.006442577030812325, + "callCount": 23, + "p75": 1123800, + "p50": 900300, + "p90": 4305000.000000002, + "parent": "uni-segment-event-integration-daemon-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 10082196, + "p95": 9813380, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 8469300, + "p50": 6789200, + "p90": 9477360, + "parent": "remkt-shadow-copart-calculator-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 14928247, + "p95": 14333634.999999998, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12059925, + "p50": 8113200, + "p90": 13590370, + "parent": "uni-salesforce-outbound-listener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 12568628, + "p95": 12259940, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 10716500, + "p50": 8787200, + "p90": 11874080, + "parent": "uni-vehicle-import-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 13158680, + "p95": 13145800, + "callRate": 0.0030812324929971988, + "callCount": 11, + "p75": 2453200, + "p50": 805200, + "p90": 13129700, + "parent": "auc-lcu-daemon-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 100, + "p95": 100, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 100, + "p50": 100, + "p90": 100, + "parent": "identity-api-gateway-service-development", + "child": "charity-site-development" + }, + { + "errorRate": 0, + "p99": 39687593.99999999, + "p95": 35279969.999999985, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 13241850, + "p50": 3788950, + "p90": 29770440.000000007, + "parent": "finance-payable-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 8379212, + "p95": 8252980, + "callRate": 0.0070028011204481795, + "callCount": 25, + "p75": 7139500, + "p50": 6241900, + "p90": 7725660.000000001, + "parent": "remkt-shadow-iaa-calculator-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 1337676, + "p95": 979200, + "callRate": 0.7028011204481792, + "callCount": 2509, + "p75": 765300, + "p50": 673200, + "p90": 928280.0000000002, + "parent": "seller-offer-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 8683565.000000022, + "p95": 6213120, + "callRate": 0.15518207282913166, + "callCount": 554, + "p75": 2393450, + "p50": 2082150, + "p90": 2817119.9999999995, + "parent": "uni-salesforce-outbound-listener-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 636191, + "p95": 634155, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 623975, + "p50": 611250, + "p90": 631610, + "parent": "publisher-offer-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 8577214.999999998, + "p95": 6786474.999999996, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 2514350, + "p50": 2447450, + "p90": 4548049.999999999, + "parent": "charity-message-listener-service-development", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 2378871.9999999953, + "p95": 974880.0000000002, + "callRate": 0.08543417366946779, + "callCount": 305, + "p75": 835800, + "p50": 755200, + "p90": 896820, + "parent": "comms-messaging-message-listener-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 12120367.999999996, + "p95": 4242399.999999998, + "callRate": 0.13977591036414566, + "callCount": 499, + "p75": 2053800, + "p50": 1886500, + "p90": 2321040, + "parent": "finance-data-sync-message-listener-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 31029492884, + "p95": 30932153220, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 30445454900, + "p50": 1296117200, + "p90": 30810478640, + "parent": "identity-api-gateway-service-development", + "child": "buyer-bid-service-development" + }, + { + "errorRate": 0, + "p99": 1731359.9999999998, + "p95": 1641599.9999999995, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 1192800, + "p50": 999550, + "p90": 1529400, + "parent": "buy-purchase-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 6007500, + "p95": 6007500, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 6007500, + "p50": 6007500, + "p90": 6007500, + "parent": "buyer-service", + "child": "charity-message-listener-service" + }, + { + "errorRate": 0, + "p99": 5598626, + "p95": 1447025, + "callRate": 0.2134453781512605, + "callCount": 762, + "p75": 1318700, + "p50": 1278300, + "p90": 1365900, + "parent": "identity-api-gateway-service-development", + "child": "uni-aws-service-development" + }, + { + "errorRate": 0, + "p99": 64809300, + "p95": 64809300, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 64809300, + "p50": 64809300, + "p90": 64809300, + "parent": "identity-api-gateway-service-staging", + "child": "peddle-go-iaa-hybrid-calculator-service-staging" + }, + { + "errorRate": 0, + "p99": 4780900, + "p95": 4780900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4780900, + "p50": 4780900, + "p90": 4780900, + "parent": "auc-counter-bid-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 62225432, + "p95": 60777559.99999999, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 53538200, + "p50": 33550550, + "p90": 58967720, + "parent": "marketing-frontend-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 59894699, + "p95": 59877495, + "callRate": 0.005042016806722689, + "callCount": 18, + "p75": 5536500, + "p50": 1148100, + "p90": 22927420.000000037, + "parent": "cha-offer-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 14321377, + "p95": 14257685, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 13939225, + "p50": 13541150, + "p90": 14178070, + "parent": "universal-vehicle-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 643973814.9999998, + "p95": 210829639.99999982, + "callRate": 0.0067226890756302525, + "callCount": 24, + "p75": 54131300, + "p50": 33319300, + "p90": 128208889.99999997, + "parent": "carrier-site", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 15116237, + "p95": 15065585, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 13820775, + "p50": 7970750, + "p90": 15002270, + "parent": "uni-vehicle-readonly-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 33568625.999999925, + "p95": 9697430, + "callRate": 0.014005602240896359, + "callCount": 50, + "p75": 8088600, + "p50": 6818500, + "p90": 9010050, + "parent": "uni-segment-event-integration-daemon", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 9478098.000000004, + "p95": 8119769.999999998, + "callRate": 0.016526610644257703, + "callCount": 59, + "p75": 6734550, + "p50": 6211500, + "p90": 7479460, + "parent": "peddle-offer-calculation-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 214966385.00000006, + "p95": 155636895, + "callRate": 0.008963585434173669, + "callCount": 32, + "p75": 54238825, + "p50": 26611150, + "p90": 86026820, + "parent": "identity-api-gateway-service-development", + "child": "charity-service-development" + }, + { + "errorRate": 0, + "p99": 50133970, + "p95": 41352834.99999994, + "callRate": 0.0067226890756302525, + "callCount": 24, + "p75": 12406850, + "p50": 7824950, + "p90": 17371169.999999996, + "parent": "remkt-shadow-manheim-salvage-api-calculator-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 887200, + "p95": 873600, + "callRate": 0.005042016806722689, + "callCount": 18, + "p75": 856750, + "p50": 580900, + "p90": 865700, + "parent": "remkt-shadow-merged-salvage-calculator-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 509488927.99999976, + "p95": 393751039.9999997, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 42036550, + "p50": 8573100, + "p90": 249078680.00000015, + "parent": "identity-api-gateway-service-development", + "child": "auc-service-development" + }, + { + "errorRate": 0, + "p99": 16821676.000000015, + "p95": 7489470, + "callRate": 0.006442577030812325, + "callCount": 23, + "p75": 1877500, + "p50": 1620200, + "p90": 6948100, + "parent": "auc-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 2845900, + "p95": 2845900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 2845900, + "p50": 2845900, + "p90": 2845900, + "parent": "identity-api-gateway-service-staging", + "child": "peddle-go-auction-net-wholecar-calculator-service-staging" + }, + { + "errorRate": 0, + "p99": 623991828, + "p95": 552200339.9999999, + "callRate": 0.0025210084033613447, + "callCount": 9, + "p75": 31235200, + "p50": 6428800, + "p90": 462460980.00000006, + "parent": "peddle-offer-calculation-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 13961783, + "p95": 13756115, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12354275, + "p50": 8251950, + "p90": 13499030, + "parent": "pdl-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 12946070, + "p95": 12295949.999999998, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 9045350, + "p50": 4982100, + "p90": 11483300, + "parent": "uni-llm-integration-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 38208600.00000001, + "p95": 29262599.99999997, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 14269500, + "p50": 7823400, + "p90": 18080099.999999993, + "parent": "buy-classic-next-generation-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 1257400, + "p95": 1132750, + "callRate": 0.014285714285714285, + "callCount": 51, + "p75": 980200, + "p50": 890000, + "p90": 1038500, + "parent": "buyer-message-listener-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 15545364.999999935, + "p95": 10280830, + "callRate": 0.08515406162464986, + "callCount": 304, + "p75": 8248200, + "p50": 7508000, + "p90": 9754990, + "parent": "peddle-offer-calculation-service", + "child": "peddle-offer-calculation-message-listener-service" + }, + { + "errorRate": 0, + "p99": 78091526.00000001, + "p95": 60084829.99999995, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 22522825, + "p50": 6351100, + "p90": 37576459.999999985, + "parent": "buyer-beta-legacy-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 5078429.999999935, + "p95": 1247225, + "callRate": 0.19215686274509805, + "callCount": 686, + "p75": 861600, + "p50": 798750, + "p90": 956500, + "parent": "buyer-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 24861811.999999993, + "p95": 21338800, + "callRate": 0.038375350140056025, + "callCount": 137, + "p75": 19644700, + "p50": 18396500, + "p90": 20849980, + "parent": "comms-messaging-message-listener-service-staging", + "child": "uni-system-notification-platform-daemon-staging" + }, + { + "errorRate": 0, + "p99": 85629350, + "p95": 83047625, + "callRate": 0.007282913165266107, + "callCount": 26, + "p75": 71372950, + "p50": 68362600, + "p90": 78977850, + "parent": "comms-cyborg-service-staging", + "child": "peddle-messaging-service-staging" + }, + { + "errorRate": 0, + "p99": 28926418.999999996, + "p95": 27628530, + "callRate": 0.0061624649859943975, + "callCount": 22, + "p75": 24640150, + "p50": 23900350, + "p90": 25121310, + "parent": "seller-offer-legacy-service", + "child": "seller-legacy-service" + }, + { + "errorRate": 0, + "p99": 6235197, + "p95": 5484994.999999998, + "callRate": 0.011204481792717087, + "callCount": 40, + "p75": 918450, + "p50": 855800, + "p90": 1461360.0000000063, + "parent": "pub-external-offer-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 1979330, + "p95": 1815050, + "callRate": 0.004481792717086834, + "callCount": 16, + "p75": 1676500, + "p50": 1199200, + "p90": 1741800, + "parent": "peddle-go-auction-net-wholecar-calculator-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 658200, + "p95": 658200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 658200, + "p50": 658200, + "p90": 658200, + "parent": "comms-nlp-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 12780990, + "p95": 12101349.999999998, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 8703150, + "p50": 4455400, + "p90": 11251800, + "parent": "car-user-company-connection-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 4957200, + "p95": 4957200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4957200, + "p50": 4957200, + "p90": 4957200, + "parent": "seller-account-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 14942115, + "p95": 14847775, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 14376075, + "p50": 13786450, + "p90": 14729850, + "parent": "comms-messaging-service", + "child": "uni-system-notification-platform-daemon" + }, + { + "errorRate": 0, + "p99": 406759416, + "p95": 391147880, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 313090200, + "p50": 215518100, + "p90": 371633460, + "parent": "identity-api-gateway-service-development", + "child": "peddle-go-auction-net-salvage-calculator-service-development" + }, + { + "errorRate": 0, + "p99": 1661108800, + "p95": 1661108800, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 1661108800, + "p50": 1661108800, + "p90": 1661108800, + "parent": "identity-external-api-gateway-service", + "child": "cha-offer-service" + }, + { + "errorRate": 0, + "p99": 29588920.000000004, + "p95": 22373799.999999978, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 2835800, + "p50": 1536900, + "p90": 13354899.999999993, + "parent": "identity-external-api-gateway-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 1750480095.0000002, + "p95": 1064138474.999998, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12703425, + "p50": 8260700, + "p90": 206211449.9999993, + "parent": "seller-account-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 1258463.0000000002, + "p95": 1121400, + "callRate": 12.187114845938375, + "callCount": 43508, + "p75": 1002800, + "p50": 859250, + "p90": 1085500, + "parent": "peddle-offer-calculation-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 23352500, + "p95": 23352500, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 23352500, + "p50": 23352500, + "p90": 23352500, + "parent": "uni-feed-service", + "child": "carrier-transport-message-listener-service" + }, + { + "errorRate": 0, + "p99": 239395200, + "p95": 239395200, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 239395200, + "p50": 239395200, + "p90": 239395200, + "parent": "buy-limit-calculation-daemon", + "child": "buyer-service" + }, + { + "errorRate": 0, + "p99": 5455800, + "p95": 5455800, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 5455800, + "p50": 5455800, + "p90": 5455800, + "parent": "remkt-shadow-copart-calculator-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 11884772, + "p95": 11388259.999999998, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 9528500, + "p50": 8274600, + "p90": 10767620, + "parent": "buyer-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 1865148.9999999998, + "p95": 1293159.999999999, + "callRate": 0.06386554621848739, + "callCount": 228, + "p75": 1101050, + "p50": 945500, + "p90": 1171710, + "parent": "comms-action-link-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 8680458, + "p95": 5275269.999999999, + "callRate": 0.8904761904761904, + "callCount": 3179, + "p75": 4050000, + "p50": 3408400, + "p90": 4684840, + "parent": "carrier-service", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 647713540.0000002, + "p95": 234859724.9999996, + "callRate": 0.00784313725490196, + "callCount": 28, + "p75": 16320025, + "p50": 7398200, + "p90": 61756050, + "parent": "peddle-go-iaa-calculator-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 142109300, + "p95": 142109300, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 142109300, + "p50": 142109300, + "p90": 142109300, + "parent": "identity-api-gateway-service-staging", + "child": "remkt-shadow-copart-calculator-service-staging" + }, + { + "errorRate": 0, + "p99": 9930100, + "p95": 9930100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 9930100, + "p50": 9930100, + "p90": 9930100, + "parent": "identity-external-api-gateway-service-development", + "child": "uni-salesforce-outbound-listener-service-development" + }, + { + "errorRate": 0, + "p99": 4849900, + "p95": 4849900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4849900, + "p50": 4849900, + "p90": 4849900, + "parent": "universal-vehicle-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 440335938.9999999, + "p95": 287341254.9999999, + "callRate": 0.5529411764705883, + "callCount": 1974, + "p75": 175557925, + "p50": 16086500, + "p90": 236274540.00000003, + "parent": "seller-offer-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 15401988, + "p95": 14910890, + "callRate": 0.006442577030812325, + "callCount": 23, + "p75": 12488500, + "p50": 12058200, + "p90": 13807500, + "parent": "remkt-shadow-peddle-calculator-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 13089212, + "p95": 13018060, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 12662300, + "p50": 12217600, + "p90": 12929120, + "parent": "uni-system-notification-platform-daemon-staging", + "child": "uni-segment-event-integration-daemon-staging" + }, + { + "errorRate": 0, + "p99": 13331855.999999998, + "p95": 5443459.999999992, + "callRate": 0.1, + "callCount": 357, + "p75": 3169100, + "p50": 1138800, + "p90": 4494620.000000002, + "parent": "carrier-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 58493102, + "p95": 54569109.99999999, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 34949150, + "p50": 10424200, + "p90": 49664120, + "parent": "identity-api-gateway-service-staging", + "child": "comms-action-link-service-staging" + }, + { + "errorRate": 0, + "p99": 287533660, + "p95": 282841500, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 259380700, + "p50": 230054700, + "p90": 276976300, + "parent": "identity-api-gateway-service-development", + "child": "remkt-shadow-peddle-calculator-service-development" + }, + { + "errorRate": 0, + "p99": 66555139.99999997, + "p95": 52633699.999999955, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 11990300, + "p50": 11933800, + "p90": 35231900.00000002, + "parent": "car-user-company-connection-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 340773462, + "p95": 337573309.99999994, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 321572550, + "p50": 301571600, + "p90": 333573120, + "parent": "seller-offer-service", + "child": "seller-message-listener-service" + }, + { + "errorRate": 0, + "p99": 30890019.99999999, + "p95": 18580099.999999978, + "callRate": 0.004201680672268907, + "callCount": 15, + "p75": 10095550, + "p50": 9135400, + "p90": 11846260, + "parent": "carrier-transport-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 35976279.999999985, + "p95": 9817200, + "callRate": 0.017086834733893556, + "callCount": 61, + "p75": 3610300, + "p50": 1433500, + "p90": 7754300, + "parent": "peddle-go-auction-net-salvage-calculator-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 46071573.99999999, + "p95": 41928669.999999985, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 25636500, + "p50": 20947900, + "p90": 36750040, + "parent": "identity-api-gateway-service-staging", + "child": "auc-service-staging" + }, + { + "errorRate": 0, + "p99": 5374920, + "p95": 4979600, + "callRate": 0.009243697478991597, + "callCount": 33, + "p75": 3869500, + "p50": 1159100, + "p90": 4796460, + "parent": "uni-photo-service", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 30117137, + "p95": 29684885, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 28462925, + "p50": 25349350, + "p90": 29144570, + "parent": "carrier-legacy-service", + "child": "universal-salesforce-classic-service" + }, + { + "errorRate": 0, + "p99": 12550152, + "p95": 12541960, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 12501000, + "p50": 12334700, + "p90": 12531720, + "parent": "buy-campaign-instant-bid-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 1265588.000000001, + "p95": 934320, + "callRate": 0.9005602240896359, + "callCount": 3215, + "p75": 809950, + "p50": 664100, + "p90": 885200, + "parent": "universal-location-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 23318391.000000034, + "p95": 7957439.999999999, + "callRate": 0.04873949579831933, + "callCount": 174, + "p75": 1912525, + "p50": 1704950, + "p90": 3610220.0000000093, + "parent": "finance-data-sync-message-listener-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 14836436.000000011, + "p95": 8333210, + "callRate": 0.7557422969187675, + "callCount": 2698, + "p75": 6488450, + "p50": 5799400, + "p90": 7739310.000000001, + "parent": "peddle-go-manheim-salvage-api-calculator-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 151517730.00000006, + "p95": 95714250, + "callRate": 0.0030812324929971988, + "callCount": 11, + "p75": 12984200, + "p50": 12199100, + "p90": 25959900, + "parent": "finance-company-message-listener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 14713208.999999987, + "p95": 10135244.99999999, + "callRate": 0.005042016806722689, + "callCount": 18, + "p75": 8244825, + "p50": 7523850, + "p90": 8825730, + "parent": "buy-purchase-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 29243157.000000015, + "p95": 10206769.999999993, + "callRate": 0.23865546218487396, + "callCount": 852, + "p75": 6651525, + "p50": 6390550, + "p90": 8216819.999999999, + "parent": "buyer-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 12957624, + "p95": 12612920, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 10889400, + "p50": 8735000, + "p90": 12182040, + "parent": "buy-classic-next-generation-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 3894642.999999989, + "p95": 2072440.0000000002, + "callRate": 0.02296918767507003, + "callCount": 82, + "p75": 1679850, + "p50": 1598150, + "p90": 1905090.0000000005, + "parent": "identity-api-gateway-service-staging", + "child": "uni-aws-service-staging" + }, + { + "errorRate": 0, + "p99": 13203327, + "p95": 13143434.999999998, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 12843975, + "p50": 12630600, + "p90": 13068570, + "parent": "remkt-shadow-peddle-calculator-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 1287996.0000000005, + "p95": 1125245, + "callRate": 2.581512605042017, + "callCount": 9216, + "p75": 958400, + "p50": 912300, + "p90": 1037600, + "parent": "peddle-offer-calculation-message-listener-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 2947878.999999989, + "p95": 951304.9999999997, + "callRate": 0.011764705882352941, + "callCount": 42, + "p75": 832225, + "p50": 806400, + "p90": 868370, + "parent": "buy-purchase-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 14082360, + "p95": 13868600, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 12799800, + "p50": 12382600, + "p90": 13601400, + "parent": "charity-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 4555500, + "p95": 4555500, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4555500, + "p50": 4555500, + "p90": 4555500, + "parent": "getusedparts-site-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 12216459.99999999, + "p95": 8496050, + "callRate": 0.03669467787114846, + "callCount": 131, + "p75": 6750000, + "p50": 6437300, + "p90": 7301800, + "parent": "peddle-go-message-listener-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 5481838, + "p95": 5478390, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 5461150, + "p50": 5439600, + "p90": 5474080, + "parent": "universal-email-platform-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 113638662.00000004, + "p95": 26738909.999999743, + "callRate": 0.005322128851540616, + "callCount": 19, + "p75": 13042500, + "p50": 12421800, + "p90": 13440300, + "parent": "carrier-transport-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 3242165, + "p95": 3202825, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 3006125, + "p50": 2760250, + "p90": 3153650, + "parent": "peddle-go-manheim-salvage-api-calculator-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 10824751, + "p95": 7290294.999999996, + "callRate": 0.21288515406162464, + "callCount": 760, + "p75": 4319400, + "p50": 3985850, + "p90": 5334540.000000001, + "parent": "peddle-go-copart-calculator-service", + "child": "peddle-go-message-listener-service" + }, + { + "errorRate": 0, + "p99": 16943133, + "p95": 16429664.999999998, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12161675, + "p50": 7904550, + "p90": 15787830, + "parent": "cha-external-offer-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 701908, + "p95": 698740, + "callRate": 0.005322128851540616, + "callCount": 19, + "p75": 642900, + "p50": 522100, + "p90": 685180, + "parent": "identity-provider-message-listener-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 86920676, + "p95": 74896979.99999999, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 14778500, + "p50": 13054100, + "p90": 59867360.00000001, + "parent": "cha-offer-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 114681224, + "p95": 110875720, + "callRate": 0.0025210084033613447, + "callCount": 9, + "p75": 102050500, + "p50": 53076100, + "p90": 106118840, + "parent": "identity-api-gateway-service-staging", + "child": "buyer-site-staging" + }, + { + "errorRate": 0, + "p99": 18299143.99999997, + "p95": 10873045, + "callRate": 0.01904761904761905, + "callCount": 68, + "p75": 9991350, + "p50": 9570150, + "p90": 10399230, + "parent": "seller-instant-offer-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 7602400, + "p95": 7602400, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 7602400, + "p50": 7602400, + "p90": 7602400, + "parent": "identity-api-gateway-service", + "child": "finance-company-service" + }, + { + "errorRate": 0, + "p99": 13046117.999999974, + "p95": 2750400, + "callRate": 0.012044817927170869, + "callCount": 43, + "p75": 1647950, + "p50": 1556800, + "p90": 2619460.0000000005, + "parent": "charity-service-staging", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 8764182.000000017, + "p95": 3482049.999999999, + "callRate": 1.895518207282913, + "callCount": 6767, + "p75": 2271500, + "p50": 2049100, + "p90": 2658640.000000001, + "parent": "peddle-offer-calculation-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 98663795.99999999, + "p95": 69349779.99999997, + "callRate": 0.0025210084033613447, + "callCount": 9, + "p75": 14077600, + "p50": 12179700, + "p90": 32707260.000000015, + "parent": "publisher-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 4450600, + "p95": 4450600, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4450600, + "p50": 4450600, + "p90": 4450600, + "parent": "peddle-go-manheim-salvage-api-calculator-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 12945476, + "p95": 12318179.999999998, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 9181700, + "p50": 5261100, + "p90": 11534060, + "parent": "pub-external-offer-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 12145965.999999996, + "p95": 10208229.999999994, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 4529850, + "p50": 4402600, + "p90": 7786060.000000004, + "parent": "buy-campaign-instant-bid-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 13984324.999999996, + "p95": 9725725, + "callRate": 0.010084033613445379, + "callCount": 36, + "p75": 7965725, + "p50": 7377100, + "p90": 8458150, + "parent": "uni-segment-event-integration-daemon-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 39312367.99999998, + "p95": 15991640, + "callRate": 0.0061624649859943975, + "callCount": 22, + "p75": 12411625, + "p50": 8027450, + "p90": 15504590.000000004, + "parent": "car-user-company-connection-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 4809500, + "p95": 4809500, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4809500, + "p50": 4809500, + "p90": 4809500, + "parent": "finance-company-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 13481506.999999998, + "p95": 12215934.999999998, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 3284000, + "p50": 1241700, + "p90": 10633970, + "parent": "buy-purchase-service-development", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 38402791, + "p95": 34238030, + "callRate": 0.0067226890756302525, + "callCount": 24, + "p75": 29735625, + "p50": 23702300, + "p90": 33064800, + "parent": "buyer-legacy-site", + "child": "buyer-beta-legacy-service" + }, + { + "errorRate": 0, + "p99": 29037152.99999998, + "p95": 14557374.999999998, + "callRate": 0.0061624649859943975, + "callCount": 22, + "p75": 12282500, + "p50": 8106900, + "p90": 12483020, + "parent": "uni-url-shortener-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 17475028, + "p95": 17254340, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 16150900, + "p50": 14771600, + "p90": 16978480, + "parent": "comm-proxy-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 14290324, + "p95": 13942020, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 11795950, + "p50": 7752950, + "p90": 13467760.000000002, + "parent": "fin-frost-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 14750940, + "p95": 14395100, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 12615900, + "p50": 4782800, + "p90": 13950300, + "parent": "uni-url-shortener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 24492327, + "p95": 24434835, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 24147375, + "p50": 23788050, + "p90": 24362970, + "parent": "identity-api-gateway-service-development", + "child": "remkt-shadow-auction-net-salvage-calculator-service-development" + }, + { + "errorRate": 0, + "p99": 12351218, + "p95": 11732489.999999998, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 8638850, + "p50": 4771800, + "p90": 10959080, + "parent": "cha-account-daemon-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 14082155, + "p95": 13702775, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 11805875, + "p50": 9434750, + "p90": 13228550, + "parent": "sel-offer-bid-adjustment-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 3846607.999999999, + "p95": 2945179.999999997, + "callRate": 0.03557422969187675, + "callCount": 127, + "p75": 2472800, + "p50": 2394800, + "p90": 2590800, + "parent": "uni-system-notification-platform-daemon-staging", + "child": "uni-feed-event-integration-daemon-staging" + }, + { + "errorRate": 0, + "p99": 246108425.99999988, + "p95": 133428529.99999978, + "callRate": 0.004201680672268907, + "callCount": 15, + "p75": 29489250, + "p50": 23992200, + "p90": 62379219.99999999, + "parent": "peddle-go-bid-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 12275119, + "p95": 12273595, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 12265975, + "p50": 12256450, + "p90": 12271690, + "parent": "identity-api-gateway-service-staging", + "child": "finance-accrual-service-staging" + }, + { + "errorRate": 0, + "p99": 11859123, + "p95": 11815215, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 11595675, + "p50": 11321250, + "p90": 11760330, + "parent": "peddle-go-copart-hybrid-calculator-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 59697340.000000015, + "p95": 42944300, + "callRate": 0.0030812324929971988, + "callCount": 11, + "p75": 6177300, + "p50": 2196800, + "p90": 22003000, + "parent": "pub-daemon-development", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 8036741, + "p95": 7980105, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 7696925, + "p50": 7342950, + "p90": 7909310, + "parent": "remkt-shadow-merged-salvage-calculator-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 11298764, + "p95": 10401420, + "callRate": 0.0025210084033613447, + "callCount": 9, + "p75": 8594600, + "p50": 8088000, + "p90": 9279740, + "parent": "carrier-transport-message-listener-service", + "child": "uni-system-notification-platform-daemon" + }, + { + "errorRate": 0, + "p99": 1053369, + "p95": 1052445, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 1047825, + "p50": 917250, + "p90": 1051290, + "parent": "buy-purchase-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 12473100, + "p95": 12473100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 12473100, + "p50": 12473100, + "p90": 12473100, + "parent": "identity-provider-message-listener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 52642572.000000335, + "p95": 700439.9999999997, + "callRate": 0.30952380952380953, + "callCount": 1105, + "p75": 509700, + "p50": 441500, + "p90": 603120, + "parent": "id-server-data-cleanup-daemon-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 5292505, + "p95": 5291725, + "callRate": 0.004481792717086834, + "callCount": 16, + "p75": 3527875, + "p50": 835450, + "p90": 5290450, + "parent": "peddle-go-copart-hybrid-calculator-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 9463155, + "p95": 8245525, + "callRate": 0.07058823529411765, + "callCount": 252, + "p75": 7316150, + "p50": 6558800, + "p90": 7879880, + "parent": "uni-system-notification-platform-daemon", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 18666280, + "p95": 18425000, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 17218600, + "p50": 15710600, + "p90": 18123400, + "parent": "identity-external-api-gateway-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 660825080.9999993, + "p95": 216969805.00000042, + "callRate": 0.0056022408963585435, + "callCount": 20, + "p75": 40149450, + "p50": 28616950, + "p90": 66380490.00000019, + "parent": "comms-action-link-frontend", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 12854884, + "p95": 12786820, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 12446500, + "p50": 4944000, + "p90": 12701740, + "parent": "universal-salesforce-sync-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 3251697.9999999995, + "p95": 3020889.999999999, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 1866850, + "p50": 1220600, + "p90": 2732380, + "parent": "car-user-company-connection-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 35677309.00000001, + "p95": 33636545, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 21554525, + "p50": 20432600, + "p90": 30724940.000000004, + "parent": "uni-photo-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 13313076, + "p95": 13278580, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 12539100, + "p50": 5797300, + "p90": 13235460, + "parent": "buyer-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 6971605.000000337, + "p95": 1201849.9999999995, + "callRate": 0.0761904761904762, + "callCount": 272, + "p75": 851225, + "p50": 730300, + "p90": 1105930, + "parent": "peddle-go-bid-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 42442987.99999997, + "p95": 35955100, + "callRate": 0.10840336134453782, + "callCount": 387, + "p75": 27202150, + "p50": 23514000, + "p90": 32089600.000000007, + "parent": "identity-api-gateway-service", + "child": "remarketing-peddle-calculator-service" + }, + { + "errorRate": 0, + "p99": 13444733.999999998, + "p95": 13076470, + "callRate": 0.00392156862745098, + "callCount": 14, + "p75": 12062950, + "p50": 7676300, + "p90": 12726840, + "parent": "buy-limit-calculation-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 12645900, + "p95": 12645900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 12645900, + "p50": 12645900, + "p90": 12645900, + "parent": "id-server-data-cleanup-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 642285528, + "p95": 584554839.9999999, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 295901400, + "p50": 279506900, + "p90": 512391480, + "parent": "identity-api-gateway-service-staging", + "child": "peddle-offer-calculation-service-staging" + }, + { + "errorRate": 0, + "p99": 12495878, + "p95": 11866989.999999998, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 8722550, + "p50": 4792000, + "p90": 11080880, + "parent": "peddle-go-manheim-salvage-api-calculator-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 12913600, + "p95": 12913600, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 12913600, + "p50": 12913600, + "p90": 12913600, + "parent": "uni-llm-integration-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 7216974.999999999, + "p95": 5529525, + "callRate": 0.032492997198879554, + "callCount": 116, + "p75": 4623450, + "p50": 4403400, + "p90": 4920950, + "parent": "peddle-go-valuations-service", + "child": "peddle-go-message-listener-service" + }, + { + "errorRate": 0, + "p99": 749350, + "p95": 714975, + "callRate": 0.007282913165266107, + "callCount": 26, + "p75": 606475, + "p50": 537900, + "p90": 656150, + "parent": "buyer-bid-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 22147332, + "p95": 15490119.999999996, + "callRate": 0.10448179271708684, + "callCount": 373, + "p75": 13052200, + "p50": 11548900, + "p90": 14632960, + "parent": "identity-api-gateway-service", + "child": "uni-url-shortener-service" + }, + { + "errorRate": 0, + "p99": 4301450, + "p95": 2934550, + "callRate": 0.008683473389355743, + "callCount": 31, + "p75": 1171450, + "p50": 1148100, + "p90": 1469300, + "parent": "uni-feed-event-integration-daemon", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 10872891.000000002, + "p95": 6745359.999999998, + "callRate": 0.24313725490196078, + "callCount": 868, + "p75": 4112200, + "p50": 3905150, + "p90": 4866130.000000006, + "parent": "peddle-go-iaa-calculator-service", + "child": "peddle-go-message-listener-service" + }, + { + "errorRate": 0, + "p99": 20202387.999999996, + "p95": 13848979.999999998, + "callRate": 0.0067226890756302525, + "callCount": 24, + "p75": 12184275, + "p50": 7953750, + "p90": 12736390, + "parent": "pdl-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 11413393.000000017, + "p95": 1181570, + "callRate": 0.3025210084033613, + "callCount": 1080, + "p75": 934900, + "p50": 883400, + "p90": 1016190.0000000001, + "parent": "seller-message-listener-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 5307286.999999999, + "p95": 5056435, + "callRate": 0.005042016806722689, + "callCount": 18, + "p75": 3160825, + "p50": 1557150, + "p90": 4737550, + "parent": "universal-email-platform-service", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 15830400, + "p95": 15830400, + "callRate": 0.005042016806722689, + "callCount": 18, + "p75": 12401900, + "p50": 10251600, + "p90": 13756090.000000002, + "parent": "uni-salesforce-resync-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 9040827.99999998, + "p95": 5503260, + "callRate": 0.03333333333333333, + "callCount": 119, + "p75": 2030100, + "p50": 1177300, + "p90": 5373800, + "parent": "comms-messaging-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 722002, + "p95": 703610, + "callRate": 0.0056022408963585435, + "callCount": 20, + "p75": 688850, + "p50": 662000, + "p90": 698620, + "parent": "auc-daemon-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 1210008.0000000002, + "p95": 1090680, + "callRate": 6.330812324929972, + "callCount": 22601, + "p75": 907350, + "p50": 711500, + "p90": 1012680.0000000001, + "parent": "carrier-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 380024629, + "p95": 378775545, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 372530125, + "p50": 364723350, + "p90": 377214190, + "parent": "peddler-site-staging", + "child": "universal-salesforce-classic-service-staging" + }, + { + "errorRate": 0, + "p99": 10582250, + "p95": 9934100, + "callRate": 0.042296918767507005, + "callCount": 151, + "p75": 9179550, + "p50": 6395400, + "p90": 9602000, + "parent": "uni-salesforce-outbound-listener-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 36469144.000000045, + "p95": 2381489.9999999874, + "callRate": 0.05378151260504202, + "callCount": 192, + "p75": 1008700, + "p50": 850900, + "p90": 1226710, + "parent": "car-user-company-connection-service", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 165785381.99999997, + "p95": 158788109.99999997, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 123575800, + "p50": 68491200, + "p90": 150041520, + "parent": "peddler-site-staging", + "child": "seller-offer-assignment-service-staging" + }, + { + "errorRate": 0, + "p99": 79922644.00000013, + "p95": 12031220, + "callRate": 0.3464985994397759, + "callCount": 1237, + "p75": 2493600, + "p50": 1805200, + "p90": 6629320.000000013, + "parent": "peddle-go-message-listener-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 217378132, + "p95": 208927259.99999997, + "callRate": 0.006442577030812325, + "callCount": 23, + "p75": 190548050, + "p50": 25883400, + "p90": 196974700, + "parent": "identity-provider-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 14886668, + "p95": 14886540, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 14885900, + "p50": 14885100, + "p90": 14886380, + "parent": "identity-api-gateway-service-development", + "child": "peddle-go-manheim-salvage-api-calculator-service-development" + }, + { + "errorRate": 0, + "p99": 23038003.99999997, + "p95": 10857219.999999996, + "callRate": 0.0070028011204481795, + "callCount": 25, + "p75": 9031100, + "p50": 7591800, + "p90": 9692740, + "parent": "peddle-go-merged-salvage-calculator-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 2422560.0000000815, + "p95": 1184300, + "callRate": 1.4064425770308124, + "callCount": 5021, + "p75": 1091100, + "p50": 981500, + "p90": 1140500, + "parent": "uni-url-shortener-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 15120568.000000002, + "p95": 14816440, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 13140825, + "p50": 12441200, + "p90": 14479470, + "parent": "comms-nlp-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 284835247.99999994, + "p95": 116233839.99999982, + "callRate": 0.004761904761904762, + "callCount": 17, + "p75": 29142300, + "p50": 12984800, + "p90": 60174380, + "parent": "identity-provider-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 28312900.000000007, + "p95": 19859080.00000001, + "callRate": 0.6310924369747899, + "callCount": 2253, + "p75": 15073700, + "p50": 13309500, + "p90": 17598040, + "parent": "identity-api-gateway-service", + "child": "carrier-service" + }, + { + "errorRate": 0, + "p99": 4934092.000000003, + "p95": 2725430, + "callRate": 10.068347338935574, + "callCount": 35944, + "p75": 1167375, + "p50": 806200, + "p90": 2027270.0000000007, + "parent": "peddle-go-merged-salvage-calculator-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 92832774, + "p95": 89752270, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 74349750, + "p50": 55096600, + "p90": 85901640, + "parent": "identity-api-gateway-service-development", + "child": "peddle-go-iaa-hybrid-calculator-service-development" + }, + { + "errorRate": 0, + "p99": 12668880, + "p95": 12627200, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 10610225, + "p50": 4908300, + "p90": 12575100, + "parent": "seller-account-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 12436920.999999998, + "p95": 11859805, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 8974225, + "p50": 5815150, + "p90": 11138410, + "parent": "finance-accrual-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 12404060.999999998, + "p95": 11488304.999999998, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 6909525, + "p50": 4973100, + "p90": 10343610, + "parent": "identity-verification-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 3608885, + "p95": 3422425, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 2688900, + "p50": 2302100, + "p90": 3189350, + "parent": "remkt-shadow-auction-net-salvage-calculator-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 33908548.00000001, + "p95": 19773939.99999996, + "callRate": 0.005322128851540616, + "callCount": 19, + "p75": 12826850, + "p50": 11500200, + "p90": 17430880, + "parent": "remkt-shadow-iaa-calculator-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 13383700, + "p95": 13383700, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 13383700, + "p50": 13383700, + "p90": 13383700, + "parent": "cha-user-company-connection-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 55614052.00000013, + "p95": 31744420, + "callRate": 0.05742296918767507, + "callCount": 205, + "p75": 24589900, + "p50": 20671500, + "p90": 27892140, + "parent": "identity-api-gateway-service", + "child": "auc-service" + }, + { + "errorRate": 0, + "p99": 332140532.0000002, + "p95": 219765044.99999988, + "callRate": 0.009523809523809525, + "callCount": 34, + "p75": 4143500, + "p50": 3432600, + "p90": 150572069.99999997, + "parent": "identity-api-gateway-service-staging", + "child": "universal-location-service-staging" + }, + { + "errorRate": 0, + "p99": 877503195, + "p95": 848742375, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 24448600, + "p50": 13854000, + "p90": 740434540.0000002, + "parent": "seller-instant-offer-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 6069562, + "p95": 5991810, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 5603050, + "p50": 5117100, + "p90": 5894620, + "parent": "peddle-go-copart-calculator-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 14909611, + "p95": 13962054.999999996, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12231675, + "p50": 8115300, + "p90": 12777609.999999998, + "parent": "uni-vehicle-import-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 3072470309.9999948, + "p95": 586724449.9999996, + "callRate": 0.007563025210084034, + "callCount": 27, + "p75": 8959450, + "p50": 3152000, + "p90": 94711960.00000045, + "parent": "remkt-shadow-manheim-salvage-api-calculator-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 30483600, + "p95": 30483600, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 30483600, + "p50": 30483600, + "p90": 30483600, + "parent": "comms-email-sender-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 29337588, + "p95": 29109940, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 27971700, + "p50": 26359600, + "p90": 28825380, + "parent": "comms-messaging-message-listener-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 1089597, + "p95": 1085985, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 1068675, + "p50": 693350, + "p90": 1081470, + "parent": "comms-call-center-integration-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 56986508.00000008, + "p95": 12745860, + "callRate": 0.008963585434173669, + "callCount": 32, + "p75": 8449325, + "p50": 2984450, + "p90": 9206720, + "parent": "cha-offer-service", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 16634828, + "p95": 16304940, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 14655500, + "p50": 12593700, + "p90": 15892580, + "parent": "cha-external-offer-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 51259248.99999945, + "p95": 23821275.000000007, + "callRate": 0.20560224089635853, + "callCount": 734, + "p75": 11363475, + "p50": 10428750, + "p90": 14800980.000000002, + "parent": "identity-api-gateway-service-staging", + "child": "identity-provider-service-staging" + }, + { + "errorRate": 0, + "p99": 85438174.99999888, + "p95": 11953500, + "callRate": 0.043697478991596636, + "callCount": 156, + "p75": 2906325, + "p50": 1346700, + "p90": 5208900, + "parent": "peddle-offer-calculation-message-listener-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 2553039.9999999986, + "p95": 1148200, + "callRate": 0.48207282913165267, + "callCount": 1721, + "p75": 1015200, + "p50": 892400, + "p90": 1080100, + "parent": "buyer-service", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 379773735.9999998, + "p95": 263437835, + "callRate": 0.03081232492997199, + "callCount": 110, + "p75": 162785650, + "p50": 144311200, + "p90": 228975780.00000015, + "parent": "uni-system-notification-platform-daemon-staging", + "child": "uni-salesforce-event-integration-daemon-staging" + }, + { + "errorRate": 0, + "p99": 16920244, + "p95": 16405220, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 13830100, + "p50": 10611200, + "p90": 15761440, + "parent": "comms-messaging-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 21257390, + "p95": 20906950, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 19154750, + "p50": 16964500, + "p90": 20468900, + "parent": "uni-photo-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 12591055, + "p95": 12568075, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 12453175, + "p50": 12391300, + "p90": 12539350, + "parent": "universal-vehicle-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 95990188, + "p95": 93409740, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 80507500, + "p50": 57878800, + "p90": 90184180, + "parent": "seller-offer-legacy-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 136318521, + "p95": 133161005, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 117373425, + "p50": 97638950, + "p90": 129214110, + "parent": "identity-api-gateway-service-development", + "child": "remkt-shadow-merged-salvage-calculator-service-development" + }, + { + "errorRate": 0, + "p99": 26589001.99999999, + "p95": 16909555.000000004, + "callRate": 0.1887955182072829, + "callCount": 674, + "p75": 13070975, + "p50": 12399850, + "p90": 14666220.000000011, + "parent": "cha-site", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 53115598, + "p95": 42899849.99999998, + "callRate": 0.007563025210084034, + "callCount": 27, + "p75": 639900, + "p50": 554800, + "p90": 19105460, + "parent": "peddle-go-valuations-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 80424578, + "p95": 76357690, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 56023250, + "p50": 30605200, + "p90": 71274080, + "parent": "auc-counter-bid-daemon", + "child": "seller-offer-assignment-service" + }, + { + "errorRate": 0, + "p99": 12453563, + "p95": 12142615, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 10587875, + "p50": 8644450, + "p90": 11753930, + "parent": "publisher-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 11500505.000000004, + "p95": 8088175, + "callRate": 2.0436974789915965, + "callCount": 7296, + "p75": 6070050, + "p50": 5792650, + "p90": 7232950, + "parent": "carrier-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 2806327.0000000033, + "p95": 1808290, + "callRate": 10.06610644257703, + "callCount": 35936, + "p75": 1067825, + "p50": 856150, + "p90": 1332490, + "parent": "remarketing-peddle-calculator-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 11892511.000000024, + "p95": 8653525, + "callRate": 0.19439775910364146, + "callCount": 694, + "p75": 4805575, + "p50": 4410650, + "p90": 6937660, + "parent": "peddle-go-auction-net-salvage-calculator-service", + "child": "peddle-go-message-listener-service" + }, + { + "errorRate": 0, + "p99": 2484294.9999999986, + "p95": 1041575, + "callRate": 0.11372549019607843, + "callCount": 406, + "p75": 848200, + "p50": 759900, + "p90": 972850, + "parent": "identity-api-gateway-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 199918876.1999997, + "p95": 89340034, + "callRate": 0.3700280112044818, + "callCount": 1321, + "p75": 12691934, + "p50": 8763836, + "p90": 53815327, + "parent": "identity-api-gateway-service", + "child": "cha-site" + }, + { + "errorRate": 0, + "p99": 6142100, + "p95": 6142100, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 6142100, + "p50": 6142100, + "p90": 6142100, + "parent": "uni-salesforce-outbound-listener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 39954146.99999999, + "p95": 36587534.99999999, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 19754475, + "p50": 12519750, + "p90": 32379270.000000004, + "parent": "comms-action-link-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 51631817.00000014, + "p95": 15780869.99999992, + "callRate": 0.2184873949579832, + "callCount": 780, + "p75": 7047550, + "p50": 5656200, + "p90": 9655390, + "parent": "carrier-message-listener-service", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 97030047.99999997, + "p95": 79346560, + "callRate": 0.013165266106442577, + "callCount": 47, + "p75": 67778050, + "p50": 64650900, + "p90": 78852620, + "parent": "buyer-message-listener-service-staging", + "child": "seller-offer-assignment-service-staging" + }, + { + "errorRate": 0, + "p99": 59600151.00000001, + "p95": 41518754.99999995, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12825950, + "p50": 7719400, + "p90": 18917009.999999985, + "parent": "pub-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 12376411, + "p95": 12063655, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 10499875, + "p50": 8545150, + "p90": 11672710, + "parent": "remkt-shadow-peddle-calculator-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 1041743.9999999973, + "p95": 764595, + "callRate": 0.0907563025210084, + "callCount": 324, + "p75": 651725, + "p50": 558750, + "p90": 721430, + "parent": "peddle-go-iaa-hybrid-calculator-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 16688071.000000002, + "p95": 14740109.999999998, + "callRate": 0.008403361344537815, + "callCount": 30, + "p75": 12167550, + "p50": 11627150, + "p90": 13978330, + "parent": "carrier-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 4896659.000000002, + "p95": 809634.9999999999, + "callRate": 0.03361344537815126, + "callCount": 120, + "p75": 601550, + "p50": 562200, + "p90": 686840.0000000003, + "parent": "identity-api-gateway-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 35436832, + "p95": 34239759.99999999, + "callRate": 0.005322128851540616, + "callCount": 19, + "p75": 25929650, + "p50": 23424400, + "p90": 29998380, + "parent": "seller-offer-legacy-service-staging", + "child": "seller-legacy-service-staging" + }, + { + "errorRate": 0, + "p99": 1295736.0000000005, + "p95": 903200, + "callRate": 0.060784313725490195, + "callCount": 217, + "p75": 834800, + "p50": 794000, + "p90": 874140, + "parent": "uni-system-notification-platform-daemon", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 221443400, + "p95": 221443400, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 221443400, + "p50": 221443400, + "p90": 221443400, + "parent": "carrier-message-listener-service", + "child": "peddle-notification-service" + }, + { + "errorRate": 0, + "p99": 2409466.0000000023, + "p95": 1103685, + "callRate": 0.008963585434173669, + "callCount": 32, + "p75": 908700, + "p50": 839700, + "p90": 1097580, + "parent": "finance-accrual-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 44356967.99999991, + "p95": 10136719.999999998, + "callRate": 0.0070028011204481795, + "callCount": 25, + "p75": 7555600, + "p50": 6499100, + "p90": 9418760, + "parent": "peddle-go-copart-hybrid-calculator-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 8395112, + "p95": 8287380, + "callRate": 0.0070028011204481795, + "callCount": 25, + "p75": 7308100, + "p50": 6186700, + "p90": 8181540, + "parent": "remkt-shadow-copart-calculator-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 14996994, + "p95": 14990570, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 14958450, + "p50": 14918300, + "p90": 14982540, + "parent": "peddle-offer-calculation-message-listener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 601980, + "p95": 594300, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 560000, + "p50": 543450, + "p90": 584700, + "parent": "peddle-offer-calculation-message-listener-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 78620012.99999997, + "p95": 24435160, + "callRate": 0.0067226890756302525, + "callCount": 24, + "p75": 21746350, + "p50": 13852450, + "p90": 23938959.999999996, + "parent": "identity-api-gateway-service-staging", + "child": "carrier-service-staging" + }, + { + "errorRate": 0, + "p99": 15353056, + "p95": 14929680, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 12812800, + "p50": 12223400, + "p90": 14400460, + "parent": "uni-aws-service", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 720050, + "p95": 685850, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 627150, + "p50": 590950, + "p90": 643100, + "parent": "buyer-message-listener-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 10292754.999999978, + "p95": 7850894.999999998, + "callRate": 0.06722689075630252, + "callCount": 240, + "p75": 2812275, + "p50": 2733950, + "p90": 3881249.999999996, + "parent": "charity-message-listener-service", + "child": "postgresql" + }, + { + "errorRate": 0, + "p99": 14676454, + "p95": 12439215, + "callRate": 0.03361344537815126, + "callCount": 120, + "p75": 6655975, + "p50": 5143800, + "p90": 11987960, + "parent": "auc-service", + "child": "auc-daemon" + }, + { + "errorRate": 0, + "p99": 6480151, + "p95": 6397155, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 5982175, + "p50": 5463450, + "p90": 6293410, + "parent": "charity-message-listener-service-staging", + "child": "identity-api-gateway-service-staging" + }, + { + "errorRate": 0, + "p99": 12638824, + "p95": 12630120, + "callRate": 0.0014005602240896359, + "callCount": 5, + "p75": 12586600, + "p50": 4927500, + "p90": 12619240, + "parent": "comm-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 5367800, + "p95": 5367800, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 5367800, + "p50": 5367800, + "p90": 5367800, + "parent": "identity-api-gateway-service", + "child": "cha-offer-service" + }, + { + "errorRate": 0, + "p99": 13779823685.000002, + "p95": 10900572025, + "callRate": 0.0016806722689075631, + "callCount": 6, + "p75": 87578525, + "p50": 28988300, + "p90": 7301507450, + "parent": "identity-api-gateway-service-development", + "child": "seller-instant-offer-service-development" + }, + { + "errorRate": 0, + "p99": 22881815, + "p95": 22686675, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 14224150, + "p50": 7829050, + "p90": 21782860, + "parent": "peddle-go-iaa-hybrid-calculator-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 15004900, + "p95": 15004900, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 12453100, + "p50": 7969800, + "p90": 14749720.000000002, + "parent": "uni-salesforce-resync-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 50, + "p99": 30002115975, + "p95": 30001787475, + "callRate": 0.0011204481792717086, + "callCount": 4, + "p75": 30000144975, + "p50": 15001091500, + "p90": 30001376850, + "parent": "peddle-go-valuations-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 20444287.999999996, + "p95": 17867839.999999996, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 11150000, + "p50": 10423800, + "p90": 14647279.999999998, + "parent": "identity-external-api-gateway-service", + "child": "uni-salesforce-outbound-listener-service" + }, + { + "errorRate": 0, + "p99": 20853550, + "p95": 10225850, + "callRate": 0.007282913165266107, + "callCount": 26, + "p75": 3069850, + "p50": 1464550, + "p90": 9239300, + "parent": "uni-salesforce-outbound-listener-service", + "child": "carrier-transport-message-listener-service" + }, + { + "errorRate": 0, + "p99": 4766514, + "p95": 4712970, + "callRate": 0.0008403361344537816, + "callCount": 3, + "p75": 4445250, + "p50": 4110600, + "p90": 4646040, + "parent": "remkt-shadow-copart-calculator-service-staging", + "child": "peddle-go-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 100244281.99999991, + "p95": 34129820, + "callRate": 0.22605042016806723, + "callCount": 807, + "p75": 26088250, + "p50": 24826600, + "p90": 32124060, + "parent": "peddle-go-bid-service", + "child": "peddle-go-message-listener-service" + }, + { + "errorRate": 0, + "p99": 4882008, + "p95": 4739640, + "callRate": 0.0036414565826330533, + "callCount": 13, + "p75": 2714400, + "p50": 1594200, + "p90": 4324060.000000001, + "parent": "peddle-offer-calculation-message-listener-service-development", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 686621278.0000002, + "p95": 283976769.9999995, + "callRate": 0.00784313725490196, + "callCount": 28, + "p75": 15428425, + "p50": 5681650, + "p90": 51857890.000000015, + "parent": "peddle-go-copart-calculator-service-staging", + "child": "mssql" + }, + { + "errorRate": 0, + "p99": 103654349.99999996, + "p95": 38956950, + "callRate": 0.004481792717086834, + "callCount": 16, + "p75": 7531250, + "p50": 5481400, + "p90": 11521650, + "parent": "peddle-go-merged-salvage-calculator-service-staging", + "child": "peddle-go-message-listener-service-staging" + }, + { + "errorRate": 0, + "p99": 4981873.00000001, + "p95": 3199754.9999999995, + "callRate": 13.371428571428572, + "callCount": 47736, + "p75": 1326850, + "p50": 1121600, + "p90": 1795840.0000000014, + "parent": "auc-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 8072131170.000001, + "p95": 5498279849.999992, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 1406130775, + "p50": 900858450, + "p90": 2280965699.999997, + "parent": "identity-external-api-gateway-service", + "child": "publisher-offer-service" + }, + { + "errorRate": 0, + "p99": 844053, + "p95": 831865, + "callRate": 0.0033613445378151263, + "callCount": 12, + "p75": 792875, + "p50": 752000, + "p90": 818210, + "parent": "pub-daemon", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 3016842.0000000005, + "p95": 1876689.9999999995, + "callRate": 7.488515406162465, + "callCount": 26734, + "p75": 929600, + "p50": 771950, + "p90": 1361170, + "parent": "peddle-go-copart-calculator-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 8659208, + "p95": 8595720, + "callRate": 0.0070028011204481795, + "callCount": 25, + "p75": 7607100, + "p50": 6626100, + "p90": 8388680, + "parent": "remkt-shadow-merged-salvage-calculator-service-staging", + "child": "rabbitmq" + }, + { + "errorRate": 0, + "p99": 763036868.0000001, + "p95": 500781819.99999964, + "callRate": 0.08095238095238096, + "callCount": 289, + "p75": 214472200, + "p50": 22833300, + "p90": 370383800, + "parent": "identity-api-gateway-service", + "child": "seller-instant-offer-service" + }, + { + "errorRate": 0, + "p99": 1274827.9999999995, + "p95": 1111729.9999999998, + "callRate": 0.06722689075630252, + "callCount": 240, + "p75": 988950, + "p50": 893800, + "p90": 1056310, + "parent": "peddle-go-iaa-calculator-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 15703120, + "p95": 15266800, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12293050, + "p50": 7943850, + "p90": 14721400, + "parent": "buyer-service-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 577258, + "p95": 568690, + "callRate": 0.002240896358543417, + "callCount": 8, + "p75": 540325, + "p50": 493400, + "p90": 557980, + "parent": "publisher-service-development", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 1384176, + "p95": 1080820, + "callRate": 0.16946778711484595, + "callCount": 605, + "p75": 877700, + "p50": 711500, + "p90": 1027680, + "parent": "carrier-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 612687607.9999998, + "p95": 128446709.9999992, + "callRate": 0.20224089635854342, + "callCount": 722, + "p75": 27302900, + "p50": 22220950, + "p90": 47649400, + "parent": "identity-api-gateway-service", + "child": "seller-offer-service" + }, + { + "errorRate": 0, + "p99": 918587500, + "p95": 918587500, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 918587500, + "p50": 918587500, + "p90": 918587500, + "parent": "uni-salesforce-outbound-listener-service-development", + "child": "pub-account-daemon-development" + }, + { + "errorRate": 0, + "p99": 76649345, + "p95": 74494725, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 63721625, + "p50": 50255250, + "p90": 71801450, + "parent": "identity-api-gateway-service-development", + "child": "peddle-go-copart-hybrid-calculator-service-development" + }, + { + "errorRate": 0, + "p99": 4021400, + "p95": 4021400, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 4021400, + "p50": 4021400, + "p90": 4021400, + "parent": "identity-api-gateway-service", + "child": "universal-company-blacklist-service" + }, + { + "errorRate": 0, + "p99": 783900, + "p95": 783900, + "callRate": 0.00028011204481792715, + "callCount": 1, + "p75": 783900, + "p50": 783900, + "p90": 783900, + "parent": "finance-receivable-service-staging", + "child": "buy-limit-calculation-daemon-staging" + }, + { + "errorRate": 0, + "p99": 1329611.9999999958, + "p95": 1042330, + "callRate": 0.06722689075630252, + "callCount": 240, + "p75": 901225, + "p50": 834100, + "p90": 993340, + "parent": "peddle-go-copart-calculator-service-staging", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 782692, + "p95": 680299.9999999993, + "callRate": 0.9392156862745098, + "callCount": 3353, + "p75": 425200, + "p50": 376400, + "p90": 526720, + "parent": "universal-salesforce-sync-message-listener-service", + "child": "redis" + }, + { + "errorRate": 0, + "p99": 15598195.999999998, + "p95": 14913379.999999998, + "callRate": 0.00196078431372549, + "callCount": 7, + "p75": 12684700, + "p50": 12369100, + "p90": 14057360, + "parent": "pub-daemon", + "child": "identity-api-gateway-service" + }, + { + "errorRate": 0, + "p99": 13806370, + "p95": 13181049.999999998, + "callRate": 0.0028011204481792717, + "callCount": 10, + "p75": 12182225, + "p50": 8017500, + "p90": 12399399.999999998, + "parent": "fin-accrual-daemon-development", + "child": "identity-api-gateway-service-development" + }, + { + "errorRate": 0, + "p99": 5180318, + "p95": 5169190, + "callRate": 0.0005602240896358543, + "callCount": 2, + "p75": 5113550, + "p50": 5044000, + "p90": 5155280, + "parent": "carrier-transport-service-staging", + "child": "finance-data-sync-message-listener-service-staging" + } + ] + } + \ No newline at end of file diff --git a/drdroid_debug_toolkit/core/integrations/source_facade.py b/drdroid_debug_toolkit/core/integrations/source_facade.py index 65ac37d0..e4c5f659 100644 --- a/drdroid_debug_toolkit/core/integrations/source_facade.py +++ b/drdroid_debug_toolkit/core/integrations/source_facade.py @@ -41,6 +41,7 @@ from core.integrations.source_managers.render_source_manager import RenderSourceManager from core.integrations.source_managers.victoria_logs_source_manager import VictoriaLogsSourceManager from core.integrations.source_managers.metabase_source_manager import MetabaseSourceManager +from core.integrations.source_managers.checkly_source_manager import ChecklySourceManager from core.protos.base_pb2 import Source from core.protos.connectors.connector_pb2 import Connector as ConnectorProto from core.protos.playbooks.playbook_commons_pb2 import PlaybookTaskResult @@ -160,4 +161,5 @@ def get_connector_masked_keys(self, connector_type: Source): source_facade.register(Source.CORALOGIX, CoralogixSourceManager()) source_facade.register(Source.RENDER, RenderSourceManager()) source_facade.register(Source.VICTORIA_LOGS, VictoriaLogsSourceManager()) -source_facade.register(Source.METABASE, MetabaseSourceManager()) \ No newline at end of file +source_facade.register(Source.METABASE, MetabaseSourceManager()) +source_facade.register(Source.CHECKLY, ChecklySourceManager()) \ No newline at end of file diff --git a/drdroid_debug_toolkit/core/protos/base.proto b/drdroid_debug_toolkit/core/protos/base.proto index 9e4d9644..4f68af7b 100644 --- a/drdroid_debug_toolkit/core/protos/base.proto +++ b/drdroid_debug_toolkit/core/protos/base.proto @@ -167,6 +167,7 @@ enum Source { VICTORIA_LOGS=77; METABASE = 78; DATABRICKS = 79; + CHECKLY = 80; } enum SourceKeyType { @@ -386,6 +387,10 @@ enum SourceKeyType { // Github specific keys GITHUB_API_URL = 168; + // Checkly specific keys + CHECKLY_API_KEY = 169; + CHECKLY_ACCOUNT_ID = 170; + } enum SourceModelType { diff --git a/drdroid_debug_toolkit/core/protos/base_pb2.py b/drdroid_debug_toolkit/core/protos/base_pb2.py index 39c1939c..5170ce8f 100644 --- a/drdroid_debug_toolkit/core/protos/base_pb2.py +++ b/drdroid_debug_toolkit/core/protos/base_pb2.py @@ -25,7 +25,7 @@ from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x16\x63ore/protos/base.proto\x12\x0b\x63ore.protos\x1a\x1egoogle/protobuf/wrappers.proto\".\n\tTimeRange\x12\x10\n\x08time_geq\x18\x01 \x01(\x04\x12\x0f\n\x07time_lt\x18\x02 \x01(\x04\"a\n\x04Page\x12+\n\x05limit\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.UInt32Value\x12,\n\x06offset\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.UInt32Value\"a\n\rOpDescription\x12\x1b\n\x02op\x18\x01 \x01(\x0e\x32\x0f.core.protos.Op\x12\r\n\x05label\x18\x02 \x01(\t\x12\x10\n\x08is_unary\x18\x03 \x01(\x08\x12\x12\n\nis_logical\x18\x04 \x01(\x08\"\xc7\x02\n\x10TaskCronSchedule\x12-\n\x07minutes\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12+\n\x05hours\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x36\n\x10\x64\x61ys_of_the_week\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x37\n\x11\x64\x61ys_of_the_month\x18\x04 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x36\n\x10\x64\x61ys_of_the_year\x18\x05 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12.\n\x08timezone\x18\x06 \x01(\x0b\x32\x1c.google.protobuf.StringValue\"I\n\x0cTaskInterval\x12\x39\n\x13interval_in_seconds\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.UInt64Value\"j\n\x0cTaskCronRule\x12*\n\x04rule\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12.\n\x08timezone\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.StringValue\"\xef\x01\n\x08\x45ventKey\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x0b\n\x03key\x18\x02 \x01(\t\x12/\n\x08key_type\x18\x03 \x01(\x0e\x32\x1d.core.protos.EventKey.KeyType\x12\x31\n\nevent_type\x18\x04 \x01(\x0b\x32\x1d.core.protos.EventTypePartial\"f\n\x07KeyType\x12\x0b\n\x07UNKNOWN\x10\x00\x12\n\n\x06STRING\x10\x01\x12\x08\n\x04LONG\x10\x02\x12\n\n\x06\x44OUBLE\x10\x03\x12\x0b\n\x07\x42OOLEAN\x10\x04\x12\x08\n\x04\x42YTE\x10\x05\x12\t\n\x05\x41RRAY\x10\x06\x12\n\n\x06OBJECT\x10\x07\"\x81\x01\n\tEventType\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x0c\n\x04name\x18\x02 \x01(\t\x12#\n\x04keys\x18\x03 \x03(\x0b\x32\x15.core.protos.EventKey\x12\x35\n\revent_sources\x18\x04 \x03(\x0e\x32\x1e.core.protos.Event.EventSource\"\xaa\x01\n\x0e\x45ventTypeStats\x12\x30\n\nkeys_count\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.UInt64Value\x12\x31\n\x0b\x65vent_count\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.UInt64Value\x12\x33\n\rmonitor_count\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.UInt64Value\",\n\x10\x45ventTypePartial\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x0c\n\x04name\x18\x02 \x01(\t\"q\n\x10\x45ventTypeSummary\x12\x31\n\nevent_type\x18\x01 \x01(\x0b\x32\x1d.core.protos.EventTypePartial\x12*\n\x05stats\x18\x02 \x01(\x0b\x32\x1b.core.protos.EventTypeStats\"m\n\x13\x45ventTypeDefinition\x12*\n\nevent_type\x18\x01 \x01(\x0b\x32\x16.core.protos.EventType\x12*\n\x05stats\x18\x02 \x01(\x0b\x32\x1b.core.protos.EventTypeStats\"\xdd\x02\n\x05\x45vent\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x31\n\nevent_type\x18\x02 \x01(\x0b\x32\x1d.core.protos.EventTypePartial\x12\"\n\x03kvs\x18\x03 \x03(\x0b\x32\x15.core.protos.KeyValue\x12\x11\n\ttimestamp\x18\x04 \x01(\x10\x12\x34\n\x0c\x65vent_source\x18\x05 \x01(\x0e\x32\x1e.core.protos.Event.EventSource\"\xa7\x01\n\x0b\x45ventSource\x12\x0b\n\x07UNKNOWN\x10\x00\x12\n\n\x06SAMPLE\x10\x01\x12\x07\n\x03\x41PI\x10\x02\x12\x07\n\x03SDK\x10\x03\x12\x0b\n\x07SEGMENT\x10\x04\x12\r\n\tAMPLITUDE\x10\x05\x12\x07\n\x03SNS\x10\x06\x12\x0e\n\nCLOUDWATCH\x10\x07\x12\r\n\tCOLLECTOR\x10\x08\x12\x0f\n\x0b\x41WS_KINESIS\x10\t\x12\t\n\x05SLACK\x10\n\x12\r\n\tOPS_GENIE\x10\x0b\"\xe5\x01\n\x05Value\x12\x16\n\x0cstring_value\x18\x01 \x01(\tH\x00\x12\x14\n\nbool_value\x18\x02 \x01(\x08H\x00\x12\x13\n\tint_value\x18\x03 \x01(\x03H\x00\x12\x16\n\x0c\x64ouble_value\x18\x04 \x01(\x01H\x00\x12.\n\x0b\x61rray_value\x18\x05 \x01(\x0b\x32\x17.core.protos.ArrayValueH\x00\x12\x31\n\x0ckvlist_value\x18\x06 \x01(\x0b\x32\x19.core.protos.KeyValueListH\x00\x12\x15\n\x0b\x62ytes_value\x18\x07 \x01(\x0cH\x00\x42\x07\n\x05value\"0\n\nArrayValue\x12\"\n\x06values\x18\x01 \x03(\x0b\x32\x12.core.protos.Value\"5\n\x0cKeyValueList\x12%\n\x06values\x18\x01 \x03(\x0b\x32\x15.core.protos.KeyValue\":\n\x08KeyValue\x12\x0b\n\x03key\x18\x01 \x01(\t\x12!\n\x05value\x18\x02 \x01(\x0b\x32\x12.core.protos.Value*Q\n\x08\x46unction\x12\r\n\tUNKNOWN_F\x10\x00\x12\t\n\x05\x41VG_F\x10\x01\x12\t\n\x05SUM_F\x10\x02\x12\t\n\x05MIN_F\x10\x03\x12\t\n\x05MAX_F\x10\x04\x12\n\n\x06LAST_F\x10\x05*\xb7\x01\n\x08Operator\x12\r\n\tUNKNOWN_O\x10\x00\x12\x12\n\x0eGREATER_THAN_O\x10\x01\x12\x18\n\x14GREATER_THAN_EQUAL_O\x10\x02\x12\x0f\n\x0bLESS_THAN_O\x10\x03\x12\x15\n\x11LESS_THAN_EQUAL_O\x10\x04\x12\x0b\n\x07\x45QUAL_O\x10\x05\x12\x0f\n\x0bNOT_EQUAL_O\x10\x06\x12\n\n\x06LIKE_O\x10\x07\x12\x0c\n\x08\x45XISTS_O\x10\x08\x12\x0e\n\nCONTAINS_O\x10\t*D\n\x0fLogicalOperator\x12\x0e\n\nUNKNOWN_LO\x10\x00\x12\n\n\x06\x41ND_LO\x10\x01\x12\t\n\x05OR_LO\x10\x02\x12\n\n\x06NOT_LO\x10\x03*\x9c\x01\n\x02Op\x12\x0e\n\nUNKNOWN_OP\x10\x00\x12\x06\n\x02\x45Q\x10\x01\x12\x07\n\x03NEQ\x10\x02\x12\x06\n\x02GT\x10\x03\x12\x06\n\x02LT\x10\x04\x12\x07\n\x03GTE\x10\x05\x12\x07\n\x03LTE\x10\x06\x12\x06\n\x02IN\x10\x07\x12\n\n\x06NOT_IN\x10\x08\x12\x0b\n\x07IS_NULL\x10\t\x12\n\n\x06\x45XISTS\x10\n\x12\x0c\n\x08\x43ONTAINS\x10\x0b\x12\x07\n\x03\x41ND\x10\x14\x12\x06\n\x02OR\x10\x15\x12\x07\n\x03NOT\x10\x16*\xc7\t\n\x06Source\x12\x0b\n\x07UNKNOWN\x10\x00\x12\n\n\x06SENTRY\x10\x01\x12\x0b\n\x07SEGMENT\x10\x02\x12\x12\n\x0e\x45LASTIC_SEARCH\x10\x03\x12\r\n\tAMPLITUDE\x10\x04\x12\x0f\n\x0b\x41WS_KINESIS\x10\x05\x12\x0e\n\nCLOUDWATCH\x10\x06\x12\r\n\tCLEVERTAP\x10\x07\x12\x0f\n\x0bRUDDERSTACK\x10\x08\x12\x0c\n\x08MOENGAGE\x10\t\x12\t\n\x05\x43RIBL\x10\n\x12\t\n\x05KAFKA\x10\x0b\x12\x0b\n\x07\x44\x41TADOG\x10\x0c\x12\x0c\n\x08\x46ILEBEAT\x10\r\x12\x0c\n\x08LOGSTASH\x10\x0e\x12\x0b\n\x07\x46LUENTD\x10\x0f\x12\r\n\tFLUENTBIT\x10\x10\x12\x0e\n\nPAGER_DUTY\x10\x11\x12\r\n\tNEW_RELIC\x10\x12\x12\t\n\x05SLACK\x10\x13\x12\x0f\n\x0bHONEYBADGER\x10\x14\x12\x0f\n\x0bGOOGLE_CHAT\x10\x15\x12\x11\n\rDATADOG_OAUTH\x10\x16\x12\x07\n\x03GCM\x10\x17\x12\x0e\n\nPROMETHEUS\x10\x18\x12\x0f\n\x0b\x45LASTIC_APM\x10\x19\x12\x14\n\x10VICTORIA_METRICS\x10\x1a\x12\x11\n\rSLACK_CONNECT\x10\x1b\x12\x0b\n\x07GRAFANA\x10\x1c\x12\x0e\n\nCLICKHOUSE\x10\x1d\x12\x11\n\rDOCUMENTATION\x10\x1e\x12\x0c\n\x08POSTGRES\x10\x1f\x12\r\n\tOPS_GENIE\x10 \x12\x07\n\x03\x45KS\x10!\x12\x0f\n\x0b\x41GENT_PROXY\x10\"\x12\x0f\n\x0bGRAFANA_VPC\x10#\x12\n\n\x06GITHUB\x10$\x12\x1b\n\x17SQL_DATABASE_CONNECTION\x10%\x12\x0b\n\x07OPEN_AI\x10&\x12\x11\n\rREMOTE_SERVER\x10\'\x12\x07\n\x03\x41PI\x10(\x12\x08\n\x04\x42\x41SH\x10)\x12\t\n\x05\x41ZURE\x10*\x12\x11\n\rGRAFANA_MIMIR\x10+\x12\x07\n\x03GKE\x10,\x12\x0c\n\x08MS_TEAMS\x10-\x12\x10\n\x0cGRAFANA_LOKI\x10.\x12\x0e\n\nKUBERNETES\x10/\x12\x08\n\x04SMTP\x10\x30\x12\r\n\tBIG_QUERY\x10\x31\x12\x0b\n\x07ZENDUTY\x10\x32\x12\n\n\x06ROOTLY\x10\x33\x12\x0e\n\nJIRA_CLOUD\x10\x34\x12\t\n\x05\x41SANA\x10\x35\x12\x14\n\x10\x43ONFLUENCE_CLOUD\x10\x36\x12\x1a\n\x16\x43ONFLUENCE_SELF_HOSTED\x10\x37\x12\x10\n\x0cGOOGLE_DRIVE\x10\x38\x12\n\n\x06NOTION\x10\x39\x12\x13\n\x0f\x44RD_PROXY_AGENT\x10:\x12\x0b\n\x07MONGODB\x10;\x12\x0f\n\x0bOPEN_SEARCH\x10<\x12\n\n\x06LINEAR\x10=\x12\x0b\n\x07JENKINS\x10>\x12\x12\n\x0eGITHUB_ACTIONS\x10?\x12\x15\n\x11\x43USTOM_STRATEGIES\x10@\x12\n\n\x06\x41RGOCD\x10\x41\x12\x15\n\x11\x44RD_ALERT_WEBHOOK\x10\x42\x12\x0b\n\x07ROLLBAR\x10\x43\x12\n\n\x06LAMBDA\x10\x44\x12\x0b\n\x07\x42ROWSER\x10\x45\x12\x0b\n\x07POSTHOG\x10\x46\x12\x0c\n\x08MIXPANEL\x10G\x12\n\n\x06SIGNOZ\x10H\x12\r\n\tBITBUCKET\x10I\x12\r\n\tCORALOGIX\x10J\x12\n\n\x06RENDER\x10K\x12\x0e\n\nMCP_SERVER\x10L\x12\x11\n\rVICTORIA_LOGS\x10M\x12\x0c\n\x08METABASE\x10N\x12\x0e\n\nDATABRICKS\x10O*\xd9\x1d\n\rSourceKeyType\x12\x0f\n\x0bUNKNOWN_SKT\x10\x00\x12\x12\n\x0eSENTRY_API_KEY\x10\x01\x12\x13\n\x0fSENTRY_ORG_SLUG\x10\x06\x12\x13\n\x0f\x44\x41TADOG_APP_KEY\x10\x02\x12\x13\n\x0f\x44\x41TADOG_API_KEY\x10\x03\x12\x16\n\x12\x44\x41TADOG_AUTH_TOKEN\x10\x0f\x12\x16\n\x12\x44\x41TADOG_API_DOMAIN\x10\x12\x12\x14\n\x10NEWRELIC_API_KEY\x10\x04\x12\x13\n\x0fNEWRELIC_APP_ID\x10\x05\x12\x16\n\x12NEWRELIC_QUERY_KEY\x10\x07\x12\x17\n\x13NEWRELIC_API_DOMAIN\x10\x13\x12\x18\n\x14SLACK_BOT_AUTH_TOKEN\x10\x08\x12\x15\n\x11SLACK_CHANNEL_SKT\x10\t\x12\x10\n\x0cSLACK_APP_ID\x10.\x12\x18\n\x13SLACK_APP_CLIENT_ID\x10\x8d\x01\x12\x1c\n\x17SLACK_APP_CLIENT_SECRET\x10\x8e\x01\x12\x1d\n\x18SLACK_APP_SIGNING_SECRET\x10\x8f\x01\x12\x18\n\x14HONEYBADGER_USERNAME\x10\n\x12\x18\n\x14HONEYBADGER_PASSWORD\x10\x0b\x12\x1a\n\x16HONEYBADGER_PROJECT_ID\x10\x0c\x12\x12\n\x0e\x41WS_ACCESS_KEY\x10\r\x12\x12\n\x0e\x41WS_SECRET_KEY\x10\x0e\x12\x0e\n\nAWS_REGION\x10\x14\x12\x18\n\x14\x41WS_ASSUMED_ROLE_ARN\x10\x17\x12\x10\n\x0c\x45KS_ROLE_ARN\x10(\x12\x1a\n\x16\x41WS_DRD_CLOUD_ROLE_ARN\x10]\x12\x14\n\x0f\x41WS_EXTERNAL_ID\x10\xa5\x01\x12\x1f\n\x1bGOOGLE_CHAT_BOT_OAUTH_TOKEN\x10\x10\x12\x1a\n\x16GOOGLE_CHAT_BOT_SPACES\x10\x11\x12\x10\n\x0cGRAFANA_HOST\x10\x15\x12\x13\n\x0fGRAFANA_API_KEY\x10\x16\x12\x16\n\x11GRAFANA_TEAM_HOST\x10\x99\x01\x12\x18\n\x14\x43LICKHOUSE_INTERFACE\x10\x18\x12\x13\n\x0f\x43LICKHOUSE_HOST\x10\x19\x12\x13\n\x0f\x43LICKHOUSE_PORT\x10\x1a\x12\x13\n\x0f\x43LICKHOUSE_USER\x10\x1b\x12\x17\n\x13\x43LICKHOUSE_PASSWORD\x10\x1c\x12\x12\n\x0eGCM_PROJECT_ID\x10\x1d\x12\x13\n\x0fGCM_PRIVATE_KEY\x10\x1e\x12\x14\n\x10GCM_CLIENT_EMAIL\x10\x1f\x12\x11\n\rGCM_TOKEN_URI\x10 \x12\x1c\n\x18GCM_SERVICE_ACCOUNT_JSON\x10p\x12\x11\n\rPOSTGRES_HOST\x10!\x12\x11\n\rPOSTGRES_USER\x10\"\x12\x15\n\x11POSTGRES_PASSWORD\x10#\x12\x11\n\rPOSTGRES_PORT\x10$\x12\x15\n\x11POSTGRES_DATABASE\x10%\x12\x14\n\x10POSTGRES_OPTIONS\x10&\x12&\n\"SQL_DATABASE_CONNECTION_STRING_URI\x10\'\x12\x16\n\x12PAGER_DUTY_API_KEY\x10)\x12\x1f\n\x1bPAGER_DUTY_CONFIGURED_EMAIL\x10?\x12\x15\n\x11OPS_GENIE_API_KEY\x10*\x12\x14\n\x10\x41GENT_PROXY_HOST\x10+\x12\x17\n\x13\x41GENT_PROXY_API_KEY\x10,\x12\x10\n\x0cGITHUB_TOKEN\x10-\x12\x0e\n\nGITHUB_ORG\x10i\x12\x13\n\x0fOPEN_AI_API_KEY\x10/\x12\x15\n\x11REMOTE_SERVER_PEM\x10\x31\x12\x16\n\x12REMOTE_SERVER_USER\x10\x32\x12\x16\n\x12REMOTE_SERVER_HOST\x10\x33\x12\x1a\n\x16REMOTE_SERVER_PASSWORD\x10\x34\x12\x16\n\x12REMOTE_SERVER_PORT\x10o\x12\x0e\n\nMIMIR_HOST\x10\x35\x12\x12\n\x0eX_SCOPE_ORG_ID\x10\x36\x12\x0e\n\nSSL_VERIFY\x10\x37\x12\x19\n\x15\x41ZURE_SUBSCRIPTION_ID\x10\x38\x12\x13\n\x0f\x41ZURE_TENANT_ID\x10\x39\x12\x13\n\x0f\x41ZURE_CLIENT_ID\x10:\x12\x17\n\x13\x41ZURE_CLIENT_SECRET\x10;\x12\x12\n\x0eGKE_PROJECT_ID\x10<\x12\x1c\n\x18GKE_SERVICE_ACCOUNT_JSON\x10=\x12\"\n\x1eMS_TEAMS_CONNECTOR_WEBHOOK_URL\x10>\x12\x1b\n\x17\x45LASTIC_SEARCH_PROTOCOL\x10@\x12\x17\n\x13\x45LASTIC_SEARCH_HOST\x10\x41\x12\x17\n\x13\x45LASTIC_SEARCH_PORT\x10\x42\x12\x1d\n\x19\x45LASTIC_SEARCH_API_KEY_ID\x10\x43\x12\x1a\n\x16\x45LASTIC_SEARCH_API_KEY\x10\x44\x12\x19\n\x15GRAFANA_LOKI_PROTOCOL\x10\x45\x12\x15\n\x11GRAFANA_LOKI_HOST\x10\x46\x12\x15\n\x11GRAFANA_LOKI_PORT\x10G\x12\x1b\n\x17KUBERNETES_CLUSTER_NAME\x10H\x12!\n\x1dKUBERNETES_CLUSTER_API_SERVER\x10I\x12\x1c\n\x18KUBERNETES_CLUSTER_TOKEN\x10J\x12\x31\n-KUBERNETES_CLUSTER_CERTIFICATE_AUTHORITY_DATA\x10K\x12\x31\n-KUBERNETES_CLUSTER_CERTIFICATE_AUTHORITY_PATH\x10L\x12\r\n\tSMTP_HOST\x10M\x12\r\n\tSMTP_PORT\x10N\x12\r\n\tSMTP_USER\x10O\x12\x11\n\rSMTP_PASSWORD\x10P\x12\x18\n\x14\x42IG_QUERY_PROJECT_ID\x10Q\x12\"\n\x1e\x42IG_QUERY_SERVICE_ACCOUNT_JSON\x10R\x12\x13\n\x0fZENDUTY_API_KEY\x10S\x12\x12\n\x0eROOTLY_API_KEY\x10T\x12\x16\n\x12JIRA_CLOUD_API_KEY\x10U\x12\x0f\n\x0bJIRA_DOMAIN\x10m\x12\x0e\n\nJIRA_EMAIL\x10n\x12\x16\n\x12\x41SANA_ACCESS_TOKEN\x10V\x12\x1c\n\x18\x43ONFLUENCE_CLOUD_API_KEY\x10W\x12\x1e\n\x19\x43ONFLUENCE_CLOUD_SITE_URL\x10\x8b\x01\x12-\n(CONFLUENCE_CLOUD_ATLASSIAN_ACCOUNT_EMAIL\x10\x8c\x01\x12\x12\n\x0eNOTION_API_KEY\x10X\x12\x18\n\x14\x44RD_PROXY_AGENT_HOST\x10Y\x12\x1d\n\x19\x44RD_PROXY_AGENT_API_TOKEN\x10Z\x12\x1b\n\x17\x44RD_PROXY_AGENT_API_KEY\x10[\x12\x1d\n\x19MONGODB_CONNECTION_STRING\x10\\\x12\x18\n\x14OPEN_SEARCH_PROTOCOL\x10^\x12\x14\n\x10OPEN_SEARCH_HOST\x10_\x12\x14\n\x10OPEN_SEARCH_PORT\x10`\x12\x18\n\x14OPEN_SEARCH_USERNAME\x10\x61\x12\x18\n\x14OPEN_SEARCH_PASSWORD\x10\x62\x12\x12\n\x0eLINEAR_API_KEY\x10\x63\x12\x0f\n\x0bJENKINS_URL\x10\x64\x12\x14\n\x10JENKINS_USERNAME\x10\x65\x12\x15\n\x11JENKINS_API_TOKEN\x10\x66\x12\x11\n\rJENKINS_CRUMB\x10q\x12\x18\n\x14GITHUB_ACTIONS_TOKEN\x10g\x12 \n\x1c\x43USTOM_STRATEGIES_ACCOUNT_ID\x10h\x12\x11\n\rARGOCD_SERVER\x10j\x12\x10\n\x0c\x41RGOCD_TOKEN\x10k\x12\x18\n\x14ROLLBAR_ACCESS_TOKEN\x10l\x12\x13\n\x0fPOSTHOG_API_KEY\x10y\x12\x14\n\x10POSTHOG_APP_HOST\x10z\x12\x16\n\x12POSTHOG_PROJECT_ID\x10{\x12&\n!MIXPANEL_SERVICE_ACCOUNT_USERNAME\x10\x83\x01\x12$\n\x1fMIXPANEL_SERVICE_ACCOUNT_SECRET\x10\x84\x01\x12\x14\n\x0fMIXPANEL_DOMAIN\x10\x85\x01\x12\x18\n\x13MIXPANEL_PROJECT_ID\x10\x86\x01\x12\x1a\n\x15MIXPANEL_WORKSPACE_ID\x10\x87\x01\x12\x13\n\x0eSIGNOZ_API_URL\x10\x88\x01\x12\x15\n\x10SIGNOZ_API_TOKEN\x10\x89\x01\x12\x10\n\x0bKIBANA_HOST\x10\x8a\x01\x12\x18\n\x13\x42ITBUCKET_WORKSPACE\x10\x90\x01\x12\x16\n\x11\x42ITBUCKET_API_KEY\x10\x91\x01\x12\x13\n\x0e\x42ITBUCKET_REPO\x10\x92\x01\x12\x13\n\x0eRENDER_API_KEY\x10\x93\x01\x12\x16\n\x11\x43ORALOGIX_API_KEY\x10\x94\x01\x12\x17\n\x12\x43ORALOGIX_ENDPOINT\x10\x95\x01\x12\x15\n\x10\x43ORALOGIX_DOMAIN\x10\x98\x01\x12\x18\n\x13MCP_SERVER_BASE_URL\x10\x96\x01\x12\x1c\n\x17MCP_SERVER_AUTH_HEADERS\x10\x97\x01\x12\x1f\n\x1aMCP_SERVER_PASS_USER_EMAIL\x10\xa4\x01\x12\x1b\n\x16VICTORIA_LOGS_PROTOCOL\x10\x9a\x01\x12\x17\n\x12VICTORIA_LOGS_HOST\x10\x9b\x01\x12\x17\n\x12VICTORIA_LOGS_PORT\x10\x9c\x01\x12\x1a\n\x15VICTORIA_LOGS_HEADERS\x10\x9d\x01\x12\x12\n\rGITHUB_APP_ID\x10\x9e\x01\x12\x1b\n\x16GITHUB_APP_PRIVATE_KEY\x10\x9f\x01\x12\x1f\n\x1aGITHUB_APP_INSTALLATION_ID\x10\xa0\x01\x12\x1c\n\x17GITHUB_APP_ACCESS_TOKEN\x10\xa1\x01\x12\x11\n\x0cMETABASE_URL\x10\xa2\x01\x12\x15\n\x10METABASE_API_KEY\x10\xa3\x01\x12\x14\n\x0f\x44\x41TABRICKS_HOST\x10\xa6\x01\x12\x15\n\x10\x44\x41TABRICKS_TOKEN\x10\xa7\x01\x12\x13\n\x0eGITHUB_API_URL\x10\xa8\x01*\xe4\"\n\x0fSourceModelType\x12\x0e\n\nUNKNOWN_MT\x10\x00\x12\x14\n\x10NEW_RELIC_POLICY\x10\x01\x12\x17\n\x13NEW_RELIC_CONDITION\x10\x02\x12\x14\n\x10NEW_RELIC_ENTITY\x10\x03\x12\x1e\n\x1aNEW_RELIC_ENTITY_DASHBOARD\x10\x04\x12 \n\x1cNEW_RELIC_ENTITY_APPLICATION\x10\x05\x12\x12\n\x0eNEW_RELIC_NRQL\x10\x06\x12!\n\x1dNEW_RELIC_ENTITY_DASHBOARD_V2\x10\x07\x12\x13\n\x0f\x44\x41TADOG_MONITOR\x10\x65\x12\x15\n\x11\x44\x41TADOG_DASHBOARD\x10\x66\x12 \n\x1c\x44\x41TADOG_LIVE_INTEGRATION_AWS\x10g\x12$\n DATADOG_LIVE_INTEGRATION_AWS_LOG\x10h\x12\"\n\x1e\x44\x41TADOG_LIVE_INTEGRATION_AZURE\x10i\x12\'\n#DATADOG_LIVE_INTEGRATION_CLOUDFLARE\x10j\x12#\n\x1f\x44\x41TADOG_LIVE_INTEGRATION_FASTLY\x10k\x12 \n\x1c\x44\x41TADOG_LIVE_INTEGRATION_GCP\x10l\x12&\n\"DATADOG_LIVE_INTEGRATION_CONFLUENT\x10m\x12\x13\n\x0f\x44\x41TADOG_SERVICE\x10n\x12\x12\n\x0e\x44\x41TADOG_METRIC\x10o\x12\x11\n\rDATADOG_QUERY\x10p\x12\x0f\n\x0b\x44\x41TADOG_APM\x10q\x12\x12\n\x0e\x44\x41TADOG_FIELDS\x10r\x12\x16\n\x11\x43LOUDWATCH_METRIC\x10\xc9\x01\x12\x19\n\x14\x43LOUDWATCH_LOG_GROUP\x10\xca\x01\x12\x1f\n\x1a\x43LOUDWATCH_LOG_GROUP_QUERY\x10\xcb\x01\x12\x16\n\x11\x43LOUDWATCH_ALARMS\x10\xcc\x01\x12\x12\n\rRDS_INSTANCES\x10\xcd\x01\x12\x19\n\x14\x43LOUDWATCH_DASHBOARD\x10\xce\x01\x12\x16\n\x11\x43ODEBUILD_PROJECT\x10\xcf\x01\x12\x17\n\x12GRAFANA_DATASOURCE\x10\xad\x02\x12\x16\n\x11GRAFANA_DASHBOARD\x10\xae\x02\x12!\n\x1cGRAFANA_TARGET_METRIC_PROMQL\x10\xaf\x02\x12\"\n\x1dGRAFANA_PROMETHEUS_DATASOURCE\x10\xb0\x02\x12\x17\n\x12GRAFANA_ALERT_RULE\x10\xb1\x02\x12\x1c\n\x17GRAFANA_LOKI_DATASOURCE\x10\xb2\x02\x12\x1d\n\x18GRAFANA_TEMPO_DATASOURCE\x10\xb3\x02\x12\x1a\n\x15GRAFANA_TEMPO_SERVICE\x10\xb4\x02\x12\x1e\n\x19GRAFANA_PROMETHEUS_METRIC\x10\xb5\x02\x12\x18\n\x13\x43LICKHOUSE_DATABASE\x10\x91\x03\x12\x15\n\x10\x43LICKHOUSE_TABLE\x10\x92\x03\x12\x12\n\rSLACK_CHANNEL\x10\xf5\x03\x12\r\n\x08MARKDOWN\x10\xd9\x04\x12\x0b\n\x06IFRAME\x10\xda\x04\x12\x13\n\x0ePOSTGRES_QUERY\x10\xbd\x05\x12\x13\n\x0ePOSTGRES_TABLE\x10\xbe\x05\x12\x10\n\x0b\x45KS_CLUSTER\x10\xa1\x06\x12\x12\n\rEKS_NAMESPACE\x10\xa2\x06\x12\x10\n\x0b\x45KS_SERVICE\x10\xa3\x06\x12\x13\n\x0e\x45KS_DEPLOYMENT\x10\xa4\x06\x12\x10\n\x0b\x45KS_INGRESS\x10\xa5\x06\x12\x17\n\x12\x45KS_NETWORK_POLICY\x10\xa6\x06\x12\x0c\n\x07\x45KS_HPA\x10\xa7\x06\x12\x13\n\x0e\x45KS_REPLICASET\x10\xa8\x06\x12\x14\n\x0f\x45KS_STATEFULSET\x10\xa9\x06\x12&\n!SQL_DATABASE_CONNECTION_RAW_QUERY\x10\x85\x07\x12\x17\n\x12SQL_DATABASE_TABLE\x10\x86\x07\x12\x14\n\x0f\x41ZURE_WORKSPACE\x10\xe9\x07\x12\x13\n\x0e\x41ZURE_RESOURCE\x10\xea\x07\x12\x16\n\x11\x41ZURE_AKS_CLUSTER\x10\xeb\x07\x12\x18\n\x13\x41ZURE_AKS_NAMESPACE\x10\xec\x07\x12\x19\n\x14\x41ZURE_AKS_DEPLOYMENT\x10\xed\x07\x12\x16\n\x11\x41ZURE_AKS_SERVICE\x10\xee\x07\x12\x16\n\x11\x41ZURE_AKS_INGRESS\x10\xef\x07\x12\x1d\n\x18\x41ZURE_AKS_NETWORK_POLICY\x10\xf0\x07\x12\x12\n\rAZURE_AKS_HPA\x10\xf1\x07\x12\x19\n\x14\x41ZURE_AKS_REPLICASET\x10\xf2\x07\x12\x1a\n\x15\x41ZURE_AKS_STATEFULSET\x10\xf3\x07\x12\x1a\n\x15\x41ZURE_VIRTUAL_MACHINE\x10\xf4\x07\x12\x0f\n\nAZURE_VMSS\x10\xf5\x07\x12\x1a\n\x15\x41ZURE_STORAGE_ACCOUNT\x10\xf6\x07\x12\x19\n\x14\x41ZURE_BLOB_CONTAINER\x10\xf7\x07\x12\x15\n\x10\x41ZURE_SQL_SERVER\x10\xf8\x07\x12\x17\n\x12\x41ZURE_SQL_DATABASE\x10\xf9\x07\x12\x19\n\x14\x41ZURE_COSMOS_ACCOUNT\x10\xfa\x07\x12\x1a\n\x15\x41ZURE_POSTGRES_SERVER\x10\xfb\x07\x12\x1c\n\x17\x41ZURE_POSTGRES_DATABASE\x10\xfc\x07\x12\x17\n\x12\x41ZURE_METRIC_ALERT\x10\xfd\x07\x12\x17\n\x12\x41ZURE_ACTION_GROUP\x10\xfe\x07\x12\x19\n\x14\x41ZURE_RESOURCE_GROUP\x10\xff\x07\x12\x16\n\x11\x41ZURE_REDIS_CACHE\x10\x80\x08\x12\x0f\n\nSSH_SERVER\x10\xcc\x08\x12\r\n\x08SSH_USER\x10\xcd\x08\x12\x19\n\x14GRAFANA_MIMIR_PROMQL\x10\xb1\t\x12\x10\n\x0bGKE_CLUSTER\x10\x95\n\x12\x12\n\rGKE_NAMESPACE\x10\x96\n\x12\x10\n\x0bGKE_SERVICE\x10\x97\n\x12\x13\n\x0eGKE_DEPLOYMENT\x10\x98\n\x12\x10\n\x0bGKE_INGRESS\x10\x99\n\x12\x17\n\x12GKE_NETWORK_POLICY\x10\x9a\n\x12\x0c\n\x07GKE_HPA\x10\x9b\n\x12\x13\n\x0eGKE_REPLICASET\x10\x9c\n\x12\x14\n\x0fGKE_STATEFULSET\x10\x9d\n\x12\x19\n\x14GCP_COMPUTE_INSTANCE\x10\x9e\n\x12\x17\n\x12GCP_INSTANCE_GROUP\x10\x9f\n\x12\x17\n\x12GCP_STORAGE_BUCKET\x10\xa0\n\x12\x1b\n\x16GCP_CLOUD_SQL_INSTANCE\x10\xa1\n\x12\x1b\n\x16GCP_CLOUD_SQL_DATABASE\x10\xa2\n\x12\x1a\n\x15GCP_MEMORYSTORE_REDIS\x10\xa3\n\x12\x15\n\x10GCP_ALERT_POLICY\x10\xa4\n\x12\x1d\n\x18GCP_NOTIFICATION_CHANNEL\x10\xa5\n\x12\x17\n\x12GCP_CLOUD_FUNCTION\x10\xa6\n\x12\x1a\n\x15GCP_CLOUD_RUN_SERVICE\x10\xa7\n\x12\x15\n\x10GCP_PUBSUB_TOPIC\x10\xa8\n\x12\x1c\n\x17GCP_PUBSUB_SUBSCRIPTION\x10\xa9\n\x12\x19\n\x14GCP_BIGQUERY_DATASET\x10\xaa\n\x12\x17\n\x12GCP_BIGQUERY_TABLE\x10\xab\n\x12\x14\n\x0fGCP_VPC_NETWORK\x10\xac\n\x12\x13\n\x0eGCP_SUBNETWORK\x10\xad\n\x12\x16\n\x11GCP_FIREWALL_RULE\x10\xae\n\x12\x16\n\x11GCP_LOAD_BALANCER\x10\xaf\n\x12\x0f\n\nGCP_SECRET\x10\xb0\n\x12\x18\n\x13GCP_SERVICE_ACCOUNT\x10\xb1\n\x12\x11\n\x0cGCP_LOG_SINK\x10\xb2\n\x12\x13\n\x0eGCP_LOG_METRIC\x10\xb3\n\x12\x15\n\x10MS_TEAMS_CHANNEL\x10\xf9\n\x12\x17\n\x12PAGERDUTY_INCIDENT\x10\xdd\x0b\x12\x19\n\x14\x45LASTIC_SEARCH_INDEX\x10\xc1\x0c\x12\x1c\n\x17\x45LASTIC_SEARCH_SERVICES\x10\xc2\x0c\x12\x1e\n\x19\x45LASTIC_SEARCH_DASHBOARDS\x10\xc3\x0c\x12\"\n\x1d\x45LASTIC_SEARCH_INDEX_PATTERNS\x10\xc4\x0c\x12\x0f\n\nGCM_METRIC\x10\xa5\r\x12\x12\n\rGCM_DASHBOARD\x10\xa6\r\x12$\n\x1fGCM_CLOUD_RUN_SERVICE_DASHBOARD\x10\xa7\r\x12\x15\n\x10ZENDUTY_INCIDENT\x10\x89\x0e\x12\x14\n\x0fROOTLY_INCIDENT\x10\xed\x0e\x12\x19\n\x14OPS_GENIE_ESCALATION\x10\xd1\x0f\x12\x13\n\x0eOPS_GENIE_TEAM\x10\xd2\x0f\x12\x16\n\x11GOOGLE_CHAT_SPACE\x10\xb5\x10\x12\x15\n\x10MONGODB_DATABASE\x10\x99\x11\x12\x17\n\x12MONGODB_COLLECTION\x10\x9a\x11\x12\x16\n\x11OPEN_SEARCH_INDEX\x10\xfd\x11\x12\x12\n\rASANA_PROJECT\x10\xe1\x12\x12\x12\n\rMODELS_ACTIVE\x10\xc5\x13\x12\x16\n\x11GITHUB_REPOSITORY\x10\xa9\x14\x12\x12\n\rGITHUB_MEMBER\x10\xaa\x14\x12\x11\n\x0cJIRA_PROJECT\x10\x8d\x15\x12\x0e\n\tJIRA_USER\x10\x8e\x15\x12\x10\n\x0b\x41RGOCD_APPS\x10\xf1\x15\x12\x11\n\x0cJENKINS_JOBS\x10\xd5\x16\x12\x13\n\x0ePOSTHOG_PERSON\x10\xb9\x17\x12\x12\n\rPOSTHOG_GROUP\x10\xba\x17\x12\x13\n\x0ePOSTHOG_COHORT\x10\xbb\x17\x12\x15\n\x10POSTHOG_PROPERTY\x10\xbc\x17\x12\x16\n\x11POSTHOG_DASHBOARD\x10\xbd\x17\x12\x14\n\x0fPOSTHOG_PROJECT\x10\xbe\x17\x12\x10\n\x0b\x45\x43S_CLUSTER\x10\xa1\x1f\x12\r\n\x08\x45\x43S_TASK\x10\xa2\x1f\x12\x10\n\x0b\x45\x43S_SERVICE\x10\xa3\x1f\x12\x15\n\x10SIGNOZ_DASHBOARD\x10\x89\'\x12\x11\n\x0cSIGNOZ_ALERT\x10\x8a\'\x12\x12\n\rSIGNOZ_METRIC\x10\x8b\'\x12\x13\n\x0eSIGNOZ_SERVICE\x10\x8c\'\x12\x1a\n\x15SIGNOZ_LOG_ATTRIBUTES\x10\x8d\'\x12\x1d\n\x18SIGNOZ_CLICKHOUSE_SCHEMA\x10\x8e\'\x12\x19\n\x14KUBERNETES_NAMESPACE\x10\xf1.\x12\x17\n\x12KUBERNETES_SERVICE\x10\xf2.\x12\x1a\n\x15KUBERNETES_DEPLOYMENT\x10\xf3.\x12\x17\n\x12KUBERNETES_INGRESS\x10\xf4.\x12\x1e\n\x19KUBERNETES_NETWORK_POLICY\x10\xf5.\x12\x13\n\x0eKUBERNETES_HPA\x10\xf6.\x12\x1a\n\x15KUBERNETES_REPLICASET\x10\xf7.\x12\x1b\n\x16KUBERNETES_STATEFULSET\x10\xf8.\x12\x1b\n\x16KUBERNETES_NETWORK_MAP\x10\xf9.\x12\x13\n\x0eSENTRY_PROJECT\x10\xd9\x36\x12\x18\n\x13\x43ORALOGIX_DASHBOARD\x10\xc1>\x12\x1c\n\x17\x43ORALOGIX_INDEX_MAPPING\x10\xc2>\x12\x16\n\x11\x43ORALOGIX_SERVICE\x10\xc3>\x12\x1a\n\x15\x43ORALOGIX_APM_SERVICE\x10\xc4>\x12\x18\n\x13VICTORIA_LOGS_FIELD\x10\xa9\x46\x12\x0e\n\tMCP_TOOLS\x10\x8dG\x12\x0f\n\nMCP_ASSETS\x10\x8eG\x12\x11\n\x0cLINEAR_TEAMS\x10\xf1G\x12\x11\n\x0cLINEAR_USERS\x10\xf2G\x12\x14\n\x0fLINEAR_PROJECTS\x10\xf3G\x12\x17\n\x12METABASE_DASHBOARD\x10\xd5H\x12\x12\n\rMETABASE_CARD\x10\xd6H\x12\x16\n\x11METABASE_DATABASE\x10\xd7H\x12\x18\n\x13METABASE_COLLECTION\x10\xd8H\x12\x1a\n\x15METABASE_SUBSCRIPTION\x10\xd9H\x12\x13\n\x0e\x44\x41TABRICKS_JOB\x10\xb9I\x12\x17\n\x12\x44\x41TABRICKS_CLUSTER\x10\xbaI\x12\x1d\n\x18\x44\x41TABRICKS_SQL_WAREHOUSE\x10\xbbI*\xac\x02\n\x07\x43ontext\x12\r\n\tUNKNOWN_C\x10\x00\x12\t\n\x05\x45VENT\x10\x01\x12\x17\n\x13MONITOR_TRANSACTION\x10\x02\x12\x13\n\x0f\x45NTITY_INSTANCE\x10\x03\x12\x0e\n\nEVENT_TYPE\x10\x04\x12\x0b\n\x07MONITOR\x10\x05\x12\n\n\x06\x45NTITY\x10\x06\x12\x15\n\x11\x45VENTS_CLICKHOUSE\x10\x07\x12\x0e\n\nPANEL_NAME\x10\x08\x12\x12\n\x0e\x44\x41SHBOARD_NAME\x10\t\x12\x1f\n\x1b\x45VENTS_ALERT_OPS_CLICKHOUSE\x10\n\x12\x0f\n\x0bSLACK_ALERT\x10\x0b\x12\x1e\n\x1a\x45VENTS_PRODIGAL_CLICKHOUSE\x10\x0c\x12\r\n\tALERT_OPS\x10\r\x12\x14\n\x10\x41LERT_MIDDLEWARE\x10\x0e*\x92\x02\n\x12RecentArtifactType\x12\x0e\n\nRA_UNKNOWN\x10\x00\x12\x12\n\x0eRA_GITHUB_REPO\x10\x01\x12\x14\n\x10RA_GITHUB_COMMIT\x10\x02\x12\x10\n\x0cRA_GITHUB_PR\x10\x03\x12\x15\n\x11RA_GITHUB_RELEASE\x10\x04\x12\x12\n\x0eRA_GITLAB_REPO\x10\x65\x12\x14\n\x10RA_GITLAB_COMMIT\x10\x66\x12\x10\n\x0cRA_GITLAB_MR\x10g\x12\x15\n\x11RA_GITLAB_RELEASE\x10h\x12\x16\n\x11RA_BITBUCKET_REPO\x10\xc9\x01\x12\x18\n\x13RA_BITBUCKET_COMMIT\x10\xca\x01\x12\x14\n\x0fRA_BITBUCKET_PR\x10\xcb\x01\x62\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x16\x63ore/protos/base.proto\x12\x0b\x63ore.protos\x1a\x1egoogle/protobuf/wrappers.proto\".\n\tTimeRange\x12\x10\n\x08time_geq\x18\x01 \x01(\x04\x12\x0f\n\x07time_lt\x18\x02 \x01(\x04\"a\n\x04Page\x12+\n\x05limit\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.UInt32Value\x12,\n\x06offset\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.UInt32Value\"a\n\rOpDescription\x12\x1b\n\x02op\x18\x01 \x01(\x0e\x32\x0f.core.protos.Op\x12\r\n\x05label\x18\x02 \x01(\t\x12\x10\n\x08is_unary\x18\x03 \x01(\x08\x12\x12\n\nis_logical\x18\x04 \x01(\x08\"\xc7\x02\n\x10TaskCronSchedule\x12-\n\x07minutes\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12+\n\x05hours\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x36\n\x10\x64\x61ys_of_the_week\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x37\n\x11\x64\x61ys_of_the_month\x18\x04 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x36\n\x10\x64\x61ys_of_the_year\x18\x05 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12.\n\x08timezone\x18\x06 \x01(\x0b\x32\x1c.google.protobuf.StringValue\"I\n\x0cTaskInterval\x12\x39\n\x13interval_in_seconds\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.UInt64Value\"j\n\x0cTaskCronRule\x12*\n\x04rule\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12.\n\x08timezone\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.StringValue\"\xef\x01\n\x08\x45ventKey\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x0b\n\x03key\x18\x02 \x01(\t\x12/\n\x08key_type\x18\x03 \x01(\x0e\x32\x1d.core.protos.EventKey.KeyType\x12\x31\n\nevent_type\x18\x04 \x01(\x0b\x32\x1d.core.protos.EventTypePartial\"f\n\x07KeyType\x12\x0b\n\x07UNKNOWN\x10\x00\x12\n\n\x06STRING\x10\x01\x12\x08\n\x04LONG\x10\x02\x12\n\n\x06\x44OUBLE\x10\x03\x12\x0b\n\x07\x42OOLEAN\x10\x04\x12\x08\n\x04\x42YTE\x10\x05\x12\t\n\x05\x41RRAY\x10\x06\x12\n\n\x06OBJECT\x10\x07\"\x81\x01\n\tEventType\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x0c\n\x04name\x18\x02 \x01(\t\x12#\n\x04keys\x18\x03 \x03(\x0b\x32\x15.core.protos.EventKey\x12\x35\n\revent_sources\x18\x04 \x03(\x0e\x32\x1e.core.protos.Event.EventSource\"\xaa\x01\n\x0e\x45ventTypeStats\x12\x30\n\nkeys_count\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.UInt64Value\x12\x31\n\x0b\x65vent_count\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.UInt64Value\x12\x33\n\rmonitor_count\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.UInt64Value\",\n\x10\x45ventTypePartial\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x0c\n\x04name\x18\x02 \x01(\t\"q\n\x10\x45ventTypeSummary\x12\x31\n\nevent_type\x18\x01 \x01(\x0b\x32\x1d.core.protos.EventTypePartial\x12*\n\x05stats\x18\x02 \x01(\x0b\x32\x1b.core.protos.EventTypeStats\"m\n\x13\x45ventTypeDefinition\x12*\n\nevent_type\x18\x01 \x01(\x0b\x32\x16.core.protos.EventType\x12*\n\x05stats\x18\x02 \x01(\x0b\x32\x1b.core.protos.EventTypeStats\"\xdd\x02\n\x05\x45vent\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x31\n\nevent_type\x18\x02 \x01(\x0b\x32\x1d.core.protos.EventTypePartial\x12\"\n\x03kvs\x18\x03 \x03(\x0b\x32\x15.core.protos.KeyValue\x12\x11\n\ttimestamp\x18\x04 \x01(\x10\x12\x34\n\x0c\x65vent_source\x18\x05 \x01(\x0e\x32\x1e.core.protos.Event.EventSource\"\xa7\x01\n\x0b\x45ventSource\x12\x0b\n\x07UNKNOWN\x10\x00\x12\n\n\x06SAMPLE\x10\x01\x12\x07\n\x03\x41PI\x10\x02\x12\x07\n\x03SDK\x10\x03\x12\x0b\n\x07SEGMENT\x10\x04\x12\r\n\tAMPLITUDE\x10\x05\x12\x07\n\x03SNS\x10\x06\x12\x0e\n\nCLOUDWATCH\x10\x07\x12\r\n\tCOLLECTOR\x10\x08\x12\x0f\n\x0b\x41WS_KINESIS\x10\t\x12\t\n\x05SLACK\x10\n\x12\r\n\tOPS_GENIE\x10\x0b\"\xe5\x01\n\x05Value\x12\x16\n\x0cstring_value\x18\x01 \x01(\tH\x00\x12\x14\n\nbool_value\x18\x02 \x01(\x08H\x00\x12\x13\n\tint_value\x18\x03 \x01(\x03H\x00\x12\x16\n\x0c\x64ouble_value\x18\x04 \x01(\x01H\x00\x12.\n\x0b\x61rray_value\x18\x05 \x01(\x0b\x32\x17.core.protos.ArrayValueH\x00\x12\x31\n\x0ckvlist_value\x18\x06 \x01(\x0b\x32\x19.core.protos.KeyValueListH\x00\x12\x15\n\x0b\x62ytes_value\x18\x07 \x01(\x0cH\x00\x42\x07\n\x05value\"0\n\nArrayValue\x12\"\n\x06values\x18\x01 \x03(\x0b\x32\x12.core.protos.Value\"5\n\x0cKeyValueList\x12%\n\x06values\x18\x01 \x03(\x0b\x32\x15.core.protos.KeyValue\":\n\x08KeyValue\x12\x0b\n\x03key\x18\x01 \x01(\t\x12!\n\x05value\x18\x02 \x01(\x0b\x32\x12.core.protos.Value*Q\n\x08\x46unction\x12\r\n\tUNKNOWN_F\x10\x00\x12\t\n\x05\x41VG_F\x10\x01\x12\t\n\x05SUM_F\x10\x02\x12\t\n\x05MIN_F\x10\x03\x12\t\n\x05MAX_F\x10\x04\x12\n\n\x06LAST_F\x10\x05*\xb7\x01\n\x08Operator\x12\r\n\tUNKNOWN_O\x10\x00\x12\x12\n\x0eGREATER_THAN_O\x10\x01\x12\x18\n\x14GREATER_THAN_EQUAL_O\x10\x02\x12\x0f\n\x0bLESS_THAN_O\x10\x03\x12\x15\n\x11LESS_THAN_EQUAL_O\x10\x04\x12\x0b\n\x07\x45QUAL_O\x10\x05\x12\x0f\n\x0bNOT_EQUAL_O\x10\x06\x12\n\n\x06LIKE_O\x10\x07\x12\x0c\n\x08\x45XISTS_O\x10\x08\x12\x0e\n\nCONTAINS_O\x10\t*D\n\x0fLogicalOperator\x12\x0e\n\nUNKNOWN_LO\x10\x00\x12\n\n\x06\x41ND_LO\x10\x01\x12\t\n\x05OR_LO\x10\x02\x12\n\n\x06NOT_LO\x10\x03*\x9c\x01\n\x02Op\x12\x0e\n\nUNKNOWN_OP\x10\x00\x12\x06\n\x02\x45Q\x10\x01\x12\x07\n\x03NEQ\x10\x02\x12\x06\n\x02GT\x10\x03\x12\x06\n\x02LT\x10\x04\x12\x07\n\x03GTE\x10\x05\x12\x07\n\x03LTE\x10\x06\x12\x06\n\x02IN\x10\x07\x12\n\n\x06NOT_IN\x10\x08\x12\x0b\n\x07IS_NULL\x10\t\x12\n\n\x06\x45XISTS\x10\n\x12\x0c\n\x08\x43ONTAINS\x10\x0b\x12\x07\n\x03\x41ND\x10\x14\x12\x06\n\x02OR\x10\x15\x12\x07\n\x03NOT\x10\x16*\xd4\t\n\x06Source\x12\x0b\n\x07UNKNOWN\x10\x00\x12\n\n\x06SENTRY\x10\x01\x12\x0b\n\x07SEGMENT\x10\x02\x12\x12\n\x0e\x45LASTIC_SEARCH\x10\x03\x12\r\n\tAMPLITUDE\x10\x04\x12\x0f\n\x0b\x41WS_KINESIS\x10\x05\x12\x0e\n\nCLOUDWATCH\x10\x06\x12\r\n\tCLEVERTAP\x10\x07\x12\x0f\n\x0bRUDDERSTACK\x10\x08\x12\x0c\n\x08MOENGAGE\x10\t\x12\t\n\x05\x43RIBL\x10\n\x12\t\n\x05KAFKA\x10\x0b\x12\x0b\n\x07\x44\x41TADOG\x10\x0c\x12\x0c\n\x08\x46ILEBEAT\x10\r\x12\x0c\n\x08LOGSTASH\x10\x0e\x12\x0b\n\x07\x46LUENTD\x10\x0f\x12\r\n\tFLUENTBIT\x10\x10\x12\x0e\n\nPAGER_DUTY\x10\x11\x12\r\n\tNEW_RELIC\x10\x12\x12\t\n\x05SLACK\x10\x13\x12\x0f\n\x0bHONEYBADGER\x10\x14\x12\x0f\n\x0bGOOGLE_CHAT\x10\x15\x12\x11\n\rDATADOG_OAUTH\x10\x16\x12\x07\n\x03GCM\x10\x17\x12\x0e\n\nPROMETHEUS\x10\x18\x12\x0f\n\x0b\x45LASTIC_APM\x10\x19\x12\x14\n\x10VICTORIA_METRICS\x10\x1a\x12\x11\n\rSLACK_CONNECT\x10\x1b\x12\x0b\n\x07GRAFANA\x10\x1c\x12\x0e\n\nCLICKHOUSE\x10\x1d\x12\x11\n\rDOCUMENTATION\x10\x1e\x12\x0c\n\x08POSTGRES\x10\x1f\x12\r\n\tOPS_GENIE\x10 \x12\x07\n\x03\x45KS\x10!\x12\x0f\n\x0b\x41GENT_PROXY\x10\"\x12\x0f\n\x0bGRAFANA_VPC\x10#\x12\n\n\x06GITHUB\x10$\x12\x1b\n\x17SQL_DATABASE_CONNECTION\x10%\x12\x0b\n\x07OPEN_AI\x10&\x12\x11\n\rREMOTE_SERVER\x10\'\x12\x07\n\x03\x41PI\x10(\x12\x08\n\x04\x42\x41SH\x10)\x12\t\n\x05\x41ZURE\x10*\x12\x11\n\rGRAFANA_MIMIR\x10+\x12\x07\n\x03GKE\x10,\x12\x0c\n\x08MS_TEAMS\x10-\x12\x10\n\x0cGRAFANA_LOKI\x10.\x12\x0e\n\nKUBERNETES\x10/\x12\x08\n\x04SMTP\x10\x30\x12\r\n\tBIG_QUERY\x10\x31\x12\x0b\n\x07ZENDUTY\x10\x32\x12\n\n\x06ROOTLY\x10\x33\x12\x0e\n\nJIRA_CLOUD\x10\x34\x12\t\n\x05\x41SANA\x10\x35\x12\x14\n\x10\x43ONFLUENCE_CLOUD\x10\x36\x12\x1a\n\x16\x43ONFLUENCE_SELF_HOSTED\x10\x37\x12\x10\n\x0cGOOGLE_DRIVE\x10\x38\x12\n\n\x06NOTION\x10\x39\x12\x13\n\x0f\x44RD_PROXY_AGENT\x10:\x12\x0b\n\x07MONGODB\x10;\x12\x0f\n\x0bOPEN_SEARCH\x10<\x12\n\n\x06LINEAR\x10=\x12\x0b\n\x07JENKINS\x10>\x12\x12\n\x0eGITHUB_ACTIONS\x10?\x12\x15\n\x11\x43USTOM_STRATEGIES\x10@\x12\n\n\x06\x41RGOCD\x10\x41\x12\x15\n\x11\x44RD_ALERT_WEBHOOK\x10\x42\x12\x0b\n\x07ROLLBAR\x10\x43\x12\n\n\x06LAMBDA\x10\x44\x12\x0b\n\x07\x42ROWSER\x10\x45\x12\x0b\n\x07POSTHOG\x10\x46\x12\x0c\n\x08MIXPANEL\x10G\x12\n\n\x06SIGNOZ\x10H\x12\r\n\tBITBUCKET\x10I\x12\r\n\tCORALOGIX\x10J\x12\n\n\x06RENDER\x10K\x12\x0e\n\nMCP_SERVER\x10L\x12\x11\n\rVICTORIA_LOGS\x10M\x12\x0c\n\x08METABASE\x10N\x12\x0e\n\nDATABRICKS\x10O\x12\x0b\n\x07\x43HECKLY\x10P*\x88\x1e\n\rSourceKeyType\x12\x0f\n\x0bUNKNOWN_SKT\x10\x00\x12\x12\n\x0eSENTRY_API_KEY\x10\x01\x12\x13\n\x0fSENTRY_ORG_SLUG\x10\x06\x12\x13\n\x0f\x44\x41TADOG_APP_KEY\x10\x02\x12\x13\n\x0f\x44\x41TADOG_API_KEY\x10\x03\x12\x16\n\x12\x44\x41TADOG_AUTH_TOKEN\x10\x0f\x12\x16\n\x12\x44\x41TADOG_API_DOMAIN\x10\x12\x12\x14\n\x10NEWRELIC_API_KEY\x10\x04\x12\x13\n\x0fNEWRELIC_APP_ID\x10\x05\x12\x16\n\x12NEWRELIC_QUERY_KEY\x10\x07\x12\x17\n\x13NEWRELIC_API_DOMAIN\x10\x13\x12\x18\n\x14SLACK_BOT_AUTH_TOKEN\x10\x08\x12\x15\n\x11SLACK_CHANNEL_SKT\x10\t\x12\x10\n\x0cSLACK_APP_ID\x10.\x12\x18\n\x13SLACK_APP_CLIENT_ID\x10\x8d\x01\x12\x1c\n\x17SLACK_APP_CLIENT_SECRET\x10\x8e\x01\x12\x1d\n\x18SLACK_APP_SIGNING_SECRET\x10\x8f\x01\x12\x18\n\x14HONEYBADGER_USERNAME\x10\n\x12\x18\n\x14HONEYBADGER_PASSWORD\x10\x0b\x12\x1a\n\x16HONEYBADGER_PROJECT_ID\x10\x0c\x12\x12\n\x0e\x41WS_ACCESS_KEY\x10\r\x12\x12\n\x0e\x41WS_SECRET_KEY\x10\x0e\x12\x0e\n\nAWS_REGION\x10\x14\x12\x18\n\x14\x41WS_ASSUMED_ROLE_ARN\x10\x17\x12\x10\n\x0c\x45KS_ROLE_ARN\x10(\x12\x1a\n\x16\x41WS_DRD_CLOUD_ROLE_ARN\x10]\x12\x14\n\x0f\x41WS_EXTERNAL_ID\x10\xa5\x01\x12\x1f\n\x1bGOOGLE_CHAT_BOT_OAUTH_TOKEN\x10\x10\x12\x1a\n\x16GOOGLE_CHAT_BOT_SPACES\x10\x11\x12\x10\n\x0cGRAFANA_HOST\x10\x15\x12\x13\n\x0fGRAFANA_API_KEY\x10\x16\x12\x16\n\x11GRAFANA_TEAM_HOST\x10\x99\x01\x12\x18\n\x14\x43LICKHOUSE_INTERFACE\x10\x18\x12\x13\n\x0f\x43LICKHOUSE_HOST\x10\x19\x12\x13\n\x0f\x43LICKHOUSE_PORT\x10\x1a\x12\x13\n\x0f\x43LICKHOUSE_USER\x10\x1b\x12\x17\n\x13\x43LICKHOUSE_PASSWORD\x10\x1c\x12\x12\n\x0eGCM_PROJECT_ID\x10\x1d\x12\x13\n\x0fGCM_PRIVATE_KEY\x10\x1e\x12\x14\n\x10GCM_CLIENT_EMAIL\x10\x1f\x12\x11\n\rGCM_TOKEN_URI\x10 \x12\x1c\n\x18GCM_SERVICE_ACCOUNT_JSON\x10p\x12\x11\n\rPOSTGRES_HOST\x10!\x12\x11\n\rPOSTGRES_USER\x10\"\x12\x15\n\x11POSTGRES_PASSWORD\x10#\x12\x11\n\rPOSTGRES_PORT\x10$\x12\x15\n\x11POSTGRES_DATABASE\x10%\x12\x14\n\x10POSTGRES_OPTIONS\x10&\x12&\n\"SQL_DATABASE_CONNECTION_STRING_URI\x10\'\x12\x16\n\x12PAGER_DUTY_API_KEY\x10)\x12\x1f\n\x1bPAGER_DUTY_CONFIGURED_EMAIL\x10?\x12\x15\n\x11OPS_GENIE_API_KEY\x10*\x12\x14\n\x10\x41GENT_PROXY_HOST\x10+\x12\x17\n\x13\x41GENT_PROXY_API_KEY\x10,\x12\x10\n\x0cGITHUB_TOKEN\x10-\x12\x0e\n\nGITHUB_ORG\x10i\x12\x13\n\x0fOPEN_AI_API_KEY\x10/\x12\x15\n\x11REMOTE_SERVER_PEM\x10\x31\x12\x16\n\x12REMOTE_SERVER_USER\x10\x32\x12\x16\n\x12REMOTE_SERVER_HOST\x10\x33\x12\x1a\n\x16REMOTE_SERVER_PASSWORD\x10\x34\x12\x16\n\x12REMOTE_SERVER_PORT\x10o\x12\x0e\n\nMIMIR_HOST\x10\x35\x12\x12\n\x0eX_SCOPE_ORG_ID\x10\x36\x12\x0e\n\nSSL_VERIFY\x10\x37\x12\x19\n\x15\x41ZURE_SUBSCRIPTION_ID\x10\x38\x12\x13\n\x0f\x41ZURE_TENANT_ID\x10\x39\x12\x13\n\x0f\x41ZURE_CLIENT_ID\x10:\x12\x17\n\x13\x41ZURE_CLIENT_SECRET\x10;\x12\x12\n\x0eGKE_PROJECT_ID\x10<\x12\x1c\n\x18GKE_SERVICE_ACCOUNT_JSON\x10=\x12\"\n\x1eMS_TEAMS_CONNECTOR_WEBHOOK_URL\x10>\x12\x1b\n\x17\x45LASTIC_SEARCH_PROTOCOL\x10@\x12\x17\n\x13\x45LASTIC_SEARCH_HOST\x10\x41\x12\x17\n\x13\x45LASTIC_SEARCH_PORT\x10\x42\x12\x1d\n\x19\x45LASTIC_SEARCH_API_KEY_ID\x10\x43\x12\x1a\n\x16\x45LASTIC_SEARCH_API_KEY\x10\x44\x12\x19\n\x15GRAFANA_LOKI_PROTOCOL\x10\x45\x12\x15\n\x11GRAFANA_LOKI_HOST\x10\x46\x12\x15\n\x11GRAFANA_LOKI_PORT\x10G\x12\x1b\n\x17KUBERNETES_CLUSTER_NAME\x10H\x12!\n\x1dKUBERNETES_CLUSTER_API_SERVER\x10I\x12\x1c\n\x18KUBERNETES_CLUSTER_TOKEN\x10J\x12\x31\n-KUBERNETES_CLUSTER_CERTIFICATE_AUTHORITY_DATA\x10K\x12\x31\n-KUBERNETES_CLUSTER_CERTIFICATE_AUTHORITY_PATH\x10L\x12\r\n\tSMTP_HOST\x10M\x12\r\n\tSMTP_PORT\x10N\x12\r\n\tSMTP_USER\x10O\x12\x11\n\rSMTP_PASSWORD\x10P\x12\x18\n\x14\x42IG_QUERY_PROJECT_ID\x10Q\x12\"\n\x1e\x42IG_QUERY_SERVICE_ACCOUNT_JSON\x10R\x12\x13\n\x0fZENDUTY_API_KEY\x10S\x12\x12\n\x0eROOTLY_API_KEY\x10T\x12\x16\n\x12JIRA_CLOUD_API_KEY\x10U\x12\x0f\n\x0bJIRA_DOMAIN\x10m\x12\x0e\n\nJIRA_EMAIL\x10n\x12\x16\n\x12\x41SANA_ACCESS_TOKEN\x10V\x12\x1c\n\x18\x43ONFLUENCE_CLOUD_API_KEY\x10W\x12\x1e\n\x19\x43ONFLUENCE_CLOUD_SITE_URL\x10\x8b\x01\x12-\n(CONFLUENCE_CLOUD_ATLASSIAN_ACCOUNT_EMAIL\x10\x8c\x01\x12\x12\n\x0eNOTION_API_KEY\x10X\x12\x18\n\x14\x44RD_PROXY_AGENT_HOST\x10Y\x12\x1d\n\x19\x44RD_PROXY_AGENT_API_TOKEN\x10Z\x12\x1b\n\x17\x44RD_PROXY_AGENT_API_KEY\x10[\x12\x1d\n\x19MONGODB_CONNECTION_STRING\x10\\\x12\x18\n\x14OPEN_SEARCH_PROTOCOL\x10^\x12\x14\n\x10OPEN_SEARCH_HOST\x10_\x12\x14\n\x10OPEN_SEARCH_PORT\x10`\x12\x18\n\x14OPEN_SEARCH_USERNAME\x10\x61\x12\x18\n\x14OPEN_SEARCH_PASSWORD\x10\x62\x12\x12\n\x0eLINEAR_API_KEY\x10\x63\x12\x0f\n\x0bJENKINS_URL\x10\x64\x12\x14\n\x10JENKINS_USERNAME\x10\x65\x12\x15\n\x11JENKINS_API_TOKEN\x10\x66\x12\x11\n\rJENKINS_CRUMB\x10q\x12\x18\n\x14GITHUB_ACTIONS_TOKEN\x10g\x12 \n\x1c\x43USTOM_STRATEGIES_ACCOUNT_ID\x10h\x12\x11\n\rARGOCD_SERVER\x10j\x12\x10\n\x0c\x41RGOCD_TOKEN\x10k\x12\x18\n\x14ROLLBAR_ACCESS_TOKEN\x10l\x12\x13\n\x0fPOSTHOG_API_KEY\x10y\x12\x14\n\x10POSTHOG_APP_HOST\x10z\x12\x16\n\x12POSTHOG_PROJECT_ID\x10{\x12&\n!MIXPANEL_SERVICE_ACCOUNT_USERNAME\x10\x83\x01\x12$\n\x1fMIXPANEL_SERVICE_ACCOUNT_SECRET\x10\x84\x01\x12\x14\n\x0fMIXPANEL_DOMAIN\x10\x85\x01\x12\x18\n\x13MIXPANEL_PROJECT_ID\x10\x86\x01\x12\x1a\n\x15MIXPANEL_WORKSPACE_ID\x10\x87\x01\x12\x13\n\x0eSIGNOZ_API_URL\x10\x88\x01\x12\x15\n\x10SIGNOZ_API_TOKEN\x10\x89\x01\x12\x10\n\x0bKIBANA_HOST\x10\x8a\x01\x12\x18\n\x13\x42ITBUCKET_WORKSPACE\x10\x90\x01\x12\x16\n\x11\x42ITBUCKET_API_KEY\x10\x91\x01\x12\x13\n\x0e\x42ITBUCKET_REPO\x10\x92\x01\x12\x13\n\x0eRENDER_API_KEY\x10\x93\x01\x12\x16\n\x11\x43ORALOGIX_API_KEY\x10\x94\x01\x12\x17\n\x12\x43ORALOGIX_ENDPOINT\x10\x95\x01\x12\x15\n\x10\x43ORALOGIX_DOMAIN\x10\x98\x01\x12\x18\n\x13MCP_SERVER_BASE_URL\x10\x96\x01\x12\x1c\n\x17MCP_SERVER_AUTH_HEADERS\x10\x97\x01\x12\x1f\n\x1aMCP_SERVER_PASS_USER_EMAIL\x10\xa4\x01\x12\x1b\n\x16VICTORIA_LOGS_PROTOCOL\x10\x9a\x01\x12\x17\n\x12VICTORIA_LOGS_HOST\x10\x9b\x01\x12\x17\n\x12VICTORIA_LOGS_PORT\x10\x9c\x01\x12\x1a\n\x15VICTORIA_LOGS_HEADERS\x10\x9d\x01\x12\x12\n\rGITHUB_APP_ID\x10\x9e\x01\x12\x1b\n\x16GITHUB_APP_PRIVATE_KEY\x10\x9f\x01\x12\x1f\n\x1aGITHUB_APP_INSTALLATION_ID\x10\xa0\x01\x12\x1c\n\x17GITHUB_APP_ACCESS_TOKEN\x10\xa1\x01\x12\x11\n\x0cMETABASE_URL\x10\xa2\x01\x12\x15\n\x10METABASE_API_KEY\x10\xa3\x01\x12\x14\n\x0f\x44\x41TABRICKS_HOST\x10\xa6\x01\x12\x15\n\x10\x44\x41TABRICKS_TOKEN\x10\xa7\x01\x12\x13\n\x0eGITHUB_API_URL\x10\xa8\x01\x12\x14\n\x0f\x43HECKLY_API_KEY\x10\xa9\x01\x12\x17\n\x12\x43HECKLY_ACCOUNT_ID\x10\xaa\x01*\xe4\"\n\x0fSourceModelType\x12\x0e\n\nUNKNOWN_MT\x10\x00\x12\x14\n\x10NEW_RELIC_POLICY\x10\x01\x12\x17\n\x13NEW_RELIC_CONDITION\x10\x02\x12\x14\n\x10NEW_RELIC_ENTITY\x10\x03\x12\x1e\n\x1aNEW_RELIC_ENTITY_DASHBOARD\x10\x04\x12 \n\x1cNEW_RELIC_ENTITY_APPLICATION\x10\x05\x12\x12\n\x0eNEW_RELIC_NRQL\x10\x06\x12!\n\x1dNEW_RELIC_ENTITY_DASHBOARD_V2\x10\x07\x12\x13\n\x0f\x44\x41TADOG_MONITOR\x10\x65\x12\x15\n\x11\x44\x41TADOG_DASHBOARD\x10\x66\x12 \n\x1c\x44\x41TADOG_LIVE_INTEGRATION_AWS\x10g\x12$\n DATADOG_LIVE_INTEGRATION_AWS_LOG\x10h\x12\"\n\x1e\x44\x41TADOG_LIVE_INTEGRATION_AZURE\x10i\x12\'\n#DATADOG_LIVE_INTEGRATION_CLOUDFLARE\x10j\x12#\n\x1f\x44\x41TADOG_LIVE_INTEGRATION_FASTLY\x10k\x12 \n\x1c\x44\x41TADOG_LIVE_INTEGRATION_GCP\x10l\x12&\n\"DATADOG_LIVE_INTEGRATION_CONFLUENT\x10m\x12\x13\n\x0f\x44\x41TADOG_SERVICE\x10n\x12\x12\n\x0e\x44\x41TADOG_METRIC\x10o\x12\x11\n\rDATADOG_QUERY\x10p\x12\x0f\n\x0b\x44\x41TADOG_APM\x10q\x12\x12\n\x0e\x44\x41TADOG_FIELDS\x10r\x12\x16\n\x11\x43LOUDWATCH_METRIC\x10\xc9\x01\x12\x19\n\x14\x43LOUDWATCH_LOG_GROUP\x10\xca\x01\x12\x1f\n\x1a\x43LOUDWATCH_LOG_GROUP_QUERY\x10\xcb\x01\x12\x16\n\x11\x43LOUDWATCH_ALARMS\x10\xcc\x01\x12\x12\n\rRDS_INSTANCES\x10\xcd\x01\x12\x19\n\x14\x43LOUDWATCH_DASHBOARD\x10\xce\x01\x12\x16\n\x11\x43ODEBUILD_PROJECT\x10\xcf\x01\x12\x17\n\x12GRAFANA_DATASOURCE\x10\xad\x02\x12\x16\n\x11GRAFANA_DASHBOARD\x10\xae\x02\x12!\n\x1cGRAFANA_TARGET_METRIC_PROMQL\x10\xaf\x02\x12\"\n\x1dGRAFANA_PROMETHEUS_DATASOURCE\x10\xb0\x02\x12\x17\n\x12GRAFANA_ALERT_RULE\x10\xb1\x02\x12\x1c\n\x17GRAFANA_LOKI_DATASOURCE\x10\xb2\x02\x12\x1d\n\x18GRAFANA_TEMPO_DATASOURCE\x10\xb3\x02\x12\x1a\n\x15GRAFANA_TEMPO_SERVICE\x10\xb4\x02\x12\x1e\n\x19GRAFANA_PROMETHEUS_METRIC\x10\xb5\x02\x12\x18\n\x13\x43LICKHOUSE_DATABASE\x10\x91\x03\x12\x15\n\x10\x43LICKHOUSE_TABLE\x10\x92\x03\x12\x12\n\rSLACK_CHANNEL\x10\xf5\x03\x12\r\n\x08MARKDOWN\x10\xd9\x04\x12\x0b\n\x06IFRAME\x10\xda\x04\x12\x13\n\x0ePOSTGRES_QUERY\x10\xbd\x05\x12\x13\n\x0ePOSTGRES_TABLE\x10\xbe\x05\x12\x10\n\x0b\x45KS_CLUSTER\x10\xa1\x06\x12\x12\n\rEKS_NAMESPACE\x10\xa2\x06\x12\x10\n\x0b\x45KS_SERVICE\x10\xa3\x06\x12\x13\n\x0e\x45KS_DEPLOYMENT\x10\xa4\x06\x12\x10\n\x0b\x45KS_INGRESS\x10\xa5\x06\x12\x17\n\x12\x45KS_NETWORK_POLICY\x10\xa6\x06\x12\x0c\n\x07\x45KS_HPA\x10\xa7\x06\x12\x13\n\x0e\x45KS_REPLICASET\x10\xa8\x06\x12\x14\n\x0f\x45KS_STATEFULSET\x10\xa9\x06\x12&\n!SQL_DATABASE_CONNECTION_RAW_QUERY\x10\x85\x07\x12\x17\n\x12SQL_DATABASE_TABLE\x10\x86\x07\x12\x14\n\x0f\x41ZURE_WORKSPACE\x10\xe9\x07\x12\x13\n\x0e\x41ZURE_RESOURCE\x10\xea\x07\x12\x16\n\x11\x41ZURE_AKS_CLUSTER\x10\xeb\x07\x12\x18\n\x13\x41ZURE_AKS_NAMESPACE\x10\xec\x07\x12\x19\n\x14\x41ZURE_AKS_DEPLOYMENT\x10\xed\x07\x12\x16\n\x11\x41ZURE_AKS_SERVICE\x10\xee\x07\x12\x16\n\x11\x41ZURE_AKS_INGRESS\x10\xef\x07\x12\x1d\n\x18\x41ZURE_AKS_NETWORK_POLICY\x10\xf0\x07\x12\x12\n\rAZURE_AKS_HPA\x10\xf1\x07\x12\x19\n\x14\x41ZURE_AKS_REPLICASET\x10\xf2\x07\x12\x1a\n\x15\x41ZURE_AKS_STATEFULSET\x10\xf3\x07\x12\x1a\n\x15\x41ZURE_VIRTUAL_MACHINE\x10\xf4\x07\x12\x0f\n\nAZURE_VMSS\x10\xf5\x07\x12\x1a\n\x15\x41ZURE_STORAGE_ACCOUNT\x10\xf6\x07\x12\x19\n\x14\x41ZURE_BLOB_CONTAINER\x10\xf7\x07\x12\x15\n\x10\x41ZURE_SQL_SERVER\x10\xf8\x07\x12\x17\n\x12\x41ZURE_SQL_DATABASE\x10\xf9\x07\x12\x19\n\x14\x41ZURE_COSMOS_ACCOUNT\x10\xfa\x07\x12\x1a\n\x15\x41ZURE_POSTGRES_SERVER\x10\xfb\x07\x12\x1c\n\x17\x41ZURE_POSTGRES_DATABASE\x10\xfc\x07\x12\x17\n\x12\x41ZURE_METRIC_ALERT\x10\xfd\x07\x12\x17\n\x12\x41ZURE_ACTION_GROUP\x10\xfe\x07\x12\x19\n\x14\x41ZURE_RESOURCE_GROUP\x10\xff\x07\x12\x16\n\x11\x41ZURE_REDIS_CACHE\x10\x80\x08\x12\x0f\n\nSSH_SERVER\x10\xcc\x08\x12\r\n\x08SSH_USER\x10\xcd\x08\x12\x19\n\x14GRAFANA_MIMIR_PROMQL\x10\xb1\t\x12\x10\n\x0bGKE_CLUSTER\x10\x95\n\x12\x12\n\rGKE_NAMESPACE\x10\x96\n\x12\x10\n\x0bGKE_SERVICE\x10\x97\n\x12\x13\n\x0eGKE_DEPLOYMENT\x10\x98\n\x12\x10\n\x0bGKE_INGRESS\x10\x99\n\x12\x17\n\x12GKE_NETWORK_POLICY\x10\x9a\n\x12\x0c\n\x07GKE_HPA\x10\x9b\n\x12\x13\n\x0eGKE_REPLICASET\x10\x9c\n\x12\x14\n\x0fGKE_STATEFULSET\x10\x9d\n\x12\x19\n\x14GCP_COMPUTE_INSTANCE\x10\x9e\n\x12\x17\n\x12GCP_INSTANCE_GROUP\x10\x9f\n\x12\x17\n\x12GCP_STORAGE_BUCKET\x10\xa0\n\x12\x1b\n\x16GCP_CLOUD_SQL_INSTANCE\x10\xa1\n\x12\x1b\n\x16GCP_CLOUD_SQL_DATABASE\x10\xa2\n\x12\x1a\n\x15GCP_MEMORYSTORE_REDIS\x10\xa3\n\x12\x15\n\x10GCP_ALERT_POLICY\x10\xa4\n\x12\x1d\n\x18GCP_NOTIFICATION_CHANNEL\x10\xa5\n\x12\x17\n\x12GCP_CLOUD_FUNCTION\x10\xa6\n\x12\x1a\n\x15GCP_CLOUD_RUN_SERVICE\x10\xa7\n\x12\x15\n\x10GCP_PUBSUB_TOPIC\x10\xa8\n\x12\x1c\n\x17GCP_PUBSUB_SUBSCRIPTION\x10\xa9\n\x12\x19\n\x14GCP_BIGQUERY_DATASET\x10\xaa\n\x12\x17\n\x12GCP_BIGQUERY_TABLE\x10\xab\n\x12\x14\n\x0fGCP_VPC_NETWORK\x10\xac\n\x12\x13\n\x0eGCP_SUBNETWORK\x10\xad\n\x12\x16\n\x11GCP_FIREWALL_RULE\x10\xae\n\x12\x16\n\x11GCP_LOAD_BALANCER\x10\xaf\n\x12\x0f\n\nGCP_SECRET\x10\xb0\n\x12\x18\n\x13GCP_SERVICE_ACCOUNT\x10\xb1\n\x12\x11\n\x0cGCP_LOG_SINK\x10\xb2\n\x12\x13\n\x0eGCP_LOG_METRIC\x10\xb3\n\x12\x15\n\x10MS_TEAMS_CHANNEL\x10\xf9\n\x12\x17\n\x12PAGERDUTY_INCIDENT\x10\xdd\x0b\x12\x19\n\x14\x45LASTIC_SEARCH_INDEX\x10\xc1\x0c\x12\x1c\n\x17\x45LASTIC_SEARCH_SERVICES\x10\xc2\x0c\x12\x1e\n\x19\x45LASTIC_SEARCH_DASHBOARDS\x10\xc3\x0c\x12\"\n\x1d\x45LASTIC_SEARCH_INDEX_PATTERNS\x10\xc4\x0c\x12\x0f\n\nGCM_METRIC\x10\xa5\r\x12\x12\n\rGCM_DASHBOARD\x10\xa6\r\x12$\n\x1fGCM_CLOUD_RUN_SERVICE_DASHBOARD\x10\xa7\r\x12\x15\n\x10ZENDUTY_INCIDENT\x10\x89\x0e\x12\x14\n\x0fROOTLY_INCIDENT\x10\xed\x0e\x12\x19\n\x14OPS_GENIE_ESCALATION\x10\xd1\x0f\x12\x13\n\x0eOPS_GENIE_TEAM\x10\xd2\x0f\x12\x16\n\x11GOOGLE_CHAT_SPACE\x10\xb5\x10\x12\x15\n\x10MONGODB_DATABASE\x10\x99\x11\x12\x17\n\x12MONGODB_COLLECTION\x10\x9a\x11\x12\x16\n\x11OPEN_SEARCH_INDEX\x10\xfd\x11\x12\x12\n\rASANA_PROJECT\x10\xe1\x12\x12\x12\n\rMODELS_ACTIVE\x10\xc5\x13\x12\x16\n\x11GITHUB_REPOSITORY\x10\xa9\x14\x12\x12\n\rGITHUB_MEMBER\x10\xaa\x14\x12\x11\n\x0cJIRA_PROJECT\x10\x8d\x15\x12\x0e\n\tJIRA_USER\x10\x8e\x15\x12\x10\n\x0b\x41RGOCD_APPS\x10\xf1\x15\x12\x11\n\x0cJENKINS_JOBS\x10\xd5\x16\x12\x13\n\x0ePOSTHOG_PERSON\x10\xb9\x17\x12\x12\n\rPOSTHOG_GROUP\x10\xba\x17\x12\x13\n\x0ePOSTHOG_COHORT\x10\xbb\x17\x12\x15\n\x10POSTHOG_PROPERTY\x10\xbc\x17\x12\x16\n\x11POSTHOG_DASHBOARD\x10\xbd\x17\x12\x14\n\x0fPOSTHOG_PROJECT\x10\xbe\x17\x12\x10\n\x0b\x45\x43S_CLUSTER\x10\xa1\x1f\x12\r\n\x08\x45\x43S_TASK\x10\xa2\x1f\x12\x10\n\x0b\x45\x43S_SERVICE\x10\xa3\x1f\x12\x15\n\x10SIGNOZ_DASHBOARD\x10\x89\'\x12\x11\n\x0cSIGNOZ_ALERT\x10\x8a\'\x12\x12\n\rSIGNOZ_METRIC\x10\x8b\'\x12\x13\n\x0eSIGNOZ_SERVICE\x10\x8c\'\x12\x1a\n\x15SIGNOZ_LOG_ATTRIBUTES\x10\x8d\'\x12\x1d\n\x18SIGNOZ_CLICKHOUSE_SCHEMA\x10\x8e\'\x12\x19\n\x14KUBERNETES_NAMESPACE\x10\xf1.\x12\x17\n\x12KUBERNETES_SERVICE\x10\xf2.\x12\x1a\n\x15KUBERNETES_DEPLOYMENT\x10\xf3.\x12\x17\n\x12KUBERNETES_INGRESS\x10\xf4.\x12\x1e\n\x19KUBERNETES_NETWORK_POLICY\x10\xf5.\x12\x13\n\x0eKUBERNETES_HPA\x10\xf6.\x12\x1a\n\x15KUBERNETES_REPLICASET\x10\xf7.\x12\x1b\n\x16KUBERNETES_STATEFULSET\x10\xf8.\x12\x1b\n\x16KUBERNETES_NETWORK_MAP\x10\xf9.\x12\x13\n\x0eSENTRY_PROJECT\x10\xd9\x36\x12\x18\n\x13\x43ORALOGIX_DASHBOARD\x10\xc1>\x12\x1c\n\x17\x43ORALOGIX_INDEX_MAPPING\x10\xc2>\x12\x16\n\x11\x43ORALOGIX_SERVICE\x10\xc3>\x12\x1a\n\x15\x43ORALOGIX_APM_SERVICE\x10\xc4>\x12\x18\n\x13VICTORIA_LOGS_FIELD\x10\xa9\x46\x12\x0e\n\tMCP_TOOLS\x10\x8dG\x12\x0f\n\nMCP_ASSETS\x10\x8eG\x12\x11\n\x0cLINEAR_TEAMS\x10\xf1G\x12\x11\n\x0cLINEAR_USERS\x10\xf2G\x12\x14\n\x0fLINEAR_PROJECTS\x10\xf3G\x12\x17\n\x12METABASE_DASHBOARD\x10\xd5H\x12\x12\n\rMETABASE_CARD\x10\xd6H\x12\x16\n\x11METABASE_DATABASE\x10\xd7H\x12\x18\n\x13METABASE_COLLECTION\x10\xd8H\x12\x1a\n\x15METABASE_SUBSCRIPTION\x10\xd9H\x12\x13\n\x0e\x44\x41TABRICKS_JOB\x10\xb9I\x12\x17\n\x12\x44\x41TABRICKS_CLUSTER\x10\xbaI\x12\x1d\n\x18\x44\x41TABRICKS_SQL_WAREHOUSE\x10\xbbI*\xac\x02\n\x07\x43ontext\x12\r\n\tUNKNOWN_C\x10\x00\x12\t\n\x05\x45VENT\x10\x01\x12\x17\n\x13MONITOR_TRANSACTION\x10\x02\x12\x13\n\x0f\x45NTITY_INSTANCE\x10\x03\x12\x0e\n\nEVENT_TYPE\x10\x04\x12\x0b\n\x07MONITOR\x10\x05\x12\n\n\x06\x45NTITY\x10\x06\x12\x15\n\x11\x45VENTS_CLICKHOUSE\x10\x07\x12\x0e\n\nPANEL_NAME\x10\x08\x12\x12\n\x0e\x44\x41SHBOARD_NAME\x10\t\x12\x1f\n\x1b\x45VENTS_ALERT_OPS_CLICKHOUSE\x10\n\x12\x0f\n\x0bSLACK_ALERT\x10\x0b\x12\x1e\n\x1a\x45VENTS_PRODIGAL_CLICKHOUSE\x10\x0c\x12\r\n\tALERT_OPS\x10\r\x12\x14\n\x10\x41LERT_MIDDLEWARE\x10\x0e*\x92\x02\n\x12RecentArtifactType\x12\x0e\n\nRA_UNKNOWN\x10\x00\x12\x12\n\x0eRA_GITHUB_REPO\x10\x01\x12\x14\n\x10RA_GITHUB_COMMIT\x10\x02\x12\x10\n\x0cRA_GITHUB_PR\x10\x03\x12\x15\n\x11RA_GITHUB_RELEASE\x10\x04\x12\x12\n\x0eRA_GITLAB_REPO\x10\x65\x12\x14\n\x10RA_GITLAB_COMMIT\x10\x66\x12\x10\n\x0cRA_GITLAB_MR\x10g\x12\x15\n\x11RA_GITLAB_RELEASE\x10h\x12\x16\n\x11RA_BITBUCKET_REPO\x10\xc9\x01\x12\x18\n\x13RA_BITBUCKET_COMMIT\x10\xca\x01\x12\x14\n\x0fRA_BITBUCKET_PR\x10\xcb\x01\x62\x06proto3') _globals = globals() _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) @@ -41,15 +41,15 @@ _globals['_OP']._serialized_start=2738 _globals['_OP']._serialized_end=2894 _globals['_SOURCE']._serialized_start=2897 - _globals['_SOURCE']._serialized_end=4120 - _globals['_SOURCEKEYTYPE']._serialized_start=4123 - _globals['_SOURCEKEYTYPE']._serialized_end=7924 - _globals['_SOURCEMODELTYPE']._serialized_start=7927 - _globals['_SOURCEMODELTYPE']._serialized_end=12379 - _globals['_CONTEXT']._serialized_start=12382 - _globals['_CONTEXT']._serialized_end=12682 - _globals['_RECENTARTIFACTTYPE']._serialized_start=12685 - _globals['_RECENTARTIFACTTYPE']._serialized_end=12959 + _globals['_SOURCE']._serialized_end=4133 + _globals['_SOURCEKEYTYPE']._serialized_start=4136 + _globals['_SOURCEKEYTYPE']._serialized_end=7984 + _globals['_SOURCEMODELTYPE']._serialized_start=7987 + _globals['_SOURCEMODELTYPE']._serialized_end=12439 + _globals['_CONTEXT']._serialized_start=12442 + _globals['_CONTEXT']._serialized_end=12742 + _globals['_RECENTARTIFACTTYPE']._serialized_start=12745 + _globals['_RECENTARTIFACTTYPE']._serialized_end=13019 _globals['_TIMERANGE']._serialized_start=71 _globals['_TIMERANGE']._serialized_end=117 _globals['_PAGE']._serialized_start=119 diff --git a/drdroid_debug_toolkit/core/protos/playbooks/source_task_definitions/checkly_task.proto b/drdroid_debug_toolkit/core/protos/playbooks/source_task_definitions/checkly_task.proto new file mode 100644 index 00000000..db3f4e1e --- /dev/null +++ b/drdroid_debug_toolkit/core/protos/playbooks/source_task_definitions/checkly_task.proto @@ -0,0 +1,55 @@ +syntax = "proto3"; +package core.protos.playbooks; + +import "google/protobuf/wrappers.proto"; + + +message Checkly { + message ListChecksTask { + // No parameters needed - fetches all checks + } + + message GetCheckStatusesTask { + // No parameters needed - fetches current status of all checks + } + + message GetCheckResultsTask { + google.protobuf.StringValue check_id = 1; + google.protobuf.UInt64Value limit = 2; + } + + message GetCheckAnalyticsTask { + google.protobuf.StringValue check_id = 1; + // check_type: "api", "browser", "multistep", "tcp" + google.protobuf.StringValue check_type = 2; + } + + message GetCheckAlertsTask { + // Optional: if empty, fetches alerts for entire account + google.protobuf.StringValue check_id = 1; + } + + message GetCheckGroupsTask { + // No parameters needed - fetches all check groups + } + + enum TaskType { + UNKNOWN = 0; + LIST_CHECKS = 1; + GET_CHECK_STATUSES = 2; + GET_CHECK_RESULTS = 3; + GET_CHECK_ANALYTICS = 4; + GET_CHECK_ALERTS = 5; + GET_CHECK_GROUPS = 6; + } + + TaskType type = 1; + oneof task { + ListChecksTask list_checks = 2; + GetCheckStatusesTask get_check_statuses = 3; + GetCheckResultsTask get_check_results = 4; + GetCheckAnalyticsTask get_check_analytics = 5; + GetCheckAlertsTask get_check_alerts = 6; + GetCheckGroupsTask get_check_groups = 7; + } +} diff --git a/drdroid_debug_toolkit/core/protos/playbooks/source_task_definitions/checkly_task_pb2.py b/drdroid_debug_toolkit/core/protos/playbooks/source_task_definitions/checkly_task_pb2.py new file mode 100644 index 00000000..27012c35 --- /dev/null +++ b/drdroid_debug_toolkit/core/protos/playbooks/source_task_definitions/checkly_task_pb2.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- +# Generated by the protocol buffer compiler. DO NOT EDIT! +# NO CHECKED-IN PROTOBUF GENCODE +# source: core/protos/playbooks/source_task_definitions/checkly_task.proto +# Protobuf Python Version: 5.29.0 +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import runtime_version as _runtime_version +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder +_runtime_version.ValidateProtobufRuntimeVersion( + _runtime_version.Domain.PUBLIC, + 5, + 29, + 0, + '', + 'core/protos/playbooks/source_task_definitions/checkly_task.proto' +) +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2 + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n@core/protos/playbooks/source_task_definitions/checkly_task.proto\x12\x15\x63ore.protos.playbooks\x1a\x1egoogle/protobuf/wrappers.proto\"\xb9\x08\n\x07\x43heckly\x12\x35\n\x04type\x18\x01 \x01(\x0e\x32\'.core.protos.playbooks.Checkly.TaskType\x12\x44\n\x0blist_checks\x18\x02 \x01(\x0b\x32-.core.protos.playbooks.Checkly.ListChecksTaskH\x00\x12Q\n\x12get_check_statuses\x18\x03 \x01(\x0b\x32\x33.core.protos.playbooks.Checkly.GetCheckStatusesTaskH\x00\x12O\n\x11get_check_results\x18\x04 \x01(\x0b\x32\x32.core.protos.playbooks.Checkly.GetCheckResultsTaskH\x00\x12S\n\x13get_check_analytics\x18\x05 \x01(\x0b\x32\x34.core.protos.playbooks.Checkly.GetCheckAnalyticsTaskH\x00\x12M\n\x10get_check_alerts\x18\x06 \x01(\x0b\x32\x31.core.protos.playbooks.Checkly.GetCheckAlertsTaskH\x00\x12M\n\x10get_check_groups\x18\x07 \x01(\x0b\x32\x31.core.protos.playbooks.Checkly.GetCheckGroupsTaskH\x00\x1a\x10\n\x0eListChecksTask\x1a\x16\n\x14GetCheckStatusesTask\x1ar\n\x13GetCheckResultsTask\x12.\n\x08\x63heck_id\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12+\n\x05limit\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.UInt64Value\x1ay\n\x15GetCheckAnalyticsTask\x12.\n\x08\x63heck_id\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x30\n\ncheck_type\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x1a\x44\n\x12GetCheckAlertsTask\x12.\n\x08\x63heck_id\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x1a\x14\n\x12GetCheckGroupsTask\"\x9c\x01\n\x08TaskType\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x0f\n\x0bLIST_CHECKS\x10\x01\x12\x16\n\x12GET_CHECK_STATUSES\x10\x02\x12\x15\n\x11GET_CHECK_RESULTS\x10\x03\x12\x17\n\x13GET_CHECK_ANALYTICS\x10\x04\x12\x14\n\x10GET_CHECK_ALERTS\x10\x05\x12\x14\n\x10GET_CHECK_GROUPS\x10\x06\x42\x06\n\x04taskb\x06proto3') + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'core.protos.playbooks.source_task_definitions.checkly_task_pb2', _globals) +if not _descriptor._USE_C_DESCRIPTORS: + DESCRIPTOR._loaded_options = None + _globals['_CHECKLY']._serialized_start=124 + _globals['_CHECKLY']._serialized_end=1205 + _globals['_CHECKLY_LISTCHECKSTASK']._serialized_start=667 + _globals['_CHECKLY_LISTCHECKSTASK']._serialized_end=683 + _globals['_CHECKLY_GETCHECKSTATUSESTASK']._serialized_start=685 + _globals['_CHECKLY_GETCHECKSTATUSESTASK']._serialized_end=707 + _globals['_CHECKLY_GETCHECKRESULTSTASK']._serialized_start=709 + _globals['_CHECKLY_GETCHECKRESULTSTASK']._serialized_end=823 + _globals['_CHECKLY_GETCHECKANALYTICSTASK']._serialized_start=825 + _globals['_CHECKLY_GETCHECKANALYTICSTASK']._serialized_end=946 + _globals['_CHECKLY_GETCHECKALERTSTASK']._serialized_start=948 + _globals['_CHECKLY_GETCHECKALERTSTASK']._serialized_end=1016 + _globals['_CHECKLY_GETCHECKGROUPSTASK']._serialized_start=1018 + _globals['_CHECKLY_GETCHECKGROUPSTASK']._serialized_end=1038 + _globals['_CHECKLY_TASKTYPE']._serialized_start=1041 + _globals['_CHECKLY_TASKTYPE']._serialized_end=1197 +# @@protoc_insertion_point(module_scope) diff --git a/drdroid_debug_toolkit/core/utils/credentilal_utils.py b/drdroid_debug_toolkit/core/utils/credentilal_utils.py index 53a457f3..e7986177 100644 --- a/drdroid_debug_toolkit/core/utils/credentilal_utils.py +++ b/drdroid_debug_toolkit/core/utils/credentilal_utils.py @@ -474,6 +474,12 @@ def generate_credentials_dict(connector_type, connector_keys): credentials_dict['databricks_host'] = conn_key.key.value elif conn_key.key_type == SourceKeyType.DATABRICKS_TOKEN: credentials_dict['databricks_token'] = conn_key.key.value + elif connector_type == Source.CHECKLY: + for conn_key in connector_keys: + if conn_key.key_type == SourceKeyType.CHECKLY_API_KEY: + credentials_dict['api_key'] = conn_key.key.value + elif conn_key.key_type == SourceKeyType.CHECKLY_ACCOUNT_ID: + credentials_dict['account_id'] = conn_key.key.value else: return None return credentials_dict @@ -1087,6 +1093,18 @@ def credential_yaml_to_connector_proto(connector_name, credential_yaml, connecto key_type=SourceKeyType.METABASE_API_KEY, key=StringValue(value=credential_yaml['metabase_api_key']) )) + elif c_type == 'CHECKLY': + if 'api_key' not in credential_yaml or 'account_id' not in credential_yaml: + raise Exception(f'API key or account ID not found in credential yaml for checkly source in connector: {connector_name}') + c_source = Source.CHECKLY + c_keys.append(ConnectorKey( + key_type=SourceKeyType.CHECKLY_API_KEY, + key=StringValue(value=credential_yaml['api_key']) + )) + c_keys.append(ConnectorKey( + key_type=SourceKeyType.CHECKLY_ACCOUNT_ID, + key=StringValue(value=credential_yaml['account_id']) + )) else: raise Exception(f'Invalid type in credential yaml for connector: {connector_name}')