Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
6aa5d68
feat(reflow): add new reflow tool to encode/decode ipfix/sflow/json
lspgn May 28, 2026
916a92d
fix(reflow): prefer event sflow agent ip
lspgn May 29, 2026
4cc646e
feat(sflow): support NAT and MPLS extended records
lspgn May 29, 2026
ea8e03b
feat(reflow): support schema-driven options data
lspgn May 29, 2026
3babdb4
refactor(reflow): remove configurable v9 scope ids
lspgn May 29, 2026
8526f86
fix(reflow): emit eBPF metadata with packet bytes
lspgn May 29, 2026
07863d7
test(reflow): cover batched options data sets
lspgn May 29, 2026
36ff9fe
docs(reflow): add batched ipfix options sample
lspgn May 29, 2026
7519592
docs(reflow): use isolated options sample port
lspgn May 29, 2026
47a8c64
docs(reflow): send options sample to udp 6343
lspgn May 29, 2026
4524834
feat(sflow): support JSON enterprise records
lspgn May 29, 2026
ba10bcf
docs(reflow): tune ipfix options sample
lspgn May 29, 2026
05bf3c1
fix(reflow): avoid repeated options templates in batches
lspgn May 29, 2026
abd0e03
docs(reflow): map if_index in options sample
lspgn May 29, 2026
53a8599
docs(reflow): use default input_if in options sample
lspgn May 29, 2026
f6411ec
fix(reflow): alias interface option if_index
lspgn May 29, 2026
6dffc4b
revert(reflow): remove interface option alias
lspgn May 29, 2026
5998f4a
fix(reflow): decode mapped IPFIX fields
lspgn May 29, 2026
2dff4f2
fix(reflow): keep decode catalog authoritative
lspgn May 29, 2026
eb21b01
fix(reflow): warn on missing aggregate keys
lspgn May 29, 2026
86104df
feat(reflow): merge options data support
lspgn May 29, 2026
cbb260c
fix(reflow): reject malformed sflow samples
lspgn May 29, 2026
e5402ff
fix(reflow): satisfy linter checks
lspgn May 29, 2026
c45fcfb
fix(reflow): normalize NetFlow v5 packet events
lspgn May 29, 2026
77a3ecb
fix(reflow): ignore NetFlow v5 control events
lspgn May 29, 2026
8af3647
fix(reflow): prefix aggregate metadata fields
lspgn May 29, 2026
9c71d2c
fix(reflow): move aggregate metadata to envelope
lspgn May 29, 2026
9afefb9
feat(reflow): embed template fields in json events
lspgn May 30, 2026
d3b0efa
feat(reflow): add tflow cache persistence
lspgn May 30, 2026
8cf478f
feat(reflow): apply templated field matches
lspgn May 30, 2026
0c684c7
fix(reflow): validate raw sflow sample envelopes
lspgn May 30, 2026
3a1c75c
fix(reflow): route source init controls through aggregators
lspgn Jun 1, 2026
9729c3a
fix(sflow): tolerate truncated sampled headers
lspgn Jun 2, 2026
434d5ac
feat(reflow): add protobuf schema generation
lspgn Jun 3, 2026
07f147b
feat(reflow): export protobuf extra fields
lspgn Jun 3, 2026
2d0cedd
feat(reflow): support protobuf export all output flag
lspgn Jun 3, 2026
f93fffd
feat(reflow): support any-interface live captures
lspgn Jun 13, 2026
015d09f
feat(reflow): refresh UDP sink DNS resolution
lspgn Jun 16, 2026
1bd11d6
fix(reflow): add aggregate_missing for missing keys
lspgn Jun 16, 2026
f073f34
fix(reflow): default CLI aggregation missing keys
lspgn Jun 16, 2026
88b074e
refactor(reflow): add address family field modifiers
lspgn Jun 16, 2026
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
5 changes: 5 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ jobs:
go.sum
go.mod

- name: Install libpcap
run: |
sudo apt-get update
sudo apt-get install -y libpcap-dev

- name: Tidy Go Modules
run: go mod tidy

Expand Down
Loading
Loading