Skip to content

Commit

Permalink
APPS-8033 Add the RUN_RESTARTED log type (#658)
Browse files Browse the repository at this point in the history
This new log type captures "previous" logs so that users that see that their app has seen restarts can fetch those old logs and debug them themselves.
  • Loading branch information
markusthoemmes committed Dec 7, 2023
1 parent 72328bd commit 7bd3c1a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ const (
AppLogTypeDeploy AppLogType = "DEPLOY"
// AppLogTypeRun represents run logs.
AppLogTypeRun AppLogType = "RUN"
// AppLogTypeRunRestarted represents logs of crashed/restarted instances during runtime.
AppLogTypeRunRestarted AppLogType = "RUN_RESTARTED"
)

// AppsService is an interface for interfacing with the App Platform endpoints
Expand Down

0 comments on commit 7bd3c1a

Please sign in to comment.