System Info Endpoint
fsBroker System Info Endpoint
This API endpoint allows retrieval of basic system stats, such as the version, name, queue size, disc usage and memory footprint.
Syntax
GET https://<ip>:<port>/system-info
Parameters
Name | Type | Required? | Description |
---|---|---|---|
serect | String | Y | Authentication secret |
appServers | Boolean | N | Indicates, whether or not a subset of the /system-info response of fsTransform application servers should be returned |
appServersLimit | Integer | N | Indicates, if the number of application server /system-info responses should be limited in total |
Example Response
{
"versionInfo":
{
"name": "fsBroker",
"version": "1.0.0",
"copyright": "Copyright 2020 Jan Miller, All Rights Reserved,www.filescan.io"
},
"queueInfo":
{
"queueCount": 0
},
"memoryStats":
{
"usedMemory": 21,
"freeMemory": 538,
"totalMemory": 560,
"maxMemory": 14492
},
"freeDiscSpaceInMb":
{
"Samples": 1833809,
"fsBrokerQueue": 1833809,
"fsBrokerResults": 1833809,
"fsTemp": 79668
}
}
fsTransform System Info Endpoint
This API endpoint allows retrieval of basic system stats, such as the version, name, queue size, disc usage and memory footprint.
Syntax
GET https://<ip>:<port>/system-info
Parameters
Name | Type | Required? | Description |
---|---|---|---|
serect | String | Y | Authentication secret |
Example Response
{
"versionInfo":
{
"name": "fsTransform",
"version": "1.0.0",
"copyright": "Copyright 2020 Jan Miller, All Rights Reserved, www.filescan.io"
},
"queueInfo":
{
"activeCount": 0,
"queueCount": 0,
"completedCount": 0
},
"memoryStats":
{
"usedMemory": 556,
"freeMemory": 1103,
"totalMemory": 1660,
"maxMemory": 3641
},
"freeDiscSpaceInMb":
{
"fsResources": 26970,
"fsResults": 67967,
"fsTasks": 26970
},
"activeThreads": 5,
"systemEvents":
{},
"counters":
{},
"comments":
[]
}
Was this page helpful?