summaryrefslogtreecommitdiff
path: root/internal/server
diff options
context:
space:
mode:
Diffstat (limited to 'internal/server')
-rw-r--r--internal/server/stats.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/internal/server/stats.go b/internal/server/stats.go
index 8583318..c07634d 100644
--- a/internal/server/stats.go
+++ b/internal/server/stats.go
@@ -3,7 +3,6 @@ package server
import (
"context"
"fmt"
- "runtime"
"sync"
"time"
@@ -53,9 +52,6 @@ func (s *stats) logServerStats() {
data := make(map[string]interface{})
data["currentConnections"] = s.currentConnections
data["lifetimeConnections"] = s.lifetimeConnections
- data["goroutines"] = runtime.NumGoroutine()
- data["cgocalls"] = runtime.NumCgoCall()
- data["cpu"] = runtime.NumCPU()
dlog.Server.Mapreduce("STATS", data)
}