Usando o grep / regex para obter uma variedade de temperaturas

1

Estou tentando configurar um monitoramento básico de temperatura no meu servidor - (sem usar ferramentas de terceiros).

Instalei algumas bibliotecas na minha caixa Linux para obter sensores trabalhando em meu servidor e agora posso usar o comando sensors , que pode retornar dados como os seguintes:

asb100-i2c-1-2d
Adapter: SMBus nForce2 adapter at 5500
in0:          +1.79 V  (min =  +1.39 V, max =  +2.08 V)
in1:          +1.79 V  (min =  +1.39 V, max =  +2.08 V)
in2:          +3.34 V  (min =  +2.96 V, max =  +3.63 V)
in3:          +2.96 V  (min =  +2.67 V, max =  +3.28 V)
in4:          +3.06 V  (min =  +2.51 V, max =  +3.79 V)
in5:          +3.06 V  (min =  +0.00 V, max =  +0.00 V)
in6:          +3.04 V  (min =  +0.00 V, max =  +0.00 V)
fan1:        6136 RPM  (min = 2777 RPM, div = 2)
fan2:           0 RPM  (min = 3534 RPM, div = 2)
fan3:           0 RPM  (min = 10714 RPM, div = 2)
temp1:        +37.0°C  (high = +80.0°C, hyst = +75.0°C)
temp2:        +26.5°C  (high = +80.0°C, hyst = +75.0°C)
temp3:         -0.5°C  (high = +80.0°C, hyst = +75.0°C)
temp4:        +25.0°C  (high = +80.0°C, hyst = +75.0°C)
cpu0_vid:    +1.750 V

w83l785ts-i2c-1-2e
Adapter: SMBus nForce2 adapter at 5500
temp1:        +30.0°C  (high = +85.0°C)

Eu percebi que poderia reduzi-lo facilmente adicionando | grep temp no final do comando, então tentei executar sensors | grep temp e recebi isso:

temp1:        +37.0°C  (high = +80.0°C, hyst = +75.0°C)
temp2:        +26.5°C  (high = +80.0°C, hyst = +75.0°C)
temp3:         -0.5°C  (high = +80.0°C, hyst = +75.0°C)
temp4:        +25.0°C  (high = +80.0°C, hyst = +75.0°C)
temp1:        +30.0°C  (high = +85.0°C)

Eu percebi que o temp3 claramente não estava funcionando corretamente, então eu revisei meu comando para eliminar esse resultado: sensors | grep temp[1,2,4]

temp1:        +36.0°C  (high = +80.0°C, hyst = +75.0°C)
temp2:        +26.5°C  (high = +80.0°C, hyst = +75.0°C)
temp4:        +25.0°C  (high = +80.0°C, hyst = +75.0°C)
temp1:        +30.0°C  (high = +85.0°C)

Agora eu quero cortar tudo, então tudo que eu tenho é uma string separada por vírgula, que pode ter essa aparência.

+36.0,+26.5,+25.0,+30.0

Eu posso configurar isso para enviar esses dados para um servidor a cada 5/10 minutos.

Como posso conseguir isso usando grep ou outros comandos?

    
por Alex Coplan 03.01.2012 / 16:01

1 resposta

5

Usando awk :

sensors | awk '/temp[124]/ {sub("°C", "", $2); print($2)}'

Ou separados por vírgulas:

sensors | awk -v ORS=, '/temp[124]/ {sub("°C", "", $2); print($2)}' | sed 's/,$//'
    
por 03.01.2012 / 16:13