Hi,
Im trying to send k6.io test results to NetData Node. Running both k6 & Netdata using Docker, no local installation.
K6.io tests run perfectly using docker but im unable to send/connect data to statsd/netdata.
cmd for Netdata:
-------------start-----------------------
version: ‘3’
services:
netdata:
image: netdata/netdata
container_name: netdata
ports:
- 19999:19999
restart: unless-stopped
cap_add:
- SYS_PTRACE
security_opt:
- apparmor:unconfined
volumes:
- netdataconfig:/etc/netdata
- netdatalib:/var/lib/netdata
- netdatacache:/var/cache/netdata
- /etc/passwd:/host/etc/passwd:ro
- /etc/group:/host/etc/group:ro
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /etc/os-release:/host/etc/os-release:ro
volumes:
netdataconfig:
netdatalib:
netdatacache:
-------------end-----------------------
cmd for k6:
docker run --rm --platform linux/amd64 -i loadimpact/k6 run --out statsd - <performance-test.js
but no success. Can anyone point out the issue with cmd above or How to send data to statsd using docker. Dont want to install it locally bcoz we run the k6 performance tests on bitbucket pipeline.
Thanks!