I have a frequently running triggered webjob (every 3 minutes) and others that are triggered weekly/daily and some running continuously.
If I visit https://xxxx.scm.azurewebsites.net/azurejobs/#/functions the site takes forever to load as it tries to load and index function invocations and these get overwhelmed by the output from the frequent job.
My questions:
- How can I set the logging retention for a particular webjob?
- Anything I write to the console shows up in the Webjob run details page but nothing from the
TextWriter
. Since both outputs seem to get persisted, which is the recommended way?