Switch the 24h chart to 1 min data ticks

This commit is contained in:
nymkappa 2021-12-22 23:01:32 +09:00
parent eeb0f403a3
commit e4a9fd06b4
No known key found for this signature in database
GPG Key ID: E155910B16E8BD04

View File

@ -394,7 +394,7 @@ class Statistics {
public async $list24H(): Promise<OptimizedStatistic[]> {
try {
const connection = await DB.pool.getConnection();
const query = this.getQueryForDaysAvg(120, '1 DAY'); // 2m interval
const query = `SELECT *, UNIX_TIMESTAMP(added) as added FROM statistics ORDER BY id DESC LIMIT 1440`;
const [rows] = await connection.query<any>({ sql: query, timeout: this.queryTimeout });
connection.release();
return this.mapStatisticToOptimizedStatistic(rows);