Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Percentage (0.46 sec)

  1. docs/metrics/prometheus/list.md

    | `minio_node_cpu_avg_load1_max`       | CPU load average 1min (max).               |
    | `minio_node_cpu_avg_load1_perc`      | CPU load average 1min (percentage).        |
    | `minio_node_cpu_avg_load1_perc_avg`  | CPU load average 1min (percentage) (avg).  |
    | `minio_node_cpu_avg_load1_perc_max`  | CPU load average 1min (percentage) (max).  |
    | `minio_node_cpu_avg_load5`           | CPU load average 5min.                     |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one.go

    	var percentage int32
    	if percentageOfNodesToScore != nil {
    		percentage = *percentageOfNodesToScore
    	} else {
    		percentage = sched.percentageOfNodesToScore
    	}
    
    	if percentage == 0 {
    		percentage = int32(50) - numAllNodes/125
    		if percentage < minFeasibleNodesPercentageToFind {
    			percentage = minFeasibleNodesPercentageToFind
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  3. pilot/pkg/features/telemetry.go

    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/log"
    )
    
    // Define telemetry related features here.
    var (
    	traceSamplingVar = env.Register(
    		"PILOT_TRACE_SAMPLING",
    		1.0,
    		"Sets the mesh-wide trace sampling percentage. Should be 0.0 - 100.0. Precision to 0.01. "+
    			"Default is 1.0.",
    	)
    
    	TraceSampling = func() float64 {
    		f := traceSamplingVar.Get()
    		if f < 0.0 || f > 100.0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    	if val < 0 || val > 100 {
    		return fmt.Errorf("percentage %v is not in range 0..100", val)
    	}
    	return nil
    }
    
    // validatePercentage checks if the specified fractional percentage is valid.
    func validatePercentage(percentage *networking.Percent) error {
    	if percentage != nil {
    		if percentage.Value < 0.0 || percentage.Value > 100.0 || (percentage.Value > 0.0 && percentage.Value < 0.0001) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. docs/metrics/v3.md

    | `minio_system_drive_perc_util`                 | `gauge`   | Percentage of time the disk was busy                               | `drive,set_index,drive_index,pool_index,server`     |
    
    ### `/system/memory`
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_utils.go

    // not set, and it will be round down to at least 1 if the maxUnavailable value is a percentage.
    // Note that API validation has already guaranteed the maxUnavailable field to be >1 if it is an integer
    // or 0% < value <= 100% if it is a percentage, so we don't have to consider other cases.
    func getStatefulSetMaxUnavailable(maxUnavailable *intstr.IntOrString, replicaCount int) (int, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                percent:
                                  description: Percentage of requests on which the delay
                                    will be injected (0-100).
                                  format: int32
                                  type: integer
                                percentage:
                                  description: Percentage of requests on which the delay
                                    will be injected.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  8. manifests/charts/base/crds/crd-all.gen.yaml

                                percent:
                                  description: Percentage of requests on which the delay
                                    will be injected (0-100).
                                  format: int32
                                  type: integer
                                percentage:
                                  description: Percentage of requests on which the delay
                                    will be injected.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    	closed bool
    
    	nsLister listersv1.NamespaceLister
    
    	metricsRecorder metrics.MetricAsyncRecorder
    	// pluginMetricsSamplePercent is the percentage of plugin metrics to be sampled.
    	pluginMetricsSamplePercent int
    
    	// isSchedulingQueueHintEnabled indicates whether the feature gate for the scheduling queue is enabled.
    	isSchedulingQueueHintEnabled bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0 if MaxSurge is 0 Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top