We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcc9d70 commit b12e93bCopy full SHA for b12e93b
source/_components/sensor.netdata.markdown
@@ -98,5 +98,30 @@ resources:
98
required: false
99
type: icon
100
default: "mdi:desktop-classic"
101
+ invert:
102
+ description: Invert the sensor values.
103
+ required: false
104
+ type: boolean
105
+ default: false
106
{% endconfiguration %}
107
108
+
109
+## {% linkable_title Full examples %}
110
111
+### {% linkable_title Network interface details %}
112
113
+Netdata returns all bandwidth related sensors as positive/negative numbers related to the interface.
114
115
+```yaml
116
+# Example configuration.yaml entry
117
+sensor:
118
+ - platform: netdata
119
+ resources:
120
+ network_downstream:
121
+ data_group: net.eth1
122
+ element: received
123
+ network_upstream:
124
125
+ element: sent
126
+ invert: true
127
+```
0 commit comments