opencensus-go-exporter-stackdriver icon indicating copy to clipboard operation
opencensus-go-exporter-stackdriver copied to clipboard

ClientCompletedRPCsView does not have meaningful groupings

Open jeanbza opened this issue 7 years ago • 2 comments

In my code I have,

// Subscribe views to see stats in Stackdriver Monitoring.
	if err := view.Register(
		ocgrpc.ClientSentBytesPerRPCView,
		ocgrpc.ClientReceivedBytesPerRPCView,
		ocgrpc.ClientRoundtripLatencyView,
		ocgrpc.ClientCompletedRPCsView,
		ocgrpc.ClientSentMessagesPerRPCView,
		ocgrpc.ClientReceivedMessagesPerRPCView,
		ocgrpc.ClientServerLatencyView,
		pubsub.AckCountView,
		pubsub.ModAckCountView,
		pubsub.NackCountView,
		pubsub.PullCountView,
		pubsub.StreamOpenCountView,
		pubsub.StreamRequestCountView,
		pubsub.StreamRetryCountView,
	); err != nil {
		panic(err)
	}

When I go to stackdriver, I expect to be able to group by RPC. However, the groupings for ClientCompletedRPCsView all have meaningless names.

screen shot 2018-10-12 at 1 22 27 pm

jeanbza avatar Oct 12 '18 20:10 jeanbza

any idea where these weird $-sign names are coming from? Is this a bug in Stackdriver UI?

semistrict avatar Oct 22 '18 18:10 semistrict

I do not, unfortunately.

jeanbza avatar Oct 22 '18 19:10 jeanbza