| OLD | NEW |
| 1 ### Welcome to the InfluxDB configuration file. | 1 ### Welcome to the InfluxDB configuration file. |
| 2 | 2 |
| 3 # Once every 24 hours InfluxDB will report anonymous data to m.influxdb.com | 3 # Once every 24 hours InfluxDB will report anonymous data to m.influxdb.com |
| 4 # The data includes raft id (random 8 bytes), os, arch, version, and metadata. | 4 # The data includes raft id (random 8 bytes), os, arch, version, and metadata. |
| 5 # We don't track ip addresses of servers reporting. This is only used | 5 # We don't track ip addresses of servers reporting. This is only used |
| 6 # to track the number of instances running and the versions, which | 6 # to track the number of instances running and the versions, which |
| 7 # is very helpful for us. | 7 # is very helpful for us. |
| 8 # Change this option to true to disable reporting. | 8 # Change this option to true to disable reporting. |
| 9 reporting-disabled = false | 9 reporting-disabled = false |
| 10 | 10 |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 "logserver.* .host.app.measurement.value", | 206 "logserver.* .host.app.measurement.value", |
| 207 | 207 |
| 208 # Rule for collectd metrics. | 208 # Rule for collectd metrics. |
| 209 # | 209 # |
| 210 # These look like: | 210 # These look like: |
| 211 # | 211 # |
| 212 # collectd.skia-alerts.cpu-11.cpu-idle | 212 # collectd.skia-alerts.cpu-11.cpu-idle |
| 213 # | 213 # |
| 214 "collectd.* .host.resource.measurement*", | 214 "collectd.* .host.resource.measurement*", |
| 215 | 215 |
| 216 # Android stats. |
| 217 "android_stats.* app.host.measurement.model.serial.measurement*", |
| 218 |
| 216 # Catchall rule. | 219 # Catchall rule. |
| 217 "app.host.measurement*", | 220 "app.host.measurement*", |
| 218 ] | 221 ] |
| 219 | 222 |
| 220 | 223 |
| 221 ## If set to true, when the input metric name has more fields than `name-schem
a` specified, | 224 ## If set to true, when the input metric name has more fields than `name-schem
a` specified, |
| 222 ## the extra fields will be ignored. | 225 ## the extra fields will be ignored. |
| 223 ## Otherwise an error will be logged and the metric rejected. | 226 ## Otherwise an error will be logged and the metric rejected. |
| 224 # ignore-unnamed = true | 227 # ignore-unnamed = true |
| 225 | 228 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 ### of time. | 297 ### of time. |
| 295 ### | 298 ### |
| 296 | 299 |
| 297 [hinted-handoff] | 300 [hinted-handoff] |
| 298 enabled = true | 301 enabled = true |
| 299 dir = "/mnt/pd0/influxdb/hh" | 302 dir = "/mnt/pd0/influxdb/hh" |
| 300 max-size = 1073741824 | 303 max-size = 1073741824 |
| 301 max-age = "168h" | 304 max-age = "168h" |
| 302 retry-rate-limit = 0 | 305 retry-rate-limit = 0 |
| 303 retry-interval = "1s" | 306 retry-interval = "1s" |
| OLD | NEW |