mirror of
				https://github.com/fairwaves/UHD-Fairwaves.git
				synced 2025-11-03 21:43:15 +00:00 
			
		
		
		
	umtrx2collectd: lowercase sensor names
it was done in nsq2collectd before, but this here is a proper place for it
This commit is contained in:
		@@ -37,7 +37,7 @@ def publish():
 | 
			
		||||
 | 
			
		||||
    for name, value in current_sensors.items():
 | 
			
		||||
        print "PUTVAL {host}/umtrx-{id}/sensor-{name} interval={interval} {now}:{value}".format(
 | 
			
		||||
            host=HOSTNAME, id=BOARD_ID, name=name, interval=INTERVAL, now=now, value=value)
 | 
			
		||||
            host=HOSTNAME, id=BOARD_ID, name=name.lower(), interval=INTERVAL, now=now, value=value)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
s = sched.scheduler(time.time, time.sleep)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user