Examine today's unsuccessful requests Run


Logs.Where(x=> x.Time >= today and x.State % 100 >= 20)

Summary

This script will find unsuccessful requests that occurred today.

Note

today can always be replaced by yesterday or month or any other date. A different date can be specified by DateTime(yyyy,mm,dd).

For example, if you want to examine requests that were made since the 1st of June 2015, you could use the following script instead:

Logs.Where(x => x.Time >= DateTime(2015,06,01) and x.State % 100 >= 20)

Read more about state codes (State)