-
Notifications
You must be signed in to change notification settings - Fork 209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing events #294
Comments
cc @caniszczyk |
I wonder if CNCF or Linux Foundation has plans to take on or sponsor the archiving effort of @igrigorik ? Since he seems inactive recently. |
I can work on this, but I need all the details about deployment(s) and permissions. |
@lukaszgryglicki would appreciate any help! Please ping me via email (see profile). |
@igrigorik email sent. |
Adding, another case of some of the events being missed , StarWarsAdi3 , this repo should have come in |
This is pretty easy to explain/fix, you will need to scrape all 3 pages of the events API on each execution of the scraper to obtain complete coverage instead of just the first page of events. To explain, the events API can return up to 100 events per page (when A naive (but functional) implementation could be to perform a fetch for all 3 pages at the same time once per second then de-duplicate the returned events with those that have been seen already based on event ID. However, this will require more than 5,000 requests/hour which exceeds the limit for a single API token. You can either switch to using a GitHub app token (that is installed on a paid enterprise) which has a higher rate-limit of 15,000 or use multiple different tokens/accounts such as one per page. |
Hi, there was an issue reported for DevStats. I've did a full investigation and found that events are missing in GHA JSONS, all details are here.
GHA archives JSON is missing this PR opened event - there should be
PullRequestEvent
event withpranav-pandey0804
as an author but archives only have comments and reviews. This shoudl be in2023-10-18-4
file but is not. See for example my PR - it has a correctPullRequestEvent
event withlukaszgryglicki
as an author.Other missing events are:
IssuesEvent
issue-opened event - it should be for the same authorpranav-pandey0804
.2
comments frompranav-pandey0804
author.3
comments frompranav-pandey0804
author.cc @pranav-pandey0804 @igrigorik
The text was updated successfully, but these errors were encountered: