Documentation ¶
Index ¶
- func GetCurrentProcess() (*process.Process, error)
- type CpuStatistics
- type MemStatistics
- type NetStatistics
- func (ns *NetStatistics) BpsRecv() uint64
- func (ns *NetStatistics) BpsRecvPeak() uint64
- func (ns *NetStatistics) BpsSent() uint64
- func (ns *NetStatistics) BpsSentPeak() uint64
- func (ns *NetStatistics) ComputeStatistics()
- func (ns *NetStatistics) EpochStartEventHandler() epochStart.ActionHandler
- func (ns *NetStatistics) PercentRecv() uint64
- func (ns *NetStatistics) PercentSent() uint64
- func (ns *NetStatistics) TotalBytesReceivedInCurrentEpoch() uint64
- func (ns *NetStatistics) TotalBytesSentInCurrentEpoch() uint64
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetCurrentProcess ¶
GetCurrentProcess returns details about the current process
Types ¶
type CpuStatistics ¶
type CpuStatistics struct {
// contains filtered or unexported fields
}
CpuStatistics can compute the cpu usage percent
func NewCpuStatistics ¶
func NewCpuStatistics() (*CpuStatistics, error)
NewCpuStatistics will create a CpuStatistics object
func (*CpuStatistics) ComputeStatistics ¶
func (cs *CpuStatistics) ComputeStatistics()
ComputeStatistics computes the current cpu usage. It should be called on a go routine as it is a blocking call for a bounded time (1 second)
func (*CpuStatistics) CpuPercentUsage ¶
func (cs *CpuStatistics) CpuPercentUsage() uint64
CpuPercentUsage will return the cpu percent usage. Concurrent safe.
type MemStatistics ¶
type MemStatistics struct { Total uint64 PercentUsed uint64 UsedByGolang uint64 UsedBySystem uint64 HeapInUse uint64 StackInUse uint64 }
MemStatistics holds memory statistics
func AcquireMemStatistics ¶ added in v1.0.136
func AcquireMemStatistics() MemStatistics
AcquireMemStatistics acquires memory statistics
func (*MemStatistics) String ¶ added in v1.0.136
func (stats *MemStatistics) String() string
type NetStatistics ¶
type NetStatistics struct {
// contains filtered or unexported fields
}
NetStatistics can compute the network statistics
func (*NetStatistics) BpsRecv ¶
func (ns *NetStatistics) BpsRecv() uint64
BpsRecv bytes received per second on all interfaces
func (*NetStatistics) BpsRecvPeak ¶
func (ns *NetStatistics) BpsRecvPeak() uint64
BpsRecvPeak peak bytes received per second on all interfaces
func (*NetStatistics) BpsSent ¶
func (ns *NetStatistics) BpsSent() uint64
BpsSent bytes sent per second on all interfaces
func (*NetStatistics) BpsSentPeak ¶
func (ns *NetStatistics) BpsSentPeak() uint64
BpsSentPeak peak bytes sent per second on all interfaces
func (*NetStatistics) ComputeStatistics ¶
func (ns *NetStatistics) ComputeStatistics()
ComputeStatistics computes the current network statistics usage. It should be called on a go routine as it is a blocking call for a bounded time (1 second)
func (*NetStatistics) EpochStartEventHandler ¶ added in v1.1.1
func (ns *NetStatistics) EpochStartEventHandler() epochStart.ActionHandler
EpochStartEventHandler -
func (*NetStatistics) PercentRecv ¶
func (ns *NetStatistics) PercentRecv() uint64
PercentRecv BpsRecv / BpsRecvPeak * 100
func (*NetStatistics) PercentSent ¶
func (ns *NetStatistics) PercentSent() uint64
PercentSent BpsSent / BpsSentPeak * 100
func (*NetStatistics) TotalBytesReceivedInCurrentEpoch ¶ added in v1.1.1
func (ns *NetStatistics) TotalBytesReceivedInCurrentEpoch() uint64
TotalBytesReceivedInCurrentEpoch returns the number of bytes received in current epoch
func (*NetStatistics) TotalBytesSentInCurrentEpoch ¶ added in v1.1.1
func (ns *NetStatistics) TotalBytesSentInCurrentEpoch() uint64
TotalBytesSentInCurrentEpoch returns the number of bytes sent in current epoch