Skip to content

Commit

Permalink
stats: increase point count
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelCoding committed Nov 13, 2024
1 parent c1ba7a9 commit 05102b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/stats/as112.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ impl Updater for As112Updater {
let now = OffsetDateTime::now_utc();

let data = self
.query_stats(OffsetDateTime::now_utc() - self.selection, now, 255.0)
.query_stats(OffsetDateTime::now_utc() - self.selection, now, 512.0)
.await?;

Ok(data)
Expand Down
2 changes: 1 addition & 1 deletion src/stats/traffic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ impl Updater for TrafficUpdater {
let now = OffsetDateTime::now_utc();

let data = self
.query_stats(OffsetDateTime::now_utc() - self.selection, now, 255.0)
.query_stats(OffsetDateTime::now_utc() - self.selection, now, 512.0)
.await?;

Ok(data)
Expand Down

0 comments on commit 05102b6

Please sign in to comment.