TI4 Stats integration - #5413
Open
dingdong-22 wants to merge 4 commits into
Open
Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Currently TI4 Stats polls
/statistics/recently_changed_statistics.jsonfor stats. There are a couple of problems with this.I would like to capture accurate end of round stats to process more insights such as round 1 strategy card picks, tech build paths, etc.
Summary
Sends game stats to the TI4 Stats API (https://ti4stats.com/api/v1/asyncti4/game_snapshots_import_jobs) at the end of each round and when a game ends.
The payload uses the same
GameStatsDashboardPayloadformat as the existingUploadRecentStatsCron, wrapped in a{"data": [...]}envelope.Changes
New files
sendGameStats()serializes the game and makes a request to the API asynchronously to avoid blocking and isolate any errors from the original request. Errors are logged to Discord with a ping to my user.Modified files
sendGameStats()instartStrategyPhase()before the round counter increments.sendGameStats()ingameEndStuff()after the game is marked as ended.TI4_STATS_API_KEYenvironment variable.TI4_STATS_API_KEYenvironment variable.TI4_STATS_API_KEYenvironment variable.TI4_STATS_API_KEYenvironment variableConfiguration
TI4_STATS_API_KEYenvironment variable for authorization.Testing