Amy Tobey
Amy Tobey
## Expected Behaviour Boots shouldn't crash no matter what kind of traffic we throw at the DHCP server. ## Current Behaviour A dhcp client that sends a malformed packet can...
One of these days we should take a swing at adding otel metrics to otel-cli. I don't know if it'll work out but it feels worth exploring. e.g. (having not...
A frequent scripting trick is to forkbomb a bunch of things in parallel e.g. with xargs -P or plain old shell job control. When this happens, the child might want...
Looks like there's a PR to add the ability to pass an existing gRPC connection to opentelemetry-go. This would make it possible to more carefully control the connection and provide...
The current "span_data" check in the test fixtures only supports one span. That's a result of the way I originally wrote it for one span then expanded to multiple and...
A common use case for otel-cli exec is to wrap curl. When a traceparent is already in the environment, it's pretty straightforward: `otel-cli exec curl -H "traceparent: ${TRACEPARENT}" $url`. Even...
Some things have changed and need to be added to the README. /cc #67 for `otel-cli span background --wait` and the --tp-carrier changes also should add homebrew example to setup
/cc #57 and #64 I took DRY a little too far with some of the arguments to subcommands and wrapped them up in reusable functions in cmd/root.go. This works ok...
We're already using Cobra and it can auto-generate the completions with a little work. Some folks might like this? Also seems like a straightforward issue with low risk for someone...
When #54 merges, there will be a global timeout flag. As things are, `otel-cli exec` will accept that flag and then ignore it. Even a simple take on timing out...