J. Emrys Landivar
J. Emrys Landivar
Mean should accept a regex, and allow you to do regular expression matching over fields, and take the mean of any numerical field that matches.
Update the Sample Config for the comments in https://github.com/influxdata/kapacitor/blob/5c162cd0761cbf4faa4b94b323155f10701ee82c/task/config.go So people can understand the new options.
The queryFluxNode doesn't support recording. It needs to support recording.
Explicit routes don't de-url-encode variables set via get, but implicit routes do. This seems like a bug. I.E.: {"/group/magic/(?[^/]+)",[{controller, "group"}, {action,"magic"}, {magic,'$magic'}]}. Where the group controller has: magic('GET', [Magic])-> {'output',...
inmem kv shouldn't keep holding a lock on transactions or run them after their context has expired/been_cancled/etc. This was adapted from Rob Pike's blogpost https://blogtitle.github.io/go-advanced-concurrency-patterns-part-3-channels/
This refactored scheduler also: 1) Adds state transition rules 2) Reduces CPU use by reducing spinning 3) Adds a test for time zone, to make sure that things work correctly...
update, updates homebrew itself, not the package.
When they are not happy if there is a single of the other shape near them (I.e.: They are extremely shapeist), segregation slowly goes down over time.
When I don't have annotations I still have an extra empty first column. What I see: ```csv ,result,table,_start,_stop,_time,_value,_measurement,ktest1,ktest2,_field,"ktest2,k-test3",_field,ktest3,_field ,_result,0,2019-04-25T04:35:25.0842584Z,2019-06-05T20:35:25.0842584Z,2019-06-05T20:34:55.058998001Z,5,tes0,k-test1,,ftest1,,,k-test3, ,_result,0,2019-04-25T04:35:25.0842584Z,2019-06-05T20:35:25.0842584Z,2019-06-05T20:34:55.058999Z,5,tes0,k-test1,,ftest1,,,k-test3, ``` What I expect to see: ```csv result,table,_start,_stop,_time,_value,_measurement,ktest1,ktest2,_field,"ktest2,k-test3",_field,ktest3,_field _result,0,2019-04-25T04:35:25.0842584Z,2019-06-05T20:35:25.0842584Z,2019-06-05T20:34:55.058998001Z,5,tes0,k-test1,,ftest1,,,k-test3, _result,0,2019-04-25T04:35:25.0842584Z,2019-06-05T20:35:25.0842584Z,2019-06-05T20:34:55.058999Z,5,tes0,k-test1,,ftest1,,,k-test3,...