1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See LICENSE.txt in the project root for
# license information.
# -------------------------------------------------------------------------
import os
from devtools_testutils import AzureRecordedTestCase
ENV_MONITOR_ENVIRONMENT = "MONITOR_ENVIRONMENT"
ENV_MONITOR_RESOURCE_MANAGER_URL = "MONITOR_RESOURCE_MANAGER_URL"
ENV_MONITOR_LOCATION = "MONITOR_LOCATION"
LOGS_ENVIRONMENT_ENDPOINT_MAP = {
"AzureCloud": "https://api.loganalytics.io/v1",
"AzureChinaCloud": "https://api.loganalytics.azure.cn/v1",
"AzureUSGovernment": "https://api.loganalytics.us/v1",
}
METRICS_CLIENT_ENVIRONMENT_AUDIENCE_MAP = {
"AzureCloud": "https://metrics.monitor.azure.com",
"AzureChinaCloud": "https://metrics.monitor.azure.cn",
"AzureUSGovernment": "https://metrics.monitor.azure.us",
}
TLD_MAP = {"AzureCloud": "com", "AzureChinaCloud": "cn", "AzureUSGovernment": "us"}
class AzureMonitorQueryLogsTestCase(AzureRecordedTestCase):
def get_client(self, client_class, credential):
kwargs = {}
environment = os.getenv(ENV_MONITOR_ENVIRONMENT)
if environment:
kwargs["endpoint"] = LOGS_ENVIRONMENT_ENDPOINT_MAP[environment]
return self.create_client_from_credential(client_class, credential, **kwargs)
class MetricsQueryClientTestCase(AzureRecordedTestCase):
def get_client(self, client_class, credential):
kwargs = {}
arm_url = os.getenv(ENV_MONITOR_RESOURCE_MANAGER_URL)
if arm_url:
kwargs["endpoint"] = arm_url
return self.create_client_from_credential(client_class, credential, **kwargs)
class MetricsClientTestCase(AzureRecordedTestCase):
def get_client(self, client_class, credential, endpoint=None):
environment = os.getenv(ENV_MONITOR_ENVIRONMENT)
kwargs = {}
tld = "com"
if environment:
kwargs["audience"] = METRICS_CLIENT_ENVIRONMENT_AUDIENCE_MAP.get(environment)
tld = TLD_MAP.get(environment, "com")
if not endpoint:
region = os.getenv(ENV_MONITOR_LOCATION) or "westus2"
kwargs["endpoint"] = f"https://{region}.metrics.monitor.azure.{tld}"
return self.create_client_from_credential(client_class, credential, **kwargs)
|