Brian Floersch

Results 13 issues of Brian Floersch

I have not been able to dig too deep into this yet, but all the worker theads are crashing after finishing uploading some large files (2.1gb). This is the exception...

### What does this PR do? Explicitly tag `main` nightly builds so we can differentiate them from builds based on other branches. ### Motivation ### Additional Notes ### Possible Drawbacks...

changelog/no-changelog
team/agent-platform
qa/skip-qa
team/agent-metrics-logs

### What does this PR do? Fix a poorly written test case. I may put more fixes in this PR as we do QA. ### Motivation ### Additional Notes ###...

changelog/no-changelog
qa/skip-qa
team/agent-metrics-logs

### What does this PR do? This change allows multiple tailers to read the same journal. This is particularly useful when users want to apply different tags to different units...

team/agent-metrics-logs

Add host tags to metrics when `expected_tags_duration` is configured. This matches the behavior of the logs agent. ### What does this PR do? Allows host tags to be added to...

team/agent-metrics-logs

### What does this PR do? Update changelog for 7.51.0 ### Motivation ### Additional Notes ### Possible Drawbacks / Trade-offs ### Describe how to test/QA your changes

changelog/no-changelog
qa/skip-qa
category/release_operations
team/agent-release-management
qa/no-code-change

### What does this PR do? This PR adds support for `logs_config.expected_tags_duration` to journald log sources. When this setting is configured, host tags will be attached to logs for the...

team/agent-metrics-logs

### What does this PR do? This PR does several small things: - Upgrade backoff retry logs from `Debug` to `Warn` - Report # of retries and time spent retrying...

changelog/no-changelog
team/agent-metrics-logs

Today this library is unsafe. ```swift let hashOfMaxInt64 = "jvNx4BjM5KYjv" // untrusted input let hashids = Hashids(salt: "this is my salt") let values = hashids.decode64(hashOfMaxInt64) // 💥 Crash ``` A...

[The following code](https://github.com/gh123man/hashids/blob/master/Tests/HashidsTests/HashidsTests.swift#L192) will crash. ```swift let hashOfMaxInt64 = "jvNx4BjM5KYjv" // untrusted input let hashids = Hashids(salt: "this is my salt") let values = hashids.decode64(hashOfMaxInt64) // 💥 Crash ``` A...