wings/server/resources.go

59 lines
1.9 KiB
Go
Raw Normal View History

package server
import (
"sync"
"sync/atomic"
2021-01-10 01:22:39 +00:00
"github.com/pterodactyl/wings/environment"
"github.com/pterodactyl/wings/system"
)
// ResourceUsage defines the current resource usage for a given server instance. If a server is offline you
// should obviously expect memory and CPU usage to be 0. However, disk will always be returned
// since that is not dependent on the server being running to collect that data.
type ResourceUsage struct {
mu sync.RWMutex
// Embed the current environment stats into this server specific resource usage struct.
environment.Stats
// The current server status.
2020-12-26 01:04:18 +00:00
State *system.AtomicString `json:"state"`
// The current disk space being used by the server. This value is not guaranteed to be accurate
// at all times. It is "manually" set whenever server.Proc() is called. This is kind of just a
// hacky solution for now to avoid passing events all over the place.
Disk int64 `json:"disk_bytes"`
}
// Proc returns the current resource usage stats for the server instance. This returns
2020-12-17 06:03:35 +00:00
// a copy of the tracked resources, so making any changes to the response will not
// have the desired outcome for you most likely.
func (s *Server) Proc() ResourceUsage {
s.resources.mu.Lock()
defer s.resources.mu.Unlock()
// Store the updated disk usage when requesting process usage.
atomic.StoreInt64(&s.resources.Disk, s.Filesystem().CachedUsage())
2020-12-17 06:03:35 +00:00
//goland:noinspection GoVetCopyLock
return s.resources
}
// Reset resets the usages values to zero, used when a server is stopped to ensure we don't hold
2020-12-17 06:03:35 +00:00
// onto any values incorrectly.
func (ru *ResourceUsage) Reset() {
ru.mu.Lock()
defer ru.mu.Unlock()
2020-12-17 06:03:35 +00:00
ru.Memory = 0
ru.CpuAbsolute = 0
ru.Uptime = 0
2020-12-17 06:03:35 +00:00
ru.Network.TxBytes = 0
ru.Network.RxBytes = 0
}
2020-08-19 04:42:57 +00:00
func (s *Server) emitProcUsage() {
if err := s.Events().PublishJson(StatsEvent, s.Proc()); err != nil {
2020-09-13 03:13:48 +00:00
s.Log().WithField("error", err).Warn("error while emitting server resource usage to listeners")
}
2020-08-19 04:42:57 +00:00
}