Hi all,
I am using an docker-compose service like this to run my load tests:
loadtest3:
image: loadimpact/k6:0.36.0
volumes:
- ./telemetry-load-test/dist:/load-test:ro
depends_on:
- haproxy1
- haproxy2
- haproxy3
- influx
- statsd
command: run /load-test/ReportEventSimple.spec.js --tag test_space=telemetry_k --tag test_run=local --out statsd --discard-response-bodies -vu 1000 -q -d 10s
environment:
K6_STATSD_ADDR: statsd:8125
But even with that conf I am getting debug traces in the console like this:
2023-06-20 15:19:57 time="2023-06-20T13:19:57Z" level=debug msg="Pushing metrics to server" output=statsd samples=1
Is possible to disable that?
Thanks!!