func go.opencensus.io/stats.Float64

14 uses

	go.opencensus.io/stats (current package)
		measure_float64.go#L37: func Float64(name, description, unit string) *Float64Measure {

	go.opencensus.io/plugin/ocgrpc
		client_metrics.go#L30: 	ClientRoundtripLatency       = stats.Float64("grpc.io/client/roundtrip_latency", "Time between first byte of request sent to last byte of response received, or terminal error.", stats.UnitMilliseconds)
		client_metrics.go#L31: 	ClientServerLatency          = stats.Float64("grpc.io/client/server_latency", `Propagated from the server and should have the same value as "grpc.io/server/latency".`, stats.UnitMilliseconds)
		server_metrics.go#L30: 	ServerLatency                = stats.Float64("grpc.io/server/server_latency", "Time between first byte of request received to last byte of response sent, or terminal error.", stats.UnitMilliseconds)

	go.opencensus.io/plugin/ochttp
		stats.go#L41: 	ClientLatency = stats.Float64(
		stats.go#L59: 	ClientRoundtripLatency = stats.Float64(
		stats.go#L80: 	ServerLatency = stats.Float64(

	contrib.go.opencensus.io/integrations/ocsql
		observability.go#L27: 	MeasureLatencyMs         = stats.Float64("go.sql/latency", "The latency of calls in milliseconds", stats.UnitMilliseconds)
		observability.go#L32: 	MeasureWaitDuration      = stats.Float64("go.sql/connections/wait_duration", "The total time blocked waiting for a new connection", stats.UnitMilliseconds)

	golang.org/x/pkgsite/cmd/prober
		main.go#L173: 	firstByteLatency = stats.Float64(

	golang.org/x/pkgsite/internal/fetch
		fetch.go#L43: 	fetchLatency = stats.Float64(

	golang.org/x/pkgsite/internal/frontend
		fetch.go#L47: 	frontendFetchLatency = stats.Float64(

	golang.org/x/pkgsite/internal/middleware
		caching.go#L37: 	cacheLatency = stats.Float64(

	golang.org/x/pkgsite/internal/postgres
		search.go#L33: 	searchLatency = stats.Float64(