Skip to content

Update netflow-plugin to systemd-journal-sdk 0.7.6 - #22993

Merged
ktsaou merged 1 commit into
netdata:masterfrom
ktsaou:netflow-sdk-0.7.6
Jul 5, 2026
Merged

Update netflow-plugin to systemd-journal-sdk 0.7.6#22993
ktsaou merged 1 commit into
netdata:masterfrom
ktsaou:netflow-sdk-0.7.6

Conversation

@ktsaou

@ktsaou ktsaou commented Jul 5, 2026

Copy link
Copy Markdown
Member

Summary

Bumps the published systemd-journal-sdk-* Rust crates used by netflow-plugin from 0.7.5 to 0.7.6, aligning them with the Go module (github.com/netdata/systemd-journal-sdk/go), which is already on v0.7.6.

Details

  • The v0.7.6 SDK release changed only the SDK facade crate and the Go module (query-wide anchor fix). The seven low-level crates netflow-plugin links (common, core, engine, host, index, log-writer, registry) are byte-identical between 0.7.5 and 0.7.6, so this is a pure version alignment with no functional change for netflow.
  • After this, every SDK consumer in the repo that uses published packages is on 0.7.6.

Test plan

  • cargo check -p netflow-plugin — clean build.
  • cargo test -p netflow-plugin — 570 passed, 0 failed, 26 ignored (pre-existing skips).

Summary by cubic

Update netflow-plugin to systemd-journal-sdk v0.7.6 to match github.com/netdata/systemd-journal-sdk/go. Version sync only; no behavior change (build and tests pass).

  • Dependencies
    • Bump systemd-journal-sdk-common, systemd-journal-sdk-core, systemd-journal-sdk-engine, systemd-journal-sdk-host, systemd-journal-sdk-index, systemd-journal-sdk-log-writer, systemd-journal-sdk-registry from 0.7.5 to 0.7.6.

Written for commit 6e8deb9. Summary will update on new commits.

Review in cubic

Aligns the published Rust SDK crates with the Go module, which is
already on v0.7.6. The v0.7.6 release changed only the SDK facade
crate and the Go module; the low-level crates netflow-plugin links
(common, core, engine, host, index, log-writer, registry) are
unchanged between 0.7.5 and 0.7.6, so this is a pure version
alignment with no functional change.

Verified: cargo check and the full netflow-plugin test suite pass
(570 passed, 0 failed).
@ktsaou
ktsaou requested a review from vkalintiris as a code owner July 5, 2026 23:39

@cubic-dev-ai cubic-dev-ai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 2 files

Confidence score: 5/5

  • Automated review surfaced no issues in the provided summaries.
  • No files require special attention.
Architecture diagram
sequenceDiagram
    participant Netflow as netflow-plugin
    participant Common as systemd-journal-sdk-common
    participant Core as systemd-journal-sdk-core
    participant Engine as systemd-journal-sdk-engine
    participant Host as systemd-journal-sdk-host
    participant Index as systemd-journal-sdk-index
    participant LogWriter as systemd-journal-sdk-log-writer
    participant Registry as systemd-journal-sdk-registry

    Note over Netflow,Registry: Runtime dependency chain (version 0.7.6)

    Netflow->>Common: Uses journal_common types
    Netflow->>Core: Uses journal_core primitives
    Netflow->>Engine: Uses journal_engine logic
    Netflow->>Host: Uses journal_host metadata
    Netflow->>Index: Uses journal_index lookups
    Netflow->>LogWriter: Uses journal_log_writer output
    Netflow->>Registry: Uses journal_registry management

    Core->>Common: Depends on common types
    Engine->>Core: Depends on core primitives
    Engine->>Common: Depends on common types
    Host->>Core: Depends on core primitives
    Host->>Common: Depends on common types
    Index->>Core: Depends on core primitives
    Index->>Common: Depends on common types
    LogWriter->>Core: Depends on core primitives
    LogWriter->>Common: Depends on common types
    Registry->>Core: Depends on core primitives
    Registry->>Common: Depends on common types

    Note over Netflow: All SDK crate versions are pinned together to 0.7.6
    Note over Common,Registry: Crates are byte-identical between 0.7.5 and 0.7.6
Loading

Re-trigger cubic

@sonarqubecloud

sonarqubecloud Bot commented Jul 5, 2026

Copy link
Copy Markdown

@ktsaou
ktsaou merged commit 6f49cfe into netdata:master Jul 5, 2026
118 of 139 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant