@@ -37,6 +37,25 @@ def __init__(self):
37
37
38
38
self .exporter_otlp_endpoint = f"http://{ source_service_url } :9319"
39
39
self .resource_attributes = f"{ project_name_attr } mw.app.lang=python,runtime.metrics.python=true"
40
+
41
+ # Allowing users to override full OTLP endpoint
42
+ # Priority OTEL_EXPORTER_OTLP_ENDPOINT > MW_TARGET
43
+ mw_target = os .environ .get ("MW_TARGET" , None )
44
+ if mw_target is not None and mw_target != "" :
45
+ self .exporter_otlp_endpoint = mw_target
46
+
47
+ exporter_otlp_endpoint = os .environ .get ("OTEL_EXPORTER_OTLP_ENDPOINT" , None )
48
+ if exporter_otlp_endpoint is not None and exporter_otlp_endpoint != "" :
49
+ self .exporter_otlp_endpoint = exporter_otlp_endpoint
50
+
51
+ # Allowing users to pass Middleware API Key via ENV variable
52
+ mw_api_key = os .environ .get ("MW_API_KEY" , None )
53
+ if mw_api_key is not None and mw_api_key != "" :
54
+ self .access_token = mw_api_key
55
+
56
+ # Passing Middleware API Key as a resource attribute, to validate ingestion requests in serverless setup
57
+ if self .access_token is not None and self .access_token != "" :
58
+ self .resource_attributes = f"{ self .resource_attributes } ,mw.account_key={ self .access_token } "
40
59
41
60
def get_config (self , section , key , default ):
42
61
return self .config .get (section , key , fallback = default )
0 commit comments