Skip to content

Commit

Permalink
update --out flag; debugging statements
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-ronning-ny committed Jan 7, 2025
1 parent 38c031c commit 9199d2c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/dpc-load-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,22 @@ jobs:
docker run --rm -i -u "$(id -u):$(id -g)" -v "${PWD}:/xk6" grafana/xk6 build \
--with github.com/LeonAdato/xk6-output-statsd
- name: Verify K6 Extensions
run: ./k6 version

- name: Run K6 with StatsD output
env:
LOAD_TEST_CLIENT_TOKEN: ${{ secrets.LOAD_TEST_CLIENT_TOKEN }}
LOAD_TEST_PRIVATE_KEY: ${{ secrets.LOAD_TEST_PRIVATE_KEY }}
LOAD_TEST_PUBLIC_KEY_ID: ${{ secrets.LOAD_TEST_PUBLIC_KEY_ID }}
run: |
./k6 run \
--out statsd=addr=localhost:8125,enableTags=true \
--out statsd=localhost:8125,enableTags=true \
./dpc-app/dpc-load-testing/script.js
- name: Check StatsD Logs
run: docker logs newrelic-statsd

- name: Cleanup StatsD Container
if: always()
run: |
Expand Down

0 comments on commit 9199d2c

Please sign in to comment.