Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/semantic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ permissions:
jobs:
main:
permissions:
pull-requests: read # for amannn/action-semantic-pull-request to analyze PRs
statuses: write # for amannn/action-semantic-pull-request to mark status of analyzed PR
pull-requests: read # for amannn/action-semantic-pull-request to analyze PRs
statuses: write # for amannn/action-semantic-pull-request to mark status of analyzed PR
name: Check Semantic PR
runs-on: ubuntu-24.04
steps:
Expand All @@ -36,6 +36,8 @@ jobs:
scopes: |
administration
api
api top
api tap
ARC
architecture
auth
Expand Down
3 changes: 3 additions & 0 deletions changelog.d/24951_top_events_out_column.fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Fixed `vector top` displaying per-output sent events in the wrong column (Bytes In instead of Events Out) for components with multiple output ports.
Comment thread Fixed

authors: pront
2 changes: 1 addition & 1 deletion lib/vector-top/src/dashboard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ impl<'a> Widgets<'a> {
.map(Cell::from)
.collect::<Vec<_>>();
data[1] = Cell::from(id.as_str());
data[5] = Cell::from(sent_events_metric);
data[6] = Cell::from(sent_events_metric);
items.push(Row::new(data).style(Style::default()));
}
}
Expand Down
Loading