You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: pkg/origin/response.go
+3
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,7 @@ type Stats struct {
47
47
Status503uint64`json:"status_503"`// Number of responses received with status code 503 (Service Unavailable) from origin.
48
48
Status504uint64`json:"status_504"`// Number of responses received with status code 504 (Gateway Timeout) from origin.
49
49
Status505uint64`json:"status_505"`// Number of responses received with status code 505 (HTTP Version Not Supported) from origin.
50
+
Status530uint64`json:"status_530"`// Number of responses received from origin with status code 530.
50
51
Status5xxuint64`json:"status_5xx"`// Number of 5xx "Server Error" codes delivered from origin.
51
52
Latency0to1uint64`json:"latency_0_to_1ms"`// Number of responses from origin with latency between 0 and 1 millisecond.
52
53
Latency1to5uint64`json:"latency_1_to_5ms"`// Number of responses from origin with latency between 1 and 5 milliseconds.
@@ -86,6 +87,7 @@ type Stats struct {
86
87
WafStatus503uint64`json:"waf_status_503"`// Number of responses received with status code 503 (Service Unavailable) received for origin requests made by the Fastly WAF.
87
88
WafStatus504uint64`json:"waf_status_504"`// Number of responses received with status code 504 (Gateway Timeout) received for origin requests made by the Fastly WAF.
88
89
WafStatus505uint64`json:"waf_status_505"`// Number of responses received with status code 505 (HTTP Version Not Supported) received for origin requests made by the Fastly WAF.
90
+
WafStatus530uint64`json:"waf_status_530"`// Number of responses received with status code 530 received for origin requests made by the Fastly WAF.
89
91
WafLatency0to1uint64`json:"waf_latency_0_to_1ms"`// Number of responses with latency between 0 and 1 millisecond received for origin requests made by the Fastly WAF.
90
92
WafLatency1to5uint64`json:"waf_latency_1_to_5ms"`// Number of responses with latency between 1 and 5 milliseconds received for origin requests made by the Fastly WAF.
91
93
WafLatency5to10uint64`json:"waf_latency_5_to_10ms"`// Number of responses with latency between 5 and 10 milliseconds received for origin requests made by the Fastly WAF.
@@ -124,6 +126,7 @@ type Stats struct {
124
126
ComputeStatus503uint64`json:"compute_status_503"`// Number of responses received with status code 503 (Service Unavailable) for origin received by Compute@Edge.
125
127
ComputeStatus504uint64`json:"compute_status_504"`// Number of responses received with status code 504 (Gateway Timeout) for origin received by Compute@Edge.
126
128
ComputeStatus505uint64`json:"compute_status_505"`// Number of responses received with status code 505 (HTTP Version Not Supported) for origin received by Compute@Edge.
129
+
ComputeStatus530uint64`json:"compute_status_530"`// Number of responses received with status code 530 for origin received by the Compute platform.
127
130
ComputeLatency0to1uint64`json:"compute_latency_0_to_1ms"`// Number of responses with latency between 0 and 1 millisecond for origin received by Compute@Edge.
128
131
ComputeLatency1to5uint64`json:"compute_latency_1_to_5ms"`// Number of responses with latency between 1 and 5 milliseconds for origin received by Compute@Edge.
129
132
ComputeLatency5to10uint64`json:"compute_latency_5_to_10ms"`// Number of responses with latency between 5 and 10 milliseconds for origin received by Compute@Edge.
0 commit comments