We use the RStudio Connect application logs quite often for debugging applications -- our application prints messages about user credentials, app state, buttons pressed, etc. to stderr, allowing us to basically track whatever a user has been doing in the app. This is very helpful for reproducing and fixing bugs. The application logs can be read and downloaded through the Connect interface, but if the application has many users, that overview quickly becomes a bit crowded -- in particular, it's not possible to search through logs for e.g. a particular user email or error message. In principle, I know I can find all logs somewhere in rstudio-connect/jobs, but searching for anything in there is a mess...
Has anyone found a nice way of browsing and searching through these log files? For comparison, in our old Shiny Server Pro environment, it was fairly easy to set up a small shiny application that displayed all log files in the log folder and allowed the user to search through them...