From e9573be8fda72092338074687ef71c9b5086b6c8 Mon Sep 17 00:00:00 2001 From: Kotresh HR Date: Wed, 17 Aug 2016 19:52:29 +0530 Subject: eventsapi: Bitrot events Following Bitrot Events are added BITROT_ENABLE/BITROT_DISABLE { "nodeid": NODEID, "ts": TIMESTAMP, "event": EVENT_TYPE, "message": { "name": VOLUME_NAME, } } BITROT_SCRUB_THROTTLE/BITROT_SCRUB_FREQ/BITROT_SCRUB { "nodeid": NODEID, "ts": TIMESTAMP, "event": EVENT_TYPE, "message": { "name": VOLUME_NAME, "value": OPTION_VALUE } } EVENT_BITROT_BAD_FILE { "nodeid": NODEID, "ts": TIMESTAMP, "event": EVENT_TYPE, "message": { "gfid": GFID_OF_FILE, "brick": BRICK_ROOT, "path": FILE_PATH_FROM_BRICK_ROOT (if available) } } Change-Id: I8c37b0e9db9f4f0f3d05d8f78b5521c7db0e2237 BUG: 1367815 Signed-off-by: Kotresh HR Reviewed-on: http://review.gluster.org/15190 Smoke: Gluster Build System NetBSD-regression: NetBSD Build System Reviewed-by: Atin Mukherjee CentOS-regression: Gluster Build System Reviewed-by: Aravinda VK --- cli/src/cli-cmd-volume.c | 64 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) (limited to 'cli') diff --git a/cli/src/cli-cmd-volume.c b/cli/src/cli-cmd-volume.c index b7f95f3ae7b..c357ffe3130 100644 --- a/cli/src/cli-cmd-volume.c +++ b/cli/src/cli-cmd-volume.c @@ -1516,6 +1516,13 @@ cli_cmd_bitrot_cbk (struct cli_state *state, struct cli_cmd_word *word, cli_local_t *local = NULL; rpc_clnt_procedure_t *proc = NULL; int sent = 0; +#if (USE_EVENTS) + int cmd_type = -1; + int ret1 = -1; + int event_type = -1; + char *tmp = NULL; + char *events_str = NULL; +#endif ret = cli_cmd_bitrot_parse (words, wordcount, &options); if (ret < 0) { @@ -1551,6 +1558,63 @@ out: } +#if (USE_EVENTS) + if (ret == 0) { + ret1 = dict_get_int32 (options, "type", &cmd_type); + if (ret1) + cmd_type = -1; + else { + ret1 = dict_get_str (options, "volname", &tmp); + if (ret1) + tmp = ""; + gf_asprintf (&events_str, "name=%s", tmp); + } + + switch (cmd_type) { + case GF_BITROT_OPTION_TYPE_ENABLE: + event_type = EVENT_BITROT_ENABLE; + break; + case GF_BITROT_OPTION_TYPE_DISABLE: + event_type = EVENT_BITROT_DISABLE; + break; + case GF_BITROT_OPTION_TYPE_SCRUB_THROTTLE: + event_type = EVENT_BITROT_SCRUB_THROTTLE; + ret1 = dict_get_str (options, "scrub-throttle-value", + &tmp); + if (ret1) + tmp = ""; + gf_asprintf (&events_str, "%s;value=%s", events_str, + tmp); + break; + case GF_BITROT_OPTION_TYPE_SCRUB_FREQ: + event_type = EVENT_BITROT_SCRUB_FREQ; + ret1 = dict_get_str (options, "scrub-frequency-value", + &tmp); + if (ret1) + tmp = ""; + gf_asprintf (&events_str, "%s;value=%s", events_str, + tmp); + break; + case GF_BITROT_OPTION_TYPE_SCRUB: + event_type = EVENT_BITROT_SCRUB_OPTION; + ret1 = dict_get_str (options, "scrub-value", &tmp); + if (ret1) + tmp = ""; + gf_asprintf (&events_str, "%s;value=%s", events_str, + tmp); + break; + default: + break; + } + + if (event_type > -1) + gf_event (event_type, "%s", events_str); + + if (events_str) + GF_FREE (events_str); + } +#endif + CLI_STACK_DESTROY (frame); return ret; -- cgit