Skip to content

Commit

Permalink
respondd statistics
Browse files Browse the repository at this point in the history
  • Loading branch information
genofire committed Apr 10, 2019
1 parent ff0bef2 commit 461e8fd
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 14 deletions.
12 changes: 6 additions & 6 deletions respond/daemon/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ type Daemon struct {
}

type AnswerConfig struct {
NodeID string `toml:"node_id"`
Hostname string `toml:"hostname"`
SiteCode string `toml:"site_code"`
DomainCode string `toml:"domain_code"`
Location *data.Location `json:"location,omitempty"`
VPN bool `toml:"vpn"`
NodeID string `toml:"node_id"`
Hostname string `toml:"hostname"`
SiteCode string `toml:"site_code"`
DomainCode string `toml:"domain_code"`
Location *data.Location `json:"location,omitempty"`
VPN bool `toml:"vpn"`
}

func (d *Daemon) getAnswer(iface string) (*AnswerConfig, string) {
Expand Down
16 changes: 8 additions & 8 deletions respond/daemon/nodeinfo.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package respondd

import (
"fmt"
"net"
"os"
"runtime"
"net"

"github.com/FreifunkBremen/yanic/data"
)
Expand Down Expand Up @@ -47,19 +47,19 @@ func getAddresses(iface string) (addrs []string) {
if err != nil {
return
}
inAddrs, err := in.Addrs()
inAddrs, err := in.Addrs()
if err != nil {
return
}
for _, a := range inAddrs {
var ip net.IP
switch v := a.(type) {
case *net.IPNet:
ip = v.IP
case *net.IPAddr:
ip = v.IP
default:
continue
case *net.IPNet:
ip = v.IP
case *net.IPAddr:
ip = v.IP
default:
continue
}
if ip4 := ip.To4(); ip4 == nil {
addrs = append(addrs, ip.String())
Expand Down
17 changes: 17 additions & 0 deletions respond/daemon/statistics.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package respondd

import (
"github.com/shirou/gopsutil/load"
"github.com/shirou/gopsutil/host"
"github.com/shirou/gopsutil/mem"

"github.com/FreifunkBremen/yanic/data"
)
Expand All @@ -12,4 +14,19 @@ func (d *Daemon) updateStatistics(iface string, data *data.ResponseData) {
if uptime, err := host.Uptime(); err == nil {
data.Statistics.Uptime = float64(uptime)
}
if m, err := mem.VirtualMemory(); err == nil {
data.Statistics.Memory.Cached = int64(m.Cached)
data.Statistics.Memory.Total = int64(m.Total)
data.Statistics.Memory.Buffers = int64(m.Buffers)
data.Statistics.Memory.Free = int64(m.Free)
data.Statistics.Memory.Available = int64(m.Available)
}
if v, err := load.Avg(); err == nil {
data.Statistics.LoadAverage = v.Load1
}
if v, err := load.Misc(); err == nil {
data.Statistics.Processes.Running = uint32(v.ProcsRunning)
//TODO fix after upstream
data.Statistics.Processes.Total = uint32(v.Ctxt)
}
}

0 comments on commit 461e8fd

Please sign in to comment.