1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-10 18:08:55 +00:00
gns3-server/docs/api/examples/controller_get_computescomputeid.txt
2018-06-07 10:26:06 +02:00

30 lines
632 B
Plaintext

curl -i -X GET 'http://localhost:3080/v2/computes/my_compute_id'
GET /v2/computes/my_compute_id HTTP/1.1
HTTP/1.1 200
Connection: close
Content-Length: 334
Content-Type: application/json
Date: Thu, 07 Jun 2018 08:13:46 GMT
Server: Python/3.6 GNS3/2.1.7dev1
X-Route: /v2/computes/{compute_id}
{
"capabilities": {
"node_types": [],
"version": null
},
"compute_id": "my_compute_id",
"connected": false,
"cpu_usage_percent": null,
"host": "localhost",
"memory_usage_percent": null,
"name": "http://julien@localhost:84",
"port": 84,
"protocol": "http",
"user": "julien"
}