Skip to content

Commit

Permalink
NETOBSERV-1605: add flow filter to ebpf agent dashboard (netobserv#617)
Browse files Browse the repository at this point in the history
Signed-off-by: Mohamed Mahmoud <mmahmoud@redhat.com>
  • Loading branch information
msherif1234 authored Apr 16, 2024
1 parent ab1f598 commit 1e043fb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/dashboards/health.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ func CreateHealthDashboard(netobsNs string) (string, error) {
NewGraphPanel("Errors per minute", PanelUnitShort, 4, true, []Target{
NewTarget(`sum(increase(netobserv_agent_errors_total[1m])) by (component, error)`, "{{component}} {{error}}"),
}),
NewGraphPanel("Filtered flows rate", PanelUnitShort, 4, false, []Target{
NewTarget("sum(rate(netobserv_agent_filtered_flows_total[1m])) by (source, reason)", "{{source}} {{reason}}"),
}),
}))

// Operator stats
Expand Down

0 comments on commit 1e043fb

Please sign in to comment.