.babelrc
.
time
value. The other issue with converting the time the way you want I'm putting together a quick example
sub shift_date(date) {
put time = date + Duration.new(Date.get(time, 'hour')*60*60)
}
(
emit -from :2016-01-01: -every :hour: -limit 24
| put value1=10*Math.random()
| shift_date -date :today:;
emit -from :2016-02-01: -every :hour: -limit 24
| put value2=100*Math.random()
| shift_date -date :today:;
)
| join
shift_date
is where all the magic happens
sub shift_date(date) {
put time = date + (time - Date.startOf(time, 'day'))
}
(
emit -from :2016-01-01: -every :hour: -limit 24
| put value1=10*Math.random()
| shift_date -date :today:;
emit -from :2016-02-01: -every :hour: -limit 24
| put value2=100*Math.random()
| shift_date -date :today:;
)
| join
:today:
which is basically midnight of today
juttle-engine &
... did you have one already running ? can you make sure to kill anything that was running ? ps aux | grep juttle
if there's any juttle-engine then pkill -9 [pid]
and start the juttle-engine again ?
a.default.values(...).find is not a function
on the page so I'm going to see what that was about