Get Unlimited Proxy Server Monitor

Basic Information

Interface Description: Get Thordata Unlimited Proxy Server monitor, including memory, CPU, TCP connection count, and bandwidth.

Interface URL: https://api.thordata.com/api/unlimited/server-monitor

Request Method: GET

Request parameters

Header:

Parameter name
Type
Required
Describe

token

string

Yes

Please log in to the Dashboard-MENU-My Account to view your token parameter value

key

string

Yes

Please log in to the Dashboard-MENU-My Account to view your key parameter value

Body:

Parameter name
Type
Required
Describe

ins_id

string

Yes

Server ID

start_time

number

Yes

Start timestamp (in seconds)

end_time

number

Yes

End timestamp (in seconds)

period

number

No

60 , 300 , 3600 , 86400

Monitoring statistics cycle

Default value: 300 Unit: seconds

Response example

{
    "code": 200,
    "data": {
        "CpuUsage": {
            "times": [
                1747843200,
                1747929600
            ],
            "values": [
                3.1,
                2.8
            ]
        },
        "MemUsage": {
            "times": [
                1747843200,
                1747929600
            ],
            "values": [
                11.566,
                10.422
            ]
        },
        "TcpCurrEstab": {
            "times": [
                1747843200,
                1747929600
            ],
            "values": [
                14,
                14
            ]
        },
        "WanIntraffic": {
            "times": [
                1747843200,
                1747929600
            ],
            "values": [
                5.557,
                5.877
            ]
        },
        "WanOuttraffic": {
            "times": [
                1747843200,
                1747929600
            ],
            "values": [
                0.167,
                0.784
            ]
        }
    },
    "msg": "ok"
}

If the returned code value is not 200, please check the error code description list and modify it.

Parameter name
Type
Required
Describe

code

number

No

-

data

object

No

-

CpuUsage

array

Yes

Maximum real-time CPU usage percentage during machine operation time: timestamp value: CPU usage (%)

MemUsage

array

User Actual Memory Usage Rate time: timestamp value: Memory Usage (%)

TcpCurrEstab

array

Yes

TCP Connection Count time: timestamp value: Connection Count

WanIntraffic

array

Yes

Inbound Bandwidth time: timestamp value: Bandwidth (Mbps)

WanOuttraffic

array

Yes

Outbound Bandwidth time: timestamp value: Bandwidth (Mbps)

msg

string

No

-

Last updated