[−][src]Crate monitor_service
Service for monitoring KubOS Linux processes, memory, and CPU usage
GraphQL Schema
schema {
    query: Query
}
type Query {
    ping: String!
    memInfo: MemInfo!
    ps(pids: [Int!] = null): [ProcInfo!]!
}
type MemInfo {
    total: Int
    free: Int
    available: Int
    lowFree: Int
}
type ProcInfo {
    pid: Int!
    uid: Int
    gid: Int
    usr: String
    grp: String
    state: String
    ppid: Int
    mem: Int
    rss: Int
    threads: Int
    cmd: String
}
Macros
| root_path | Generates a path from parts starting at  |