Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func WorkerTable ¶
func WorkerTable(writer io.Writer, workers []ProcessState) *tablewriter.Table
WorkerTable renders table with information about rr server workers.
Types ¶
type ProcessState ¶
type ProcessState struct { // Pid contains process id. Pid int `json:"pid"` // Status of the worker. Status string `json:"status"` // Number of worker executions. NumJobs uint64 `json:"numExecs"` // Created is unix nano timestamp of worker creation time. Created int64 `json:"created"` // MemoryUsage holds the information about worker memory usage in bytes. // Values might vary for different operating systems and based on RSS. MemoryUsage uint64 `json:"memoryUsage"` }
ProcessState provides information about specific worker.
func WorkerProcessState ¶
func WorkerProcessState(w worker.BaseProcess) (ProcessState, error)
WorkerProcessState creates new worker state definition.
Click to show internal directories.
Click to hide internal directories.