Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for memcached (0.23 sec)

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

    	memUsedPercMD  = NewGaugeMD(memUsedPerc, "Used memory percentage on the node")
    	memFreeMD      = NewGaugeMD(memFree, "Free memory on the node")
    	memBuffersMD   = NewGaugeMD(memBuffers, "Buffers memory on the node")
    	memCacheMD     = NewGaugeMD(memCache, "Cache memory on the node")
    	memSharedMD    = NewGaugeMD(memShared, "Shared memory on the node")
    	memAvailableMD = NewGaugeMD(memAvailable, "Available memory on the node")
    )
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Apr 17 05:10:25 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  2. cmd/metrics-resource.go

    		memUsedPerc:       "Used memory percentage on the node",
    		memFree:           "Free memory on the node",
    		memShared:         "Shared memory on the node",
    		memBuffers:        "Buffers memory on the node",
    		memCache:          "Cache memory on the node",
    		memAvailable:      "Available memory on the node",
    		readsPerSec:       "Reads per second on a drive",
    		writesPerSec:      "Writes per second on a drive",
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 23:56:12 GMT 2024
    - 17.4K bytes
    - Viewed (0)
  3. cmd/metrics-v3.go

    	)
    
    	systemMemoryMG := NewMetricsGroup(systemMemoryCollectorPath,
    		[]MetricDescriptor{
    			memTotalMD,
    			memUsedMD,
    			memFreeMD,
    			memAvailableMD,
    			memBuffersMD,
    			memCacheMD,
    			memSharedMD,
    			memUsedPercMD,
    		},
    		loadMemoryMetrics,
    	)
    
    	systemCPUMG := NewMetricsGroup(systemCPUCollectorPath,
    		[]MetricDescriptor{
    			sysCPUAvgIdleMD,
    			sysCPUAvgIOWaitMD,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 17:37:57 GMT 2024
    - 10.7K bytes
    - Viewed (0)
Back to top