- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for SyscW (0.03 sec)
-
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 { metricsLogIf(ctx, err) } else {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 20 17:55:03 UTC 2024 - 6.5K bytes - Viewed (0) -
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 MinIO collects the following metrics at the bucket level.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 29 18:48:51 UTC 2024 - 43.3K bytes - Viewed (0) -
docs/metrics/v3.md
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Aug 02 22:30:11 UTC 2024 - 45.2K bytes - Viewed (0) -
cmd/metrics-v2.go
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 { metrics = append(metrics, MetricV2{
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 131.9K bytes - Viewed (0)