Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Commit

Permalink
fix: reduce memory by not processing L7 metrics (#10)
Browse files Browse the repository at this point in the history
Signed-off-by: Grant Linville <[email protected]>
  • Loading branch information
g-linville authored Jan 16, 2024
1 parent 61ca0ed commit 48ed971
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ func main() {
var ec *ebpf.EbpfCollector
if ebpfEnabled {
ec = ebpf.NewEbpfCollector(ctx)
go ec.Deploy()
// TODO(g-linville): uncomment this when we want to process L7
//go ec.Deploy()
go ec.DeployThroughput(throughputKubeEvents)

a := aggregator.NewAggregator(aggregatorKubeEvents, nil, ec.EbpfEvents(), exporter)
Expand Down

0 comments on commit 48ed971

Please sign in to comment.