github.com/cilium/cilium@v1.16.2/pkg/hubble/exporter/exporteroption/defaults.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright Authors of Cilium
     3  
     4  package exporteroption
     5  
     6  // Default specifies default values for Hubble exporter options.
     7  var Default = Options{
     8  	Path:       "", // An empty string disables Hubble export.
     9  	MaxSizeMB:  10,
    10  	MaxBackups: 5,
    11  	Compress:   false,
    12  }