Versions in this module Expand all Collapse all v1 v1.0.0 Mar 22, 2021 Changes in this version + var PrometheusHTTPRequestCount = prometheus.NewCounterVec(prometheus.CounterOpts{ ... }, []string{ ... }) + var PrometheusHTTPRequestLatency = prometheus.NewSummaryVec(prometheus.SummaryOpts{ ... }, []string{ ... }) + var PrometheusHTTPResponseCount = prometheus.NewCounterVec(prometheus.CounterOpts{ ... }, []string{ ... }) + var PrometheusWebsocketMessageCount = prometheus.NewCounterVec(prometheus.CounterOpts{ ... }, []string{ ... }) + var PrometheusWebsocketMessageSize = prometheus.NewSummaryVec(prometheus.SummaryOpts{ ... }, []string{ ... }) + func MustRegister(collectors ...prometheus.Collector)