mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
f227083539
The derp metrics got out of sync in74eb99aed1
(2023-03). They were fixed in0380cbc90d
(2024-05). This adds some further guardrails (atop the previous fix) to make sure they don't get out of sync again. Updates #12288 Change-Id: I809061a81f8ff92f45054d0253bc13871fc71634 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
34 lines
1.0 KiB
Go
34 lines
1.0 KiB
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// Code generated by "stringer -type=dropReason -trimprefix=dropReason"; DO NOT EDIT.
|
|
|
|
package derp
|
|
|
|
import "strconv"
|
|
|
|
func _() {
|
|
// An "invalid array index" compiler error signifies that the constant values have changed.
|
|
// Re-run the stringer command to generate them again.
|
|
var x [1]struct{}
|
|
_ = x[dropReasonUnknownDest-0]
|
|
_ = x[dropReasonUnknownDestOnFwd-1]
|
|
_ = x[dropReasonGoneDisconnected-2]
|
|
_ = x[dropReasonQueueHead-3]
|
|
_ = x[dropReasonQueueTail-4]
|
|
_ = x[dropReasonWriteError-5]
|
|
_ = x[dropReasonDupClient-6]
|
|
_ = x[numDropReasons-7]
|
|
}
|
|
|
|
const _dropReason_name = "UnknownDestUnknownDestOnFwdGoneDisconnectedQueueHeadQueueTailWriteErrorDupClientnumDropReasons"
|
|
|
|
var _dropReason_index = [...]uint8{0, 11, 27, 43, 52, 61, 71, 80, 94}
|
|
|
|
func (i dropReason) String() string {
|
|
if i < 0 || i >= dropReason(len(_dropReason_index)-1) {
|
|
return "dropReason(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
}
|
|
return _dropReason_name[_dropReason_index[i]:_dropReason_index[i+1]]
|
|
}
|