-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Can show some repositry statistics? #7392
Comments
Specifically, I would suggest the following statistics:
|
Just to contribute to the discussion and reasoning: Code frequency has multiple use cases:
Also, on top of what @FalconWu2017 and @bestlinuxgamers suggested, it would be very informative to know some general statistics about number/ratio of code lines, comment lines, blank lines, blob/binary sizes. The former three would provide some metric about code readability (similar to what lok reports), and the latter would suggest if cloning the repo need some significant space (usually those are surprises that I only find out when cloning or going through the local clone with: find ./ -type f -print0 \
| xargs -0 -n 1 -I {} du -h '{}' \
| sort -h \
| tail -n 10 |
I would suggest statistics about how many people visited your gitea server per day in a chart. And some other statistics for example how much data was additionally stored, how many GB of interner where used, |
### Overview This is the implementation of Code Frequency page. This feature was mentioned on these issues: #18262, #7392. It adds another tab to Activity page called Code Frequency. Code Frequency tab shows additions and deletions over time since the repository existed. Before: <img width="1296" alt="image" src="https://github.com/go-gitea/gitea/assets/32161460/2603504f-aee7-4929-a8c4-fb3412a7a0f6"> After: <img width="1296" alt="image" src="https://github.com/go-gitea/gitea/assets/32161460/58c03721-729f-4536-a663-9f337f240963"> --- #### Features - See additions deletions over time since repository existed - Click on "Additions" or "Deletions" legend to show only one type of contribution - Use the same cache from Contributors page so that the loading of data will be fast once it is cached by visiting either one of the pages --------- Co-authored-by: Giteabot <[email protected]>
Hi, |
Show some statistics in Overview inActivity.
For example
Lines Count in all files
,Size of repositry
,Clone count
,Commit's count
etc.The text was updated successfully, but these errors were encountered: