-
Notifications
You must be signed in to change notification settings - Fork 47
/
housekeeping-failed-webhooks.html
80 lines (73 loc) · 2.21 KB
/
housekeeping-failed-webhooks.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
---
layout: default
title: Failed Webhooks
permalink: /housekeeping-failed-webhooks
---
<div class="chart-placeholder">
<h3>Failed Webhooks</h3>
<canvas
data-url="{{ site.dataURL }}/failed-webhooks.tsv"
data-type="history"
data-config='{
"views":
[
{
"label": "2 m",
"tooltip": "Show the last 2 months",
"aggregate": false,
"slice": [0, 61],
"default": true
},
{
"label": "2 y",
"tooltip": "Show the last 2 years",
"aggregate":
{
"period": "week",
"method": "sum"
},
"slice": [0, 106]
},
{
"label": "all",
"tooltip": "Show all data",
"aggregate":
{
"period": "week",
"method": "sum"
}
}
]
}'></canvas>
<div class="info-box">
<p>
Use <code>ghe-webhook-logs -f -i <hook-id></code> to show a webhook's failures. Please see <a href="https://docs.github.com/enterprise-server/admin/configuration/command-line-utilities#ghe-webhook-logs">ghe-webhook-logs</a> for additional information.
</p>
<p>
Use <code>ghe-webhook-manage -s <hook-id></code> to lookup a webhook's information (target, url, active status).
</p>
<p>
Use <code>ghe-webhook-manage -d <hook-id></code> to disable a webhook.
</p>
<p>
Use <code>ghe-webhook-manage -e <hook-id></code> to enable a webhook.
</p>
</div>
</div>
<div class="chart-placeholder">
<table data-url="{{ site.dataURL }}/failed-webhooks-detailed.tsv" data-type="table"></table>
<div class="info-box">
<p>
This table lists the webhooks that failed yesterday.
</p>
<p>
Webhook types
<ul>
<li><code>business</code> a <a href="https://docs.github.com/enterprise-server/admin/user-management/managing-global-webhooks">global webhook</a></li>
<li><code>integration</code> a <a href="https://docs.github.com/enterprise-server/developers/apps/getting-started-with-apps">GitHub App</a> webhook</li>
<li><code>repository</code> a <a href="https://docs.github.com/enterprise-server/rest/reference/repos#webhooks">repository hook</a></li>
<li><code>organization</code> an <a href="https://docs.github.com/enterprise-server/rest/reference/orgs#webhooks">organization hook</a></li>
</ul>
</p>
</div>
</div>