Fast debug of TICK scripts

Tip for debug tick scripts. Enable |log().level(‘DEBUG’) When Editor+Logs enabled in Chronograf it will help to view all points.

var processed = temp
    |window()
        .period(1m)
        .every(1m)
    |mean('value')
    |eval(lambda: floor("mean" * -100.0) / 100.0)
        .as('mean')
    |log()
    	.level('DEBUG')
    |count('mean')