github.com/cilium/cilium@v1.16.2/pkg/hubble/observer/observeroption/defaults.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright Authors of Hubble
     3  
     4  package observeroption
     5  
     6  import "github.com/cilium/cilium/pkg/hubble/container"
     7  
     8  // Default serves only as reference point for default values. Very useful for
     9  // the CLI to pick these up instead of defining own defaults that need to be
    10  // kept in sync.
    11  var Default = Options{
    12  	MaxFlows:      container.Capacity4095, // 4095
    13  	MonitorBuffer: 1024,
    14  }