Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for syscr (1.96 sec)

  1. cmd/metrics-v3-system-process.go

    	}
    
    	if io.WriteBytes > 0 {
    		m.Set(processIOWriteBytes, float64(io.WriteBytes))
    	}
    
    	if io.SyscR > 0 {
    		m.Set(processSyscallReadTotal, float64(io.SyscR))
    	}
    
    	if io.SyscW > 0 {
    		m.Set(processSyscallWriteTotal, float64(io.SyscW))
    	}
    }
    
    func loadProcFSMetrics(ctx context.Context, p procfs.Proc, m MetricValues) {
    	stat, err := p.Stat()
    	if err != nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 26 16:07:23 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    				})
    		}
    
    		if io.SyscR > 0 {
    			metrics = append(metrics,
    				MetricV2{
    					Description: getMinIOProcessSysCallRMD(),
    					Value:       float64(io.SyscR),
    				})
    		}
    
    		if io.SyscW > 0 {
    			metrics = append(metrics,
    				MetricV2{
    					Description: getMinIOProcessSysCallWMD(),
    					Value:       float64(io.SyscW),
    				})
    		}
    
    		if io.ReadBytes > 0 {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  3. docs/metrics/v3.md

    | `syscall_read_total`          | `counter` | Total read SysCalls to the kernel. /proc/[pid]/io syscr                                                        | `server` |
    | `syscall_write_total`         | `counter` | Total write SysCalls to the kernel. /proc/[pid]/io syscw                                                       | `server` |
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 17:37:57 GMT 2024
    - 28.5K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/list.md

    | `minio_node_syscall_read_total`            | Total read SysCalls to the kernel. /proc/[pid]/io syscr.    |
    | `minio_node_syscall_write_total`           | Total write SysCalls to the kernel. /proc/[pid]/io syscw.   |
    | `minio_usage_last_activity_nano_seconds`   | Time elapsed (in nano seconds) since last scan activity.    |
    
    # Bucket Metrics
    
    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)
Back to top