clearlydefined / clearlydefined/crawler
The ClearlyDefined crawler has a lot of exceptions from logs
- Dominant language
- JavaScript
- Stars
- 60
- Forks
- 38
- Avg merge
- 1h 49m
- Merged PRs (30d)
- 1
Description
There are a lot of exceptions in the ClearlyDefined crawler. This may slow down crawlers to consume the coordinates queue message. We could start to clean the exceptions from the top numbers.
```
exceptions
| where timestamp >= ago(90d)
| summarize count() by bin(timestamp, 1d)
| render timechart
exceptions
| where timestamp >= ago(80d)
| summarize count() by problemId
| order by count_ desc
```


Contributor guide
Assessment
This issue has not been assessed yet.