1 Answer
- Newest
- Most votes
- Most comments
0
Hi InWaveStudio,
GameLift by default uploads game session logs every hour, and is provided to you via the GetGameSessionLogUrl
API. If you have setup your log path correctly (via ProcessReady
parameter), you should be able to see your game session logs there.
The quickest way to terminate your game session is by remote accessing your fleet instance and kill the process, see instructions. You might also be able to find the logs for your game session on the instance, especially you didn't setup log paths correctly or if your logs were truncated due size exceeding the limit for upload.
Slightly slower way is by setting your fleet's capacity to 0 instances (via UpdateFleetCapacity
API), let all instances terminate, then re-spin up your instances.
answered 2 years ago
Relevant content
- Accepted Answerasked 3 years ago
- Accepted Answerasked 4 years ago
- Accepted Answerasked 7 years ago
- AWS OFFICIALUpdated 8 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a year ago
Thanks for your answer. I've set the log path via ProcessReady paremeter. But it seem like every game sessions all write log into single file at log path because when I open log file of some game sessions, it looks weird, sometime it has full log content, sometime it has just a part of log. Do I need to define log path for each game session to make it write correctly? ( like add game session id into general log path) ? Sorry for my bad English :D