diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-06-21 15:11:52 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-06-21 15:12:39 +0200 |
commit | 6a65b72114809448330673c932d420739db55782 (patch) | |
tree | d1da12a70cb0ea508bbe06c315247c88503a8188 /src/rest.c | |
parent | 6cbe69e89e716f81a71f7541e2e0f036b297a2fc (diff) |
rest: add timestamp to shell/output
Provide a timestamp that tells when the command output from client was received.
Diffstat (limited to 'src/rest.c')
-rw-r--r-- | src/rest.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -813,6 +813,7 @@ static int og_cmd_run_get(json_t *element, struct og_msg_params *params, } json_object_set_new(object, "output", output); json_object_set_new(object, "retcode", json_integer(cli->shell.retcode)); + json_object_set_new(object, "tstamp", json_integer(cli->shell.tstamp)); json_array_append_new(array, object); } |