-
Notifications
You must be signed in to change notification settings - Fork 564
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip(perf): playerDrop stats with the new format
This new format doesn't save all drop reasons, just a MultipleCounter of the categories and crashes as well as the last 200 unknown crashes, for future analysis if necessary.
- Loading branch information
Showing
7 changed files
with
183 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
core/components/StatsManager/playerDrop/playerDropUtils.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export const getDateHourEnc = () => { | ||
const now = new Date(); | ||
const dateHourTs = now.setUTCMinutes(0, 0, 0); | ||
return { | ||
dateHourTs, | ||
dateHourStr: now.toISOString(), | ||
} | ||
} | ||
|
||
export const parseDateHourEnc = (dateHourStr: string) => { | ||
const date = new Date(dateHourStr); | ||
const dateHourTs = date.setUTCMinutes(0, 0, 0); | ||
return { | ||
dateHourTs, | ||
dateHourStr, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.