Skip to content
Matthew Martin edited this page Sep 28, 2020 · 4 revisions

/x-epi/info

GET

Returns system information about the machine

HTTP Status Code: 200

Body: application/json

{
    "application":
    {
        "date": string - current date and time in ISO format,
        "start_time": string - the date and time the episerver was started,
        "up_time": integer - the uptime of the episerver in seconds,
        "version": string - the version of the episerver 
    },
    "cpu":
    {
        "cpu": integer - the overall cpu percentage usage,
        "cpu0": integer - the cpu 0 percentage usage,
        "cpu1": integer - the cpu 1 percentage usage,
        "cpu2": integer - the cpu 2 percentage usage,
        "cpu3": integer - the cpu 3 percentage usage
    },
    "disk":
    {
        "bytes":
        {
            "available": integer - space available on the disk for the server in bytes,
            "free": integer - space available on the disk in bytes,
            "total": integer - total size of the disk in bytes,
        },
        "inodes":
        {
            "available": integer - number of inodes available on the disk for the server,
            "free": integer - number of inodes available on the disk,
            "total": integer - total number of inodes available on the disk,
        }
    },
    "process":
    {
        "vm": double - the total amount of memory episerver is using,
        "rs": integer - the resident set. The amount of memory in RAM episerver is using
    },
    "system":
    {
        "high":
        {
            "free": integer - free high memory in bytes,
            "total": integer - total high memory in bytes
        },
        "loads":
        {
            "1": double - 1 minute load average,
            "5": double - 5 minute load average,
            "15" double - 15 minute load average
        },
        "procs": integer - number of processes running,
        "ram":
        {
            "buffered": integer - memory used by buffers in bytes,
            "free": integer - free memory in bytes,
            "shared": integer - amount of shared memory in bytes,
            "total": integer - total amount of memory in bytes
        },
        "swap":
        {
            "free": integer - swap size space still available in bytes,
            "total": integer - total swap size space in bytes
        },
        "uptime": integer - uptime of computer in seconds
    }
    "temperature" :
    {
        "cpu": double - the temperature of the cpu in degrees C
    }
}
Clone this wiki locally