I have Azure Web Apps set to store app logs and iis logs in Blob Storage. This is working, except that each app divides its logs into many disorganized folders, each with a random tag in the name. For example, if my web app is called my-web-app
, its logs get put in my-web-app__1E18
at one point in time, then my-web-app__4AE9
at another time, and so on until there are over 20 random parent directories for each app. To make things worse, the time frame of the log files in each parent directory overlaps. Two or more directories could simultaneously contain logs from January, February, and March. This makes it nearly impossible to find the relevant logs for a given hour.
Is there a way I can get all logging to go under a single parent directory for each app? All the logs for my-web-app
should go somewhere within a directory of exactly that name. What am I doing wrong?