diff --git a/internal/server/metrics.go b/internal/server/metrics.go index 5cf03585..aa7702d2 100644 --- a/internal/server/metrics.go +++ b/internal/server/metrics.go @@ -1,6 +1,7 @@ package server import ( + "fmt" "net/http" "github.com/tidwall/tile38/core" @@ -18,7 +19,7 @@ var ( "num_collections": prometheus.NewDesc("tile38_collections", "Total number of collections", nil, nil), "pid": prometheus.NewDesc("tile38_pid", "", nil, nil), "aof_size": prometheus.NewDesc("tile38_aof_size_bytes", "", nil, nil), - "num_hooks": prometheus.NewDesc("tile38_hooks_total", "", nil, nil), + "num_hooks": prometheus.NewDesc("tile38_hooks", "", nil, nil), "in_memory_size": prometheus.NewDesc("tile38_in_memory_size_bytes", "", nil, nil), "heap_size": prometheus.NewDesc("tile38_heap_size_bytes", "", nil, nil), "heap_released": prometheus.NewDesc("tile38_memory_reap_released_bytes", "", nil, nil), @@ -28,6 +29,10 @@ var ( "cpus": prometheus.NewDesc("tile38_num_cpus", "", nil, nil), "tile38_connected_clients": prometheus.NewDesc("tile38_connected_clients", "", nil, nil), + "tile38_total_connections_received": prometheus.NewDesc("tile38_connections_received_total", "", nil, nil), + "tile38_total_messages_sent": prometheus.NewDesc("tile38_messages_sent_total", "", nil, nil), + "tile38_expired_keys": prometheus.NewDesc("tile38_expired_keys_total", "", nil, nil), + /* these metrics are NOT taken from basicStats() / extStats() but are calculated independently @@ -37,6 +42,8 @@ var ( "collection_strings": prometheus.NewDesc("tile38_collection_strings", "Total number of strings per collection", []string{"col"}, nil), "collection_weight": prometheus.NewDesc("tile38_collection_weight_bytes", "Total weight of collection in bytes", []string{"col"}, nil), "server_info": prometheus.NewDesc("tile38_server_info", "Server info", []string{"id", "version"}, nil), + "replication": prometheus.NewDesc("tile38_replication_info", "Replication info", []string{"role", "following", "caught_up", "caught_up_once"}, nil), + "start_time": prometheus.NewDesc("tile38_start_time_seconds", "", nil, nil), } cmdDurations = prometheus.NewSummaryVec(prometheus.SummaryOpts{ @@ -46,6 +53,14 @@ var ( ) ) +func (s *Server) MetricsIndexHandler(w http.ResponseWriter, r *http.Request) { + w.Write([]byte(`
+