feat(dogstatsd): allowlist tag values by metric prefix #7428
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This is a GitHub Action that ensures that the PR titles match the Conventional Commits spec. | |
| # See: https://www.conventionalcommits.org/en/v1.0.0/ | |
| name: "Semantic PR Title Check" | |
| on: | |
| pull_request_target: | |
| types: [opened, edited, synchronize] | |
| jobs: | |
| main: | |
| permissions: | |
| id-token: write | |
| name: Check For Semantic PR Title | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Get access token from dd-octo-sts | |
| uses: DataDog/dd-octo-sts-action@96a25462dbcb10ebf0bfd6e2ccc917d2ab235b9a # v1.0.4 | |
| id: octo-sts | |
| with: | |
| scope: DataDog/saluki | |
| policy: self.check-pr-title | |
| - uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1 | |
| env: | |
| GITHUB_TOKEN: ${{ steps.octo-sts.outputs.token }} | |
| with: | |
| requireScope: true | |
| types: | | |
| chore | |
| enhancement | |
| feat | |
| fix | |
| docs | |
| revert | |
| scopes: | | |
| agent-data-plane | |
| aggregate | |
| airlock | |
| antithesis | |
| api | |
| apm stats | |
| app | |
| autoscaling failover gateway | |
| blackhole | |
| buffered incremental | |
| chained | |
| checks ipc | |
| ci | |
| cluster agent | |
| common | |
| components | |
| config | |
| containerd-protos | |
| context | |
| core | |
| correctness | |
| datadog | |
| datadog-agent-commons | |
| datadog-agent-config | |
| datadog-agent-config-overlay-model | |
| datadog-agent-config-testing | |
| datadog-agent-metrics-v3 | |
| datadog-intake | |
| datadog-protos | |
| ddsketch | |
| deps | |
| dev | |
| docs | |
| dogstatsd | |
| dogstatsd mapper | |
| dsd debug log | |
| dsd stats | |
| env | |
| error | |
| go-duration | |
| heartbeat | |
| host enrichment | |
| integration | |
| io | |
| metadata | |
| metric router | |
| metrics | |
| millstone | |
| mrf gateway | |
| o11y | |
| otlp | |
| otlp-protos | |
| ottl | |
| panoramic | |
| process-memory | |
| prometheus | |
| prometheus-exposition | |
| stele | |
| stringtheory | |
| test | |
| tls | |
| trace obfuscation | |
| trace sampler |