honeycombio / loadgen

A flexible command-line load generator to create traces in OTel or Honeycomb formats
Apache License 2.0
3 stars 2 forks source link

depth not working #4

Closed tdarwin closed 1 year ago

tdarwin commented 1 year ago

Versions

Steps to reproduce

Here's the command I used:

loadgen --host="http://localhost:8081/" --depth=5 --nspans=50 --extra=10 --tracetime=500ms --tps=1000 --runtime=90s

I tried multiple versions of nspans and depth, but never got any depth. All spans in the resulting trace were direct children of the root span, there were no spans that were secondary children of child spans of root spans.

Additional context I was sending this data to a local hound dev environment. Not sure if that should make any difference or not.

kentquirk commented 1 year ago

The child context wasn't being used, so all spans ended up as children of the root. Thanks.