The plots in the HTTP output plugin show the time axis in UTC, not in local time.
Can easily be fixed by correcting for the local timezone offset:
Line 206 in http.py (in recordData function):
Change 't[0] = time.time()' to 't[0] = time.time() - time.timezone'
The plots in the HTTP output plugin show the time axis in UTC, not in local time.
Can easily be fixed by correcting for the local timezone offset:
Line 206 in http.py (in recordData function):
Change 't[0] = time.time()' to 't[0] = time.time() - time.timezone'