mirror of
				https://github.com/datarhei/core.git
				synced 2025-10-31 03:16:21 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package monitor
 | |
| 
 | |
| import (
 | |
| 	"github.com/datarhei/core/v16/monitor/metric"
 | |
| 	"github.com/datarhei/core/v16/psutil"
 | |
| )
 | |
| 
 | |
| type diskCollector struct {
 | |
| 	path string
 | |
| 
 | |
| 	totalDescr *metric.Description
 | |
| 	usageDescr *metric.Description
 | |
| }
 | |
| 
 | |
| func NewDiskCollector(path string) metric.Collector {
 | |
| 	c := &diskCollector{
 | |
| 		path: path,
 | |
| 	}
 | |
| 
 | |
| 	c.totalDescr = metric.NewDesc("disk_total", "Total size of the disk in bytes", []string{"path"})
 | |
| 	c.usageDescr = metric.NewDesc("disk_usage", "Number of used bytes on the disk", []string{"path"})
 | |
| 
 | |
| 	return c
 | |
| }
 | |
| 
 | |
| func (c *diskCollector) Prefix() string {
 | |
| 	return "disk"
 | |
| }
 | |
| 
 | |
| func (c *diskCollector) Describe() []*metric.Description {
 | |
| 	return []*metric.Description{
 | |
| 		c.totalDescr,
 | |
| 		c.usageDescr,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (c *diskCollector) Collect() metric.Metrics {
 | |
| 	metrics := metric.NewMetrics()
 | |
| 
 | |
| 	stat, err := psutil.DiskUsage(c.path)
 | |
| 	if err != nil {
 | |
| 		return metrics
 | |
| 	}
 | |
| 
 | |
| 	metrics.Add(metric.NewValue(c.totalDescr, float64(stat.Total), c.path))
 | |
| 	metrics.Add(metric.NewValue(c.usageDescr, float64(stat.Used), c.path))
 | |
| 
 | |
| 	return metrics
 | |
| }
 | |
| 
 | |
| func (c *diskCollector) Stop() {}
 | 
