2016-06-15 13:50:56 +02:00
|
|
|
// Copyright (c) 2012-2014 Jeremy Latt
|
|
|
|
// released under the MIT license
|
|
|
|
|
2014-04-15 17:49:52 +02:00
|
|
|
package irc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"runtime"
|
|
|
|
"runtime/debug"
|
|
|
|
"runtime/pprof"
|
|
|
|
"time"
|
2016-06-17 14:17:42 +02:00
|
|
|
|
|
|
|
"github.com/DanielOaks/girc-go/ircmsg"
|
2014-04-15 17:49:52 +02:00
|
|
|
)
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
func debugHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
2014-04-15 17:49:52 +02:00
|
|
|
if !client.flags[Operator] {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
switch msg.Params[0] {
|
2014-04-15 17:49:52 +02:00
|
|
|
case "GCSTATS":
|
|
|
|
stats := debug.GCStats{
|
|
|
|
Pause: make([]time.Duration, 10),
|
|
|
|
PauseQuantiles: make([]time.Duration, 5),
|
|
|
|
}
|
|
|
|
debug.ReadGCStats(&stats)
|
|
|
|
|
|
|
|
server.Replyf(client, "last GC: %s", stats.LastGC.Format(time.RFC1123))
|
|
|
|
server.Replyf(client, "num GC: %d", stats.NumGC)
|
|
|
|
server.Replyf(client, "pause total: %s", stats.PauseTotal)
|
|
|
|
server.Replyf(client, "pause quantiles min%%: %s", stats.PauseQuantiles[0])
|
|
|
|
server.Replyf(client, "pause quantiles 25%%: %s", stats.PauseQuantiles[1])
|
|
|
|
server.Replyf(client, "pause quantiles 50%%: %s", stats.PauseQuantiles[2])
|
|
|
|
server.Replyf(client, "pause quantiles 75%%: %s", stats.PauseQuantiles[3])
|
|
|
|
server.Replyf(client, "pause quantiles max%%: %s", stats.PauseQuantiles[4])
|
|
|
|
|
|
|
|
case "NUMGOROUTINE":
|
|
|
|
count := runtime.NumGoroutine()
|
|
|
|
server.Replyf(client, "num goroutines: %d", count)
|
|
|
|
|
|
|
|
case "PROFILEHEAP":
|
|
|
|
profFile := "ergonomadic.mprof"
|
|
|
|
file, err := os.Create(profFile)
|
|
|
|
if err != nil {
|
|
|
|
server.Replyf(client, "error: %s", err)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
pprof.Lookup("heap").WriteTo(file, 0)
|
|
|
|
server.Replyf(client, "written to %s", profFile)
|
|
|
|
|
|
|
|
case "STARTCPUPROFILE":
|
|
|
|
profFile := "ergonomadic.prof"
|
|
|
|
file, err := os.Create(profFile)
|
|
|
|
if err != nil {
|
|
|
|
server.Replyf(client, "error: %s", err)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if err := pprof.StartCPUProfile(file); err != nil {
|
|
|
|
defer file.Close()
|
|
|
|
server.Replyf(client, "error: %s", err)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
server.Replyf(client, "CPU profile writing to %s", profFile)
|
|
|
|
|
|
|
|
case "STOPCPUPROFILE":
|
|
|
|
pprof.StopCPUProfile()
|
|
|
|
server.Reply(client, "CPU profiling stopped")
|
|
|
|
}
|
|
|
|
}
|