You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The event output tags will be merged with client and check definition tags and sent to InfluxDB as usual.
177
177
178
+
# Multiple handlers
179
+
180
+
If you need to have multiple handlers, eg. for different precision, proxy mode, writing to different influx databases etc, this can be done by configuring **additional_handlers**:
181
+
182
+
```
183
+
{
184
+
"influxdb-extension": {
185
+
"hostname": "influxdb",
186
+
"port": 8086,
187
+
"database": "metrics",
188
+
"username": "sensu",
189
+
"password": "sensu",
190
+
"buffer_size": 1000,
191
+
"buffer_max_age": 10,
192
+
"additional_handlers": ["events", "events_nano"]
193
+
},
194
+
"events": {
195
+
"proxy_mode": true,
196
+
"precision": "s"
197
+
},
198
+
"events_nano": {
199
+
"proxy_mode": true,
200
+
"precision": "n"
201
+
}
202
+
}
203
+
```
204
+
205
+
Settings for the additional handlers will be merged with the **influxdb-extension** settings, so you only need to specify the settings you want to change for that handler.
206
+
178
207
# Performance
179
208
180
209
The extension will buffer up points until it reaches the configured **buffer_size** length or **buffer_max_age**, and then post all the points in the buffer to InfluxDB.
raiseArgumentError,"no configuration for #{@@extension_name} provided. exiting..."
197
+
raiseArgumentError,"no configuration for #{name} provided. exiting..."
154
198
end
155
199
156
200
["hostname","database"].eachdo |required_setting|
157
-
ifconfig[required_setting].nil?
158
-
raiseArgumentError,"required setting #{required_setting} not provided to extension. this should be provided as json element with key #{@@extension_name}. exiting..."
201
+
ifconfig.has_key?(required_setting)
202
+
raiseArgumentError,"required setting #{required_setting} not provided to extension. this should be provided as json element with key #{name}. exiting..."
0 commit comments