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
// AppendClientOpenCount is a measure of the number of times the AppendRowsClient was opened.
47
+
// It is EXPERIMENTAL and subject to change or removal without notice.
48
+
AppendClientOpenCount=stats.Int64(statsPrefix+"stream_open_count", "Number of times AppendRowsClient was opened", stats.UnitDimensionless)
49
+
50
+
// AppendClientOpenRetryCount is a measure of the number of times the AppendRowsClient open was retried.
51
+
// It is EXPERIMENTAL and subject to change or removal without notice.
52
+
AppendClientOpenRetryCount=stats.Int64(statsPrefix+"stream_open_retry_count", "Number of times AppendRowsClient open was retried", stats.UnitDimensionless)
53
+
39
54
// AppendRequests is a measure of the number of append requests sent.
40
55
// It is EXPERIMENTAL and subject to change or removal without notice.
41
56
AppendRequests=stats.Int64(statsPrefix+"append_requests", "Number of append requests sent", stats.UnitDimensionless)
42
57
43
-
// AppendBytes is a measure of the bytes sent as append requests.
58
+
// AppendRequestBytes is a measure of the bytes sent as append requests.
59
+
// It is EXPERIMENTAL and subject to change or removal without notice.
60
+
AppendRequestBytes=stats.Int64(statsPrefix+"append_request_bytes", "Number of bytes sent as append requests", stats.UnitBytes)
61
+
62
+
// AppendRequestErrors is a measure of the number of append requests that errored on send.
63
+
// It is EXPERIMENTAL and subject to change or removal without notice.
64
+
AppendRequestErrors=stats.Int64(statsPrefix+"append_request_errors", "Number of append requests that yielded immediate error", stats.UnitDimensionless)
65
+
66
+
// AppendRequestRows is a measure of the number of append rows sent.
44
67
// It is EXPERIMENTAL and subject to change or removal without notice.
45
-
AppendBytes=stats.Int64(statsPrefix+"append_bytes", "Number of bytes sent as append requests", stats.UnitBytes)
68
+
AppendRequestRows=stats.Int64(statsPrefix+"append_rows", "Number of append rows sent", stats.UnitDimensionless)
46
69
47
70
// AppendResponses is a measure of the number of append responses received.
48
71
// It is EXPERIMENTAL and subject to change or removal without notice.
49
72
AppendResponses=stats.Int64(statsPrefix+"append_responses", "Number of append responses sent", stats.UnitDimensionless)
50
73
74
+
// AppendResponseErrors is a measure of the number of append responses received with an error attached.
75
+
// It is EXPERIMENTAL and subject to change or removal without notice.
76
+
AppendResponseErrors=stats.Int64(statsPrefix+"append_response_errors", "Number of append responses with errors attached", stats.UnitDimensionless)
77
+
51
78
// FlushRequests is a measure of the number of FlushRows requests sent.
52
79
// It is EXPERIMENTAL and subject to change or removal without notice.
53
80
FlushRequests=stats.Int64(statsPrefix+"flush_requests", "Number of FlushRows requests sent", stats.UnitDimensionless)
81
+
)
54
82
55
-
// AppendClientOpenCount is a measure of the number of times the AppendRowsClient was opened.
83
+
var (
84
+
85
+
// AppendClientOpenView is a cumulative sum of AppendClientOpenCount.
56
86
// It is EXPERIMENTAL and subject to change or removal without notice.
57
-
AppendClientOpenCount=stats.Int64(statsPrefix+"stream_open_count", "Number of times AppendRowsClient was opened", stats.UnitDimensionless)
87
+
AppendClientOpenView*view.View
58
88
59
-
// AppendClientOpenRetryCount is a measure of the number of times the AppendRowsClient open was retried.
89
+
// AppendClientOpenRetryView is a cumulative sum of AppendClientOpenRetryCount.
60
90
// It is EXPERIMENTAL and subject to change or removal without notice.
61
-
AppendClientOpenRetryCount=stats.Int64(statsPrefix+"stream_open_retry_count", "Number of times AppendRowsClient open was retried", stats.UnitDimensionless)
62
-
)
91
+
AppendClientOpenRetryView*view.View
63
92
64
-
var (
65
93
// AppendRequestsView is a cumulative sum of AppendRequests.
66
94
// It is EXPERIMENTAL and subject to change or removal without notice.
67
95
AppendRequestsView*view.View
68
96
69
-
// AppendBytesView is a cumulative sum of AppendBytes.
97
+
// AppendRequestBytesView is a cumulative sum of AppendRequestBytes.
70
98
// It is EXPERIMENTAL and subject to change or removal without notice.
71
-
AppendBytesView*view.View
99
+
AppendRequestBytesView*view.View
72
100
73
-
// AppendResponsesView is a cumulative sum of AppendResponses.
101
+
// AppendRequestErrorsView is a cumulative sum of AppendRequestErrors.
74
102
// It is EXPERIMENTAL and subject to change or removal without notice.
75
-
AppendResponsesView*view.View
103
+
AppendRequestErrorsView*view.View
76
104
77
-
// FlushRequestsView is a cumulative sum of FlushRequests.
105
+
// AppendRequestRowsView is a cumulative sum of AppendRows.
78
106
// It is EXPERIMENTAL and subject to change or removal without notice.
79
-
FlushRequestsView*view.View
107
+
AppendRequestRowsView*view.View
80
108
81
-
// AppendClientOpenView is a cumulative sum of AppendClientOpenCount.
109
+
// AppendResponsesView is a cumulative sum of AppendResponses.
82
110
// It is EXPERIMENTAL and subject to change or removal without notice.
83
-
AppendClientOpenView*view.View
111
+
AppendResponsesView*view.View
84
112
85
-
// AppendClientOpenRetryView is a cumulative sum of AppendClientOpenRetryCount.
113
+
// AppendResponseErrorsView is a cumulative sum of AppendResponseErrors.
86
114
// It is EXPERIMENTAL and subject to change or removal without notice.
87
-
AppendClientOpenRetryView*view.View
115
+
AppendResponseErrorsView*view.View
116
+
117
+
// FlushRequestsView is a cumulative sum of FlushRequests.
118
+
// It is EXPERIMENTAL and subject to change or removal without notice.
0 commit comments