File tree 2 files changed +44
-0
lines changed
2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : page
3
+ title : " Netdata"
4
+ description : " Instructions how to integrate Netdata within Home Assistant."
5
+ date : 2016-12-05 07:00
6
+ sidebar : true
7
+ comments : false
8
+ sharing : true
9
+ footer : true
10
+ logo : netdata.png
11
+ ha_category : System Monitor
12
+ ha_release : 0.35
13
+ ha_iot_class : " Local Push"
14
+ ---
15
+
16
+
17
+ The ` netdata ` sensor platform allows you to display information collected by [ Netdata] ( http://my-netdata.io/ ) .
18
+
19
+ To add this platform to your installation, add the following to your ` configuration.yaml ` file:
20
+
21
+ ``` yaml
22
+ # Example configuration.yaml entry
23
+ sensor :
24
+ - platform : netdata
25
+ ` ` `
26
+
27
+ Configuration variables:
28
+
29
+ - **host** (*Optional*): The IP address or hostname of your Netdata instance. Defaults to ` localhost`.
30
+ - **port** (*Optional*): The port that the Netdata instance is running on. Defaults to `19999`.
31
+ - **name** (*Optional*): Name of the sensor. Defaults to "Netdata".
32
+ - **resources** (*Optional*) array: List of details to monitor. Defaults is `memory_free`.
33
+ - ' memory_free ' : Free memory
34
+ - ' memory_used ' : Used memory
35
+ - ' memory_cached ' : Cached memory
36
+ - ' memory_buffers ' : Buffered memory
37
+ - ' swap_free ' : Free swap
38
+ - ' swap_used ' : Used swap
39
+ - ' processes_running ' : Processes Running
40
+ - ' processes_blocked ' : Processes Blocked
41
+ - ' system_load ' : System Load 15 min
42
+ - ' system_io_in ' : System I/O In
43
+ - ' system_io_out ' : System I/O Out
44
+
You can’t perform that action at this time.
0 commit comments