Advertising:

Monitorizacion de Sensores en Windows con Open Hardware Monitor: Difference between revisions

From Zabbix-ES
Jump to navigation Jump to search
(Created page with "==Monitorizacion de Sensores en Windows con Open Hardware Monitor== ===Software y Ejemplos=== '''Open Hardware Monitor :''' https://openhardwaremonitor.org/downloads/ '''Ej...")
 
No edit summary
Line 2: Line 2:
===Software y Ejemplos===
===Software y Ejemplos===
  '''Open Hardware Monitor  :''' https://openhardwaremonitor.org/downloads/
  '''Open Hardware Monitor  :''' https://openhardwaremonitor.org/downloads/
  '''Ejemplos de Parseo    :''' https://community.openhab.org/t/parsing-openhardwaremonitor-json-null-values/93205
  '''Ejemplos de Parseo    :''' https://community.openhab.org/t/parsing-openhardwaremonitor-json-null-values/93205
  '''Template de Zabbix    :''' [[File:Templates Open Hardware Monitor for Windows.zip]]
  '''Template de Zabbix    :''' [[File:Templates Open Hardware Monitor for Windows.zip]]
  '''JSONPath functionality':''' https://www.zabbix.com/documentation/current/en/manual/config/items/preprocessing/jsonpath_functionality
  '''JSONPath functionality':''' https://www.zabbix.com/documentation/current/en/manual/config/items/preprocessing/jsonpath_functionality


===Llamadas a OHM via Curl===
===Llamadas a OHM via Curl===

Revision as of 14:03, 13 January 2022

Monitorizacion de Sensores en Windows con Open Hardware Monitor

Software y Ejemplos

Open Hardware Monitor  : https://openhardwaremonitor.org/downloads/

Ejemplos de Parseo     : https://community.openhab.org/t/parsing-openhardwaremonitor-json-null-values/93205

Template de Zabbix     : File:Templates Open Hardware Monitor for Windows.zip

JSONPath functionality': https://www.zabbix.com/documentation/current/en/manual/config/items/preprocessing/jsonpath_functionality


Llamadas a OHM via Curl

# curl -s http://10.1.100.102:8085/data.json | jq '.Children[0].Children[3].Children[0].Children[0].Value'

CPU Load

# curl -s http://10.1.100.102:8085/data.json | jq '.Children[0].Children[1].Children[1]'

CPU Load Total

# curl -s http://10.1.100.102:8085/data.json | jq '.Children[0].Children[1].Children[1].Children[0].Text'
# curl -s http://10.1.100.102:8085/data.json | jq '.Children[0].Children[1].Children[1].Children[0].Value'