diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-05-10 17:18:15 +0200 |
---|---|---|
committer | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-05-18 16:50:14 +0200 |
commit | df5161ebc351df35504bd6366526a544ff6a96da (patch) | |
tree | 4ced41a36a5219a32dc41459258be9852a4f9094 /tests/units/test_0019_post_run_schedule.py | |
parent | f03425e6aeb95fe25253ed541565378c78b6eea1 (diff) |
#915 Add last_cmd to GET /clients API
"last_cmd" json object contains information of the last command executed
by the correspondent client. For now, it only includes "result" string
property, which stores "success" if the last command finished correctly
or "failure" on the contrary.
To populate "result" property, this commit also adds "last_cmd_result"
enum attribute to og_client struct. Client response processing fills
this attribute according to its success.
Clients in WOL_SENT state always have last_cmd->result = "unknown".
Request: GET /clients
Response: 200 OK
{
"clients": [
{
"addr": "10.141.10.102",
"state": "WOL_SENT",
"last_cmd": {
"result": "unknown"
}
},
{
"addr": "10.141.10.101",
"state": "OPG",
"speed": 1000,
"last_cmd": {
"result": "success"
}
},
{
"addr": "10.141.10.100",
"state": "OPG",
"speed": 1000,
"last_cmd": {
"result": "failure"
}
}
]
}
Diffstat (limited to 'tests/units/test_0019_post_run_schedule.py')
0 files changed, 0 insertions, 0 deletions