Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for scannerTrace (0.04 sec)

  1. cmd/data-scanner-metric.go

    		if s < scannerMetricLastRealtime {
    			p.latency[s].add(duration)
    		}
    
    		if s > scannerMetricStartTrace && globalTrace.NumSubscribers(madmin.TraceScanner) > 0 {
    			globalTrace.Publish(scannerTrace(s, startTime, duration, strings.Join(paths, " "), custom))
    		}
    	}
    }
    
    // time n scanner actions.
    // Use for s < scannerMetricLastRealtime
    func (p *scannerMetrics) timeN(s scannerMetric) func(n int) func() {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  2. cmd/xl-storage-disk-id-check.go

    		NodeName:  globalLocalNodeName,
    		FuncName:  "storage." + s.String(),
    		Duration:  duration,
    		Bytes:     size,
    		Path:      path,
    		Error:     err,
    		Custom:    custom,
    	}
    }
    
    func scannerTrace(s scannerMetric, startTime time.Time, duration time.Duration, path string, custom map[string]string) madmin.TraceInfo {
    	return madmin.TraceInfo{
    		TraceType: madmin.TraceScanner,
    		Time:      startTime,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Apr 25 05:41:04 UTC 2025
    - 34.5K bytes
    - Viewed (0)
Back to top