remove already unused endpoint metric

This commit is contained in:
Elvin Efendi 2018-11-21 20:05:44 +04:00
parent 068d633e81
commit d8b928f501
3 changed files with 5 additions and 10 deletions

View file

@ -30,7 +30,6 @@ import (
)
type upstream struct {
Endpoint string `json:"endpoint"`
Latency float64 `json:"upstreamLatency"`
ResponseLength float64 `json:"upstreamResponseLength"`
ResponseTime float64 `json:"upstreamResponseTime"`
@ -88,8 +87,6 @@ var (
"method",
"path",
// "endpoint",
"namespace",
"ingress",
"service",
@ -223,11 +220,10 @@ func (sc *SocketCollector) handleMessage(msg []byte) {
}
requestLabels := prometheus.Labels{
"host": stats.Host,
"status": stats.Status,
"method": stats.Method,
"path": stats.Path,
//"endpoint": stats.Endpoint,
"host": stats.Host,
"status": stats.Status,
"method": stats.Method,
"path": stats.Path,
"namespace": stats.Namespace,
"ingress": stats.Ingress,
"service": stats.Service,