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
This starts to plumb in oc instrumentation, as we're already using it in
bigquery proper and other veneers.
Testing instrumentation helped catch another double-close in the recv processor, so this
addresses that as well.
Towards #4366
// AppendRequests is a measure of the number of append requests sent.
36
+
// It is EXPERIMENTAL and subject to change or removal without notice.
37
+
AppendRequests=stats.Int64(statsPrefix+"append_requests", "Number of append requests sent", stats.UnitDimensionless)
38
+
39
+
// AppendResponses is a measure of the number of append responses received.
40
+
// It is EXPERIMENTAL and subject to change or removal without notice.
41
+
AppendResponses=stats.Int64(statsPrefix+"append_responses", "Number of append responses sent", stats.UnitDimensionless)
42
+
43
+
// FlushRequests is a measure of the number of FlushRows requests sent.
44
+
// It is EXPERIMENTAL and subject to change or removal without notice.
45
+
FlushRequests=stats.Int64(statsPrefix+"flush_requests", "Number of FlushRows requests sent", stats.UnitDimensionless)
46
+
47
+
// AppendClientOpenCount is a measure of the number of times the AppendRowsClient was opened.
48
+
// It is EXPERIMENTAL and subject to change or removal without notice.
49
+
AppendClientOpenCount=stats.Int64(statsPrefix+"stream_open_count", "Number of times AppendRowsClient was opened", stats.UnitDimensionless)
50
+
51
+
// AppendClientOpenRetryCount is a measure of the number of times the AppendRowsClient open was retried.
52
+
// It is EXPERIMENTAL and subject to change or removal without notice.
53
+
AppendClientOpenRetryCount=stats.Int64(statsPrefix+"stream_open_retry_count", "Number of times AppendRowsClient open was retried", stats.UnitDimensionless)
54
+
)
55
+
56
+
var (
57
+
// AppendRequestsView is a cumulative sum of AppendRequests.
58
+
// It is EXPERIMENTAL and subject to change or removal without notice.
59
+
AppendRequestsView*view.View
60
+
61
+
// AppendResponsesView is a cumulative sum of AppendResponses.
62
+
// It is EXPERIMENTAL and subject to change or removal without notice.
63
+
AppendResponsesView*view.View
64
+
65
+
// FlushRequestsView is a cumulative sum of FlushRequests.
66
+
// It is EXPERIMENTAL and subject to change or removal without notice.
67
+
FlushRequestsView*view.View
68
+
69
+
// AppendClientOpenView is a cumulative sum of AppendClientOpenCount.
70
+
// It is EXPERIMENTAL and subject to change or removal without notice.
71
+
AppendClientOpenView*view.View
72
+
73
+
// AppendClientOpenRetryView is a cumulative sum of AppendClientOpenRetryCount.
74
+
// It is EXPERIMENTAL and subject to change or removal without notice.
0 commit comments