// ConnectionStats returns a map with connection statistics for each connected device. func (m *Model) ConnectionStats() map[string]ConnectionInfo { type remoteAddrer interface { RemoteAddr() net.Addr } m.pmut.RLock() m.fmut.RLock() var res = make(map[string]ConnectionInfo) for device, conn := range m.protoConn { ci := ConnectionInfo{ Statistics: conn.Statistics(), ClientVersion: m.deviceVer[device], } if nc, ok := m.rawConn[device].(remoteAddrer); ok { ci.Address = nc.RemoteAddr().String() } res[device.String()] = ci } m.fmut.RUnlock() m.pmut.RUnlock() in, out := protocol.TotalInOut() res["total"] = ConnectionInfo{ Statistics: protocol.Statistics{ At: time.Now(), InBytesTotal: in, OutBytesTotal: out, }, } return res }
func savePerfStats(file string) { fd, err := os.Create(file) if err != nil { panic(err) } var prevUsage int64 var prevTime int64 var rusage syscall.Rusage var memstats runtime.MemStats var prevIn, prevOut int64 t0 := time.Now() for t := range time.NewTicker(250 * time.Millisecond).C { syscall.Getrusage(syscall.RUSAGE_SELF, &rusage) curTime := time.Now().UnixNano() timeDiff := curTime - prevTime curUsage := rusage.Utime.Nano() + rusage.Stime.Nano() usageDiff := curUsage - prevUsage cpuUsagePercent := 100 * float64(usageDiff) / float64(timeDiff) prevTime = curTime prevUsage = curUsage in, out := protocol.TotalInOut() var inRate, outRate float64 if timeDiff > 0 { inRate = float64(in-prevIn) / (float64(timeDiff) / 1e9) // bytes per second outRate = float64(out-prevOut) / (float64(timeDiff) / 1e9) // bytes per second } prevIn, prevOut = in, out runtime.ReadMemStats(&memstats) startms := int(t.Sub(t0).Seconds() * 1000) fmt.Fprintf(fd, "%d\t%f\t%d\t%d\t%.0f\t%.0f\n", startms, cpuUsagePercent, memstats.Alloc, memstats.Sys-memstats.HeapReleased, inRate, outRate) } }