fun widget count |
Displays a widget count by repository.
Hide Query Show Query "repo.id"="109827563" | count()
| Gauge |
Most forked |
Displays a table of the most forked events then limits results to
the first 50 entries.
Hide Query Show Query ForkEvent| regex(".*/(?<repname>.*)", field=repo.name) | groupby(repname)| sort(limit=50)
| Table |
Pushes/sec |
Displays a chart of push events per second in a 10 second time
span.
Hide Query Show Query type=PushEvent | timechart(span=10s) | eval(_count=_count/10)
| Time Chart |
Events/sec |
Displays a chart of repository events per second by owner.
Hide Query Show Query regex("(?<owner>.*)/.*", field=repo.name) | owner=?owner | timechart(type, unit="1/s")
| Time Chart |
Unique users per day |
Displays a chart of unique users per day based on login data.
Hide Query Show Query timechart(function=count(actor.login, distinct=true), span=1d)
| Time Chart |
Top Actors |
Displays a table of top actors by ID.
Hide Query Show Query | Table |
Events per second |
Provides a chart of the defined event type per second.
Hide Query Show Query timechart(type, unit="1/s")
| Time Chart |
Most watched |
Displays a list of the top ten most watched repositories.
Hide Query Show Query type=WatchEvent | groupby(repo.name) | sort(limit=10)
| Table |
Events per second |
Displays a list of events per second in a 1 minute time span.
Hide Query Show Query count() | eval(_count = _count /60)
| Gauge |
Events per second |
Displays the number of events occurring per second.
Hide Query Show Query count() | eval(_count = _count / 60)
| Gauge |
Issues per second |
Displays a chart of issues per second in a 5 minute timespan.
Hide Query Show Query type=IssuesEvent | timechart(payload.action, span=5m, unit="event/sec")
| Time Chart |
Most comments |
Displays a list of comments by login and limits results to the
first 10 entries.
Hide Query Show Query type=*CommentEvent | groupby(actor.login, function=count(as=comments)) | sort(comments, limit=10)
| Bar Chart |
popular repos |
Displays a pie chart of popular repositories limited to the first
10 entries.
Hide Query Show Query type=WatchEvent | payload.action=started | groupby(repo.name) | sort(limit=10)
| Pie Chart |