Skip to content

Commit 87a8f04

Browse files
committed
Changes made to stabilize serverless support
1 parent f33112b commit 87a8f04

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

middleware/config.py

+19
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,25 @@ def __init__(self):
3737

3838
self.exporter_otlp_endpoint = f"http://{source_service_url}:9319"
3939
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}"
4059

4160
def get_config(self, section, key, default):
4261
return self.config.get(section, key, fallback=default)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
setuptools.setup(
2121
name="middleware-apm",
22-
version="0.7.0",
22+
version="1.0.0",
2323
install_requires=requirements,
2424
author="middleware-dev",
2525
maintainer="middleware-dev",

0 commit comments

Comments
 (0)