Braydon Kains
Braydon Kains
Hello! I am making this issue to determine when the next release will be. I am looking forward to using the result implemented in #280 sometime soon, and I'm wondering...
**Is your feature request related to a problem? Please describe.** Scrapers do not currently have any control over what level their errors are logged at. Sometimes, for example in the...
When unmarshalling yaml with `CommentToMap` and marshalling it to `WithComments` using the same map can cause mangled yaml outputs. For example, the following yaml: ``` x: # comment y: ```...
**Describe the bug** The following YAML is invalid: ``` a: 'b' b: 1 ``` It is invalid because the indentation level has changed after a scalar value, which doesn't make...
# Problem The following YAML should be invalid but parses successfully: ```yaml a: 1 b ``` In a map, the result is: ``` map[a:1] ``` Adding any amount of data...
# Explanation The following invalid YAML parses successfully: ```yaml a: - val1 x: 1 - val2 ``` Any variant that has the scalar field at a lower indentation level than...
I am currently looking through the `Data Pipeline` section of Fluent Bit's documentation. In particular, I am looking at this graph: ![Fluent Bit Data Pipeline graph: input to parser to...
**Describe the solution you'd like** I would like to add support for the `NumFDs` method in Windows. **Describe alternatives you've considered** `OpenFiles` is implemented for Windows, however doesn't cover all...
This PR implements the `NumFDs` method for Windows by borrowing the system info query from `OpenFiles` and using it to count any Handles belonging to the process.
## Bug Report **Describe the bug** When you send OTLP logs into Fluent Bit and then send them back out, any Resource or Scope attributes are lost. This is because...