mirror of
				https://github.com/prometheus/node_exporter.git
				synced 2025-08-20 18:33:52 -07:00 
			
		
		
		
	Change metric prefix from raid to megacli
This commit is contained in:
		
							parent
							
								
									50c66918d8
								
							
						
					
					
						commit
						053db59122
					
				| 
						 | 
				
			
			@ -20,19 +20,19 @@ const (
 | 
			
		|||
var (
 | 
			
		||||
	driveTemperature = prometheus.NewGaugeVec(prometheus.GaugeOpts{
 | 
			
		||||
		Namespace: Namespace,
 | 
			
		||||
		Name:      "raid_drive_temperature_celsius",
 | 
			
		||||
		Name:      "megacli_drive_temperature_celsius",
 | 
			
		||||
		Help:      "megacli: drive temperature",
 | 
			
		||||
	}, []string{"enclosure", "slot"})
 | 
			
		||||
 | 
			
		||||
	driveCounters = prometheus.NewCounterVec(prometheus.CounterOpts{
 | 
			
		||||
		Namespace: Namespace,
 | 
			
		||||
		Name:      "raid_drive_count",
 | 
			
		||||
		Name:      "megacli_drive_count",
 | 
			
		||||
		Help:      "megacli: drive error and event counters",
 | 
			
		||||
	}, []string{"enclosure", "slot", "type"})
 | 
			
		||||
 | 
			
		||||
	drivePresence = prometheus.NewGaugeVec(prometheus.GaugeOpts{
 | 
			
		||||
		Namespace: Namespace,
 | 
			
		||||
		Name:      "raid_adapter_disk_presence",
 | 
			
		||||
		Name:      "megacli_adapter_disk_presence",
 | 
			
		||||
		Help:      "megacli: disk presence per adapter",
 | 
			
		||||
	}, []string{"type"})
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue