Glad its working. My best guess as to why it wasn't working before is the difference between the `.` and the `|` operators.
The `|` means add a new node to the task DAG, or in other words add a new step. The `.` means change a property of an existing step/node. Since performing a median action is a new step in the task pipeline it requires the `|` operator. Using `.meadian` would have resulted in an error that the property function didn't exist, but should have also suggested using `|` since that function does. If I am off, just ignore me ;) On Thursday, September 1, 2016 at 11:35:16 AM UTC-6, Bubba Hines wrote: > > This seems to work, but I swear I tried something very similar and got > `function median not defined` ... but copy/paste this and it runs. > -- Remember to include the InfluxDB version number with all issue reports --- You received this message because you are subscribed to the Google Groups "InfluxDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/influxdb. To view this discussion on the web visit https://groups.google.com/d/msgid/influxdb/421024ba-e799-47cd-aa78-d7fa16ca8c8d%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
