Stewart Webb

Results 36 comments of Stewart Webb

Are you guys running v1.0.8 of the gem? (released Jan 27 2016) A change in commit 95e66e733a0ee3b14daaa617cf58ded21f2e3c31 may have fixed this issue. (I was having similar issues that are now...

Another option is to use the standard Rails ActiveRecord relation helpers on your top-level acts_as model, with scopes around the actable_type field. All the `.includes()` code in Rails is built...

Yeah the name struck me as very strange as well. I know the book/movie is a somewhat well-known classic (I mean, I only noticed the name because I'd heard of...

For anyone else like me looking for when this feature became available, it was [bundled up into the v1.3.0 release](https://github.com/prometheus/node_exporter/pull/2168) (and is enabled with the `--collector.netdev.address-info` cmdline flag), so you'll...

Moreover, if you use a match rule like `v1_logs` for output, it just doesn't match at all - which means it's just not possible to route only one particular OpenTelemetry...

I've been digging into the fluentbit C code to try work out what's going on here. It turns out there are two totally different sets of handling code for OpenTelemetry...

Thanks for pushing through this change Jamie - where I work we were doing a lot of OpenTelemetry research earlier in the year and the whole "starting up an otel-instrumented...

I was able to get the `v1_metrics` / `v1_logs` / `v1_traces` tags working again for the HTTP2 server codepath in this commit: https://github.com/nuclearpidgeon/fluent-bit/commit/39cd65d4914ff760cb881f479fed5df9198c4639 The issue with this is that... it's...

So, this issue is not really completed, because the fix in #8881 was only for the older non-HTTP/2 codepath (which is not taken by default anyway because the `http2` plugin...

Just spotted that `_ng` (HTTP/2) handlers for non-log payloads propagate `NULL` tags as well... ._. `process_payload_metrics_ng`: https://github.com/fluent/fluent-bit/blob/69bf966c5f073d116a51f2b4d00590ae5367d13b/plugins/in_opentelemetry/opentelemetry_prot.c#L2211 `process_payload_traces_proto_ng` https://github.com/fluent/fluent-bit/blob/69bf966c5f073d116a51f2b4d00590ae5367d13b/plugins/in_opentelemetry/opentelemetry_prot.c#L2270 Although for some reason, `process_payload_raw_traces_ng` does propagate the tag... https://github.com/fluent/fluent-bit/blob/69bf966c5f073d116a51f2b4d00590ae5367d13b/plugins/in_opentelemetry/opentelemetry_prot.c#L2319