fix: add agent key auth for ingest endpoints

This commit is contained in:
2026-02-06 19:13:30 -03:00
parent 615a8b5404
commit 6038e82b22
18 changed files with 1244 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
{
"name": "nodejs-instrumented-example",
"version": "1.0.0",
"description": "Example Node.js app with OpenTelemetry auto-instrumentation for Ophion",
"main": "server.js",
"scripts": {
"start": "node server.js",
"start:instrumented": "node --require @opentelemetry/auto-instrumentations-node/register server.js"
},
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {},
"keywords": ["ophion", "opentelemetry", "tracing", "observability"],
"author": "Ophion Team",
"license": "MIT"
}