mirror of
				https://github.com/prometheus/node_exporter.git
				synced 2025-08-20 18:33:52 -07:00 
			
		
		
		
	Handle smart raw values >2^31
"%d" in awk will truncate values at 2^31. S.M.A.R.T. values can exceed that, thus use a floating point notation instead to encode larger values (at the possible cost of some precision).
This commit is contained in:
		
							parent
							
								
									620e9937e6
								
							
						
					
					
						commit
						d61fef8ce6
					
				| 
						 | 
				
			
			@ -15,7 +15,7 @@ $1 ~ /^[0-9]+$/ && $2 ~ /^[a-zA-Z0-9_-]+$/ {
 | 
			
		|||
  printf "%s_value{%s,smart_id=\"%s\"} %d\n", $2, labels, $1, $4
 | 
			
		||||
  printf "%s_worst{%s,smart_id=\"%s\"} %d\n", $2, labels, $1, $5
 | 
			
		||||
  printf "%s_threshold{%s,smart_id=\"%s\"} %d\n", $2, labels, $1, $6
 | 
			
		||||
  printf "%s_raw_value{%s,smart_id=\"%s\"} %d\n", $2, labels, $1, $10
 | 
			
		||||
  printf "%s_raw_value{%s,smart_id=\"%s\"} %e\n", $2, labels, $1, $10
 | 
			
		||||
}
 | 
			
		||||
SMARTCTLAWK
 | 
			
		||||
)"
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue