17.01.2025, 08:18
KB doc needs updating. It's possible to fetch data for the given period if start/end is a not a table but a timestamp number.
Fetch data for the last hour:
Fetch data for the last hour:
Code:
date = os.date('*t') -- current date as a table
time = os.time(date, true) -- convert UTC timestamp
-- fetch data for the last hour (3600 seconds)
datarange = {
['start'] = time - 3600,
['end'] = time,
}
data = trends.fetch('trend name', datarange)
log(data)