Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for enableProfiling (0.49 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/feature.go

    )
    
    type FeatureOptions struct {
    	EnableProfiling           bool
    	DebugSocketPath           string
    	EnableContentionProfiling bool
    	EnablePriorityAndFairness bool
    }
    
    func NewFeatureOptions() *FeatureOptions {
    	defaults := server.NewConfig(serializer.CodecFactory{})
    
    	return &FeatureOptions{
    		EnableProfiling:           defaults.EnableProfiling,
    		DebugSocketPath:           defaults.DebugSocketPath,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/v1/defaults_test.go

    			config: &configv1.KubeSchedulerConfiguration{},
    			expected: &configv1.KubeSchedulerConfiguration{
    				Parallelism: ptr.To[int32](16),
    				DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{
    					EnableProfiling:           &enable,
    					EnableContentionProfiling: &enable,
    				},
    				LeaderElection: componentbaseconfig.LeaderElectionConfiguration{
    					LeaderElect:       ptr.To(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/options/agent_proxy.go

    	ProxyComponentLogLevel string
    	Concurrency            int
    	TemplateFile           string
    	OutlierLogPath         string
    
    	PodName      string
    	PodNamespace string
    
    	// enableProfiling enables profiling via web interface host:port/debug/pprof/
    	EnableProfiling bool
    }
    
    // NewProxyArgs constructs proxyArgs with default values.
    func NewProxyArgs() ProxyArgs {
    	p := ProxyArgs{}
    
    	// Apply Default Values.
    	p.applyDefaults()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/after/v1alpha1.yaml

      tcpBeLiberal: false
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
      udpStreamTimeout: 0s
      udpTimeout: 0s
    detectLocal:
      bridgeInterface: ""
      interfaceNamePrefix: ""
    detectLocalMode: ""
    enableProfiling: false
    healthzBindAddress: 0.0.0.0:10256
    hostnameOverride: ""
    iptables:
      localhostNodePorts: true
      masqueradeAll: false
      masqueradeBit: 14
      minSyncPeriod: 1s
      syncPeriod: 30s
    ipvs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/roundtrip/default/v1alpha1.yaml

      tcpBeLiberal: false
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
      udpStreamTimeout: 0s
      udpTimeout: 0s
    detectLocal:
      bridgeInterface: ""
      interfaceNamePrefix: ""
    detectLocalMode: ""
    enableProfiling: false
    healthzBindAddress: 0.0.0.0:10256
    hostnameOverride: ""
    iptables:
      localhostNodePorts: true
      masqueradeAll: false
      masqueradeBit: 14
      minSyncPeriod: 1s
      syncPeriod: 30s
    ipvs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/app/cmd.go

    		"The log path for outlier detection")
    	proxyCmd.PersistentFlags().BoolVar(&proxyArgs.EnableProfiling, "profiling", true,
    		"Enable profiling via web interface host:port/debug/pprof/.")
    }
    
    func initStatusServer(
    	ctx context.Context,
    	proxyConfig *meshconfig.ProxyConfig,
    	envoyPrometheusPort int,
    	enableProfiling bool,
    	agent *istioagent.Agent,
    	shutdown context.CancelFunc,
    ) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/v1/defaults.go

    		obj.PodMaxBackoffSeconds = ptr.To[int64](10)
    	}
    
    	// Enable profiling by default in the scheduler
    	if obj.EnableProfiling == nil {
    		obj.EnableProfiling = ptr.To(true)
    	}
    
    	// Enable contention profiling by default if profiling is enabled
    	if *obj.EnableProfiling && obj.EnableContentionProfiling == nil {
    		obj.EnableContentionProfiling = ptr.To(true)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. cmd/kube-scheduler/app/options/options_test.go

    					APIVersion: v1.SchemeGroupVersion.String(),
    				},
    				Parallelism:           16,
    				DelayCacheUntilActive: false,
    				DebuggingConfiguration: componentbaseconfig.DebuggingConfiguration{
    					EnableProfiling:           true,
    					EnableContentionProfiling: true,
    				},
    				LeaderElection: componentbaseconfig.LeaderElectionConfiguration{
    					LeaderElect:       true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  9. pkg/proxy/apis/config/v1alpha1/zz_generated.conversion.go

    	out.BindAddress = in.BindAddress
    	out.HealthzBindAddress = in.HealthzBindAddress
    	out.MetricsBindAddress = in.MetricsBindAddress
    	out.BindAddressHardFail = in.BindAddressHardFail
    	out.EnableProfiling = in.EnableProfiling
    	out.ShowHiddenMetricsForVersion = in.ShowHiddenMetricsForVersion
    	out.Mode = config.ProxyMode(in.Mode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  10. cmd/kube-scheduler/app/options/deprecated.go

    	PodMaxInUnschedulablePodsDuration time.Duration
    }
    
    // AddFlags adds flags for the deprecated options.
    func (o *DeprecatedOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    	fs.BoolVar(&o.EnableProfiling, "profiling", true, "DEPRECATED: enable profiling via web interface host:port/debug/pprof/. This parameter is ignored if a config file is specified in --config.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 13:24:38 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top