-
Notifications
You must be signed in to change notification settings - Fork 47
/
repos-size.html
98 lines (96 loc) · 2.02 KB
/
repos-size.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
---
layout: default
title: Repository Size
permalink: /repos-size
---
<div class="chart-placeholder">
<h3>Repository Size</h3>
<canvas
data-url="{{ site.dataURL }}/repository-size.tsv"
data-type="history"
data-config='{
"views":
[
{
"label": "2 m",
"tooltip": "Show the last 2 months",
"aggregate": false,
"series":
[
"repositories >1GB"
],
"visibleSeries":
[
"repositories >1GB"
],
"slice": [0, 61]
},
{
"label": "2 y",
"tooltip": "Show the last 2 years",
"aggregate":
{
"period": "week",
"method": "max"
},
"series":
[
"repositories >1GB"
],
"visibleSeries":
[
"repositories >1GB"
],
"slice": [0, 106],
"default": true
},
{
"label": "all",
"tooltip": "Show all data",
"aggregate":
{
"period": "week",
"method": "max"
},
"series":
[
"repositories >1GB"
],
"visibleSeries":
[
"repositories >1GB"
]
}
]
}'
></canvas>
<div class="info-box">
<p>
Shows how many repositories are larger than 1GB.
</p>
</div>
<div class="info-box">
<p>
GitHub <a href="https://help.github.com/en/github/managing-large-files/what-is-my-disk-quota#file-and-repository-size-limitations">recommends</a> to keep the repository
size below 1 GB. Repositories above that limit require usually more extensive resources for the
automated repository maintenance which can affect the overall health of the appliance.
</p>
<p>
You can reach out to <a href="https://services.github.com/">GitHub Professional Services</a> if you
want help to shrink your repositories.
</p>
</div>
</div>
<div class="chart-placeholder">
<h3>Most Active Repositories</h3>
<table
data-url="{{ site.dataURL }}/repository-size-detailed.tsv"
data-config='{"slice": [0, 50]}'
data-type="table"
></table>
<div class="info-box">
<p>
The top 50 largest repositories sorted by their size.
</p>
</div>
</div>