1
0
Fork 0
mirror of https://github.com/imjasonh/gcp-metrics-action synced 2026-07-22 07:30:11 +00:00

initial commit

Signed-off-by: Jason Hall <jason@chainguard.dev>
This commit is contained in:
Jason Hall 2025-11-05 10:39:50 -05:00
commit eb3bfbbb0c
14 changed files with 2071 additions and 0 deletions

27
package.json Normal file
View file

@ -0,0 +1,27 @@
{
"name": "otel-action",
"version": "1.0.0",
"description": "GitHub Action that collects workflow step metrics and exports them to OpenTelemetry/Google Cloud Monitoring",
"main": "index.js",
"scripts": {
"test": "node --test test/collector.test.js test/exporter.test.js"
},
"keywords": [
"github-actions",
"opentelemetry",
"metrics",
"google-cloud-monitoring"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@google-cloud/opentelemetry-cloud-monitoring-exporter": "^0.19.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/resources": "^1.28.0",
"@opentelemetry/sdk-metrics": "^1.28.0",
"@opentelemetry/semantic-conventions": "^1.28.0"
},
"devDependencies": {}
}