Muttu B C
Muttu B C

Reputation: 37

How to read the Azure Web job log files using C#

I have around 10 jobs running in azure daily basis, so I need a total report of the jobs. For this I need to read logs using C#.

Upvotes: 1

Views: 564

Answers (1)

Fei Han
Fei Han

Reputation: 27825

You can list all web jobs using the following API first, and then you can get logs from log_url of each webjob.

GET /api/webjobs

For detailed information, please check WebJobs API.

Upvotes: 2

Related Questions