ledisdb/server/info.go

200 lines
4.2 KiB
Go
Raw Normal View History

2014-08-25 10:18:23 +04:00
package server
import (
"bytes"
"fmt"
2014-10-22 05:11:14 +04:00
"github.com/siddontang/go/sync2"
2014-08-25 10:18:23 +04:00
"os"
"runtime"
"strings"
"sync"
"sync/atomic"
)
type info struct {
sync.Mutex
app *App
Server struct {
OS string
ProceessId int
}
Clients struct {
ConnectedClients int64
}
2014-10-13 10:37:31 +04:00
Replication struct {
2014-10-22 05:11:14 +04:00
PubLogNum sync2.AtomicInt64
PubLogAckNum sync2.AtomicInt64
PubLogTotalAckTime sync2.AtomicDuration
MasterLastLogID sync2.AtomicUint64
2014-10-13 10:37:31 +04:00
}
2014-08-25 10:18:23 +04:00
}
func newInfo(app *App) (i *info, err error) {
i = new(info)
i.app = app
i.Server.OS = runtime.GOOS
i.Server.ProceessId = os.Getpid()
return i, nil
}
func (i *info) addClients(delta int64) {
atomic.AddInt64(&i.Clients.ConnectedClients, delta)
}
2014-10-15 06:41:43 +04:00
2014-08-25 10:18:23 +04:00
func (i *info) Close() {
}
func getMemoryHuman(m uint64) string {
if m > GB {
return fmt.Sprintf("%dG", m/GB)
} else if m > MB {
return fmt.Sprintf("%dM", m/MB)
} else if m > KB {
return fmt.Sprintf("%dK", m/KB)
} else {
return fmt.Sprintf("%d", m)
}
}
func (i *info) Dump(section string) []byte {
buf := &bytes.Buffer{}
switch strings.ToLower(section) {
case "":
i.dumpAll(buf)
case "server":
i.dumpServer(buf)
case "client":
i.dumpClients(buf)
case "mem":
i.dumpMem(buf)
2014-10-15 06:41:43 +04:00
case "store":
i.dumpStore(buf)
2014-09-23 13:53:52 +04:00
case "replication":
i.dumpReplication(buf)
2014-08-25 10:18:23 +04:00
default:
buf.WriteString(fmt.Sprintf("# %s\r\n", section))
}
return buf.Bytes()
}
type infoPair struct {
Key string
Value interface{}
}
func (i *info) dumpAll(buf *bytes.Buffer) {
i.dumpServer(buf)
buf.Write(Delims)
2014-10-15 06:41:43 +04:00
i.dumpStore(buf)
2014-08-25 10:18:23 +04:00
buf.Write(Delims)
i.dumpClients(buf)
buf.Write(Delims)
i.dumpMem(buf)
buf.Write(Delims)
2014-09-23 13:53:52 +04:00
i.dumpReplication(buf)
2014-08-25 10:18:23 +04:00
}
func (i *info) dumpServer(buf *bytes.Buffer) {
buf.WriteString("# Server\r\n")
i.dumpPairs(buf, infoPair{"os", i.Server.OS},
infoPair{"process_id", i.Server.ProceessId},
infoPair{"addr", i.app.cfg.Addr},
2014-10-10 05:49:16 +04:00
infoPair{"http_addr", i.app.cfg.HttpAddr},
2014-10-15 06:41:43 +04:00
infoPair{"readonly", i.app.cfg.Readonly},
infoPair{"goroutine_num", runtime.NumGoroutine()},
)
2014-08-25 10:18:23 +04:00
}
func (i *info) dumpClients(buf *bytes.Buffer) {
buf.WriteString("# Client\r\n")
i.dumpPairs(buf, infoPair{"client_num", i.Clients.ConnectedClients})
}
func (i *info) dumpMem(buf *bytes.Buffer) {
buf.WriteString("# Mem\r\n")
var mem runtime.MemStats
runtime.ReadMemStats(&mem)
i.dumpPairs(buf, infoPair{"mem_alloc", mem.Alloc},
infoPair{"mem_alloc_human", getMemoryHuman(mem.Alloc)})
}
2014-10-15 06:41:43 +04:00
func (i *info) dumpStore(buf *bytes.Buffer) {
buf.WriteString("# Store\r\n")
s := i.app.ldb.StoreStat()
2014-10-16 05:45:48 +04:00
i.dumpPairs(buf, infoPair{"name", i.app.cfg.DBName},
2014-10-15 06:41:43 +04:00
infoPair{"get", s.GetNum},
infoPair{"get_missing", s.GetMissingNum},
infoPair{"put", s.PutNum},
infoPair{"delete", s.DeleteNum},
infoPair{"iter", s.IterNum},
infoPair{"iter_seek", s.IterSeekNum},
infoPair{"iter_close", s.IterCloseNum},
infoPair{"batch_commit", s.BatchCommitNum},
)
2014-08-25 10:18:23 +04:00
}
2014-09-23 13:53:52 +04:00
func (i *info) dumpReplication(buf *bytes.Buffer) {
buf.WriteString("# Replication\r\n")
p := []infoPair{}
2014-10-21 13:35:03 +04:00
i.app.slock.Lock()
2014-09-24 05:46:36 +04:00
slaves := make([]string, 0, len(i.app.slaves))
2014-10-21 13:35:03 +04:00
for _, s := range i.app.slaves {
slaves = append(slaves, s.slaveListeningAddr)
2014-09-23 13:53:52 +04:00
}
2014-10-21 13:35:03 +04:00
i.app.slock.Unlock()
2014-09-24 05:46:36 +04:00
2014-10-22 05:11:14 +04:00
num := i.Replication.PubLogNum.Get()
2014-10-13 10:37:31 +04:00
p = append(p, infoPair{"pub_log_num", num})
2014-10-22 05:11:14 +04:00
ackNum := i.Replication.PubLogAckNum.Get()
totalTime := i.Replication.PubLogTotalAckTime.Get().Nanoseconds() / 1e6
if ackNum != 0 {
p = append(p, infoPair{"pub_log_ack_per_time", totalTime / ackNum})
2014-10-13 10:37:31 +04:00
} else {
2014-10-22 05:11:14 +04:00
p = append(p, infoPair{"pub_log_ack_per_time", 0})
2014-10-13 10:37:31 +04:00
}
2014-10-10 05:49:16 +04:00
p = append(p, infoPair{"slaveof", i.app.cfg.SlaveOf})
2014-09-24 05:46:36 +04:00
if len(slaves) > 0 {
2014-10-10 05:49:16 +04:00
p = append(p, infoPair{"slaves", strings.Join(slaves, ",")})
2014-09-24 05:46:36 +04:00
}
2014-10-09 06:47:21 +04:00
if s, _ := i.app.ldb.ReplicationStat(); s != nil {
p = append(p, infoPair{"last_log_id", s.LastID})
p = append(p, infoPair{"first_log_id", s.FirstID})
p = append(p, infoPair{"commit_log_id", s.CommitID})
} else {
p = append(p, infoPair{"last_log_id", 0})
p = append(p, infoPair{"first_log_id", 0})
p = append(p, infoPair{"commit_log_id", 0})
2014-10-09 06:47:21 +04:00
}
2014-09-24 05:46:36 +04:00
2014-10-22 05:11:14 +04:00
p = append(p, infoPair{"master_last_log_id", i.Replication.MasterLastLogID.Get()})
2014-09-23 13:53:52 +04:00
i.dumpPairs(buf, p...)
}
2014-08-25 10:18:23 +04:00
func (i *info) dumpPairs(buf *bytes.Buffer, pairs ...infoPair) {
for _, v := range pairs {
buf.WriteString(fmt.Sprintf("%s:%v\r\n", v.Key, v.Value))
}
}