inception-health / otel-export-trace-action

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Statically set `service.name` to `github.actions`

nikordaris opened this issue · comments

In honeycomb, datasets are created based on the service.name attribute. Currently, we are setting this to the workflow name which creates a new dataset for each workflow. This creates issues with using honeycomb across all your workflows. So instead we should treat the service as a singular entity, which it is, and hardcode that to github.actions

Use otelServiceName input arg to set the service name to a static value such as github.actions https://github.com/inception-health/otel-export-trace-action#action-inputs

This was helpful, thank you!