Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Yano (0.15 sec)

  1. cmd/metrics.go

    		dur = time.Since(bgSeq.lastHealActivity)
    	}
    
    	ch <- prometheus.MustNewConstMetric(
    		prometheus.NewDesc(
    			prometheus.BuildFQName(healMetricsNamespace, "time", "since_last_activity"),
    			"Time elapsed (in nano seconds) since last self healing activity. This is set to -1 until initial self heal activity",
    			nil, nil),
    		prometheus.GaugeValue,
    		float64(dur),
    	)
    	for k, v := range bgSeq.getScannedItemsMap() {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 02 06:48:36 GMT 2024
    - 16.9K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/list.md

    | `minio_heal_objects_total`                   | Objects scanned in current self healing run.                     |
    | `minio_heal_time_last_activity_nano_seconds` | Time elapsed (in nano seconds) since last self healing activity. |
    
    ## Inter Node Metrics
    
    | Name                                      | Description                                             |
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 43.4K bytes
    - Viewed (2)
  3. cmd/erasure-healing-common.go

    	for _, t := range times {
    		if t.Equal(timeSentinel) || t.IsZero() {
    			continue
    		}
    		nano := t.UnixNano()
    		if group > 0 {
    			for k := range timeOccurrenceMap {
    				if k == nano {
    					// We add to ourself later
    					continue
    				}
    				diff := k - nano
    				if diff < 0 {
    					diff = -diff
    				}
    				// We are within the limit
    				if diff < groupNano {
    					timeOccurrenceMap[k]++
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  4. cmd/prepare-storage.go

    		return nil, nil, errInvalidArgument
    	}
    
    	// prepare getElapsedTime() to calculate elapsed time since we started trying formatting disks.
    	// All times are rounded to avoid showing milli, micro and nano seconds
    	formatStartTime := time.Now().Round(time.Second)
    	getElapsedTime := func() string {
    		return time.Now().Round(time.Second).Sub(formatStartTime).String()
    	}
    
    	var (
    		tries   int
    		verbose bool
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 15 08:25:46 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  5. cmd/testdata/xl-meta-merge.zip

    octet-stream¤etagÙ 9fe7a344ef4227d3e537¡vÎeçnÐÎ ¤ ‚Ù$73c9f651-f023-4566-b012-cc537fdb7ce2Ä’·G1ˆ ÄTà¦Çñ 1ÊB5’ k@ N°›+Xýˆ qiO127.0.0.1 localhost 127.0.1.1 nano 127.0.1.2 nano ::1 ip6-localhost ip6-loopback fe00::0 ip6-localnet fÙ$1f163718-9bc5-4b01-bff7-5d8cf09caf10Ä’·G1ˆ ÄTà¦Çñ 1ÊB5’ k@ N°›+Xýˆ qiO127.0.0.1 localhost 127.0.1.1 nano 127.0.1.2 nano ::1 ip6-localhost ip6-loopback fe00::0 ip6-localnet f xl2/testbucket/hosts/xl.meta XL2 Æ ï Ä$•Ä 7 ›ÅK ¿÷]Œðœ¯ Ó ¹ôc â NÄ ó7 Å Mƒ¤Type ¥V2ObjÞ ¢IDÄ 7 ›ÅK...
    ZIP Archive
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Mar 08 17:50:48 GMT 2024
    - 30.2K bytes
    - Viewed (0)
Back to top