chore(monitoring): align smoke and attribution metadata

This commit is contained in:
Victor Kyriazakos 2026-07-22 21:40:55 +00:00
parent 73190cdbfe
commit 4dc4f4302a
3 changed files with 6 additions and 4 deletions

View file

@ -0,0 +1,2 @@
victor-kyriazakos
# PR #64536 Gateway Health OTLP production hardening

View file

@ -43,7 +43,7 @@ def main() -> None:
"logs_export_interval_seconds": 5,
"resource_attributes": {
"service.name": "hermes-gateway-smoke",
"deployment.environment": "local-smoke",
"deployment.environment.name": "local-smoke",
},
},
"export": {

View file

@ -1,9 +1,9 @@
#!/usr/bin/env python3
"""Tiny local OTLP/HTTP capture collector for Hermes gateway health smoke tests.
This is not a production collector. It accepts OTLP protobuf POSTs on /v1/traces
and /v1/metrics, records request metadata as JSONL, and returns 200 so local
exporters can be exercised without Docker or a vendor backend.
This is not a production collector. It accepts OTLP protobuf POSTs on /v1/traces,
/v1/metrics, and /v1/logs, records request metadata as JSONL, and returns 200 so
local exporters can be exercised without Docker or a vendor backend.
"""
from __future__ import annotations