Description of problem: Currently there are quite a slew of logs in Gluster that do not lend themselves to trivial analysis by various tools that help collect and monitor logs, due to the textual nature of the logs. This FEAT is to make this better by giving logs message IDs so that the tools do not have to do complex log parsing to break it down to problem areas and suggest troubleshooting options. With this patch, a new set of logging APIs are introduced that take additionally a message ID and an error number, so as to print the message ID and the descriptive string for the error. New APIs: - gf_msg, gf_msg_debug/trace, gf_msg_nomem, gf_msg_callingfn These APIs follow the functionality of the previous gf_log* counterparts, and hence are 1:1 replacements, with the delta that, gf_msg, gf_msg_callingfn take additional parameters as specified above. Defining the log messages: Each invocation of gf_msg/gf_msg_callingfn, should provide an ID and an errnum (if available). Towards this, a common message id file is provided, which contains defines to various messages and their respective strings. As other messages are changed to the new infrastructure APIs, it is intended that this file is edited to add these messages as well. Framework enhanced: The logging framework is also enhanced to be able to support different logging backends in the future. Hence new configuration options for logging framework and logging formats are introduced. Backward compatibility: Currently the framework supports logging in the traditional - gf_msg, gf_msg_debug/trace, gf_msg_nomem, gf_msg_callingfn These APIs follow the functionality of the previous gf_log* counterparts, and hence are 1:1 replacements, with the delta that, gf_msg, gf_msg_callingfn take additional parameters as specified above. Defining the log messages: Each invocation of gf_msg/gf_msg_callingfn, should provide an ID and an errnum (if available). Towards this, a common message id file is provided, which contains defines to various messages and their respective strings. As other messages are changed to the new infrastructure APIs, it is intended that this file is edited to add these messages as well. Framework enhanced: The logging framework is also enhanced to be able to support different logging backends in the future. Hence new configuration options for logging framework and logging formats are introduced. Backward compatibility: Currently the framework supports logging in the traditional format, with the inclusion of an error string based on the errnum passed in. Hence the shift to these new APIs would retain the log file names, locations, and format with the exception of an additional error string where applicable.
REVIEW: http://review.gluster.org/6547 (log: enhance gluster log format with message ID and standardize errno reporting) posted (#5) for review on master by Shyamsundar Ranganathan (sam.somari)
Feature page can be found here: http://www.gluster.org/community/documentation/index.php/Features/better-logging
REVIEW: http://review.gluster.org/6547 (log: enhance gluster log format with message ID and standardize errno reporting) posted (#6) for review on master by Shyamsundar Ranganathan (sam.somari)
COMMIT: http://review.gluster.org/6547 committed in master by Vijay Bellur (vbellur) ------ commit 31e34cfd72712c76c127509d14d50eb008743fd5 Author: ShyamsundarR <srangana> Date: Fri Dec 20 13:19:00 2013 +0530 log: enhance gluster log format with message ID and standardize errno reporting Currently there are quite a slew of logs in Gluster that do not lend themselves to trivial analysis by various tools that help collect and monitor logs, due to the textual nature of the logs. This FEAT is to make this better by giving logs message IDs so that the tools do not have to do complex log parsing to break it down to problem areas and suggest troubleshooting options. With this patch, a new set of logging APIs are introduced that take additionally a message ID and an error number, so as to print the message ID and the descriptive string for the error. New APIs: - gf_msg, gf_msg_debug/trace, gf_msg_nomem, gf_msg_callingfn These APIs follow the functionality of the previous gf_log* counterparts, and hence are 1:1 replacements, with the delta that, gf_msg, gf_msg_callingfn take additional parameters as specified above. Defining the log messages: Each invocation of gf_msg/gf_msg_callingfn, should provide an ID and an errnum (if available). Towards this, a common message id file is provided, which contains defines to various messages and their respective strings. As other messages are changed to the new infrastructure APIs, it is intended that this file is edited to add these messages as well. Framework enhanced: The logging framework is also enhanced to be able to support different logging backends in the future. Hence new configuration options for logging framework and logging formats are introduced. Backward compatibility: Currently the framework supports logging in the traditional format, with the inclusion of an error string based on the errnum passed in. Hence the shift to these new APIs would retain the log file names, locations, and format with the exception of an additional error string where applicable. Testing done: Tested the new APIs with different messages in normal code paths Tested with configurations set to gluster logs (syslog pending) Tested nomem variants, inducing the message in normal code paths Tested ident generation for normal code paths (other paths pending) Tested with sample gfapi program for gfapi messages Test code is stripped from the commit Pending work (not to be addressed in this patch (future)): - Logging framework should be configurable - Logging format should be configurable - Once all messages move to the new APIs deprecate/delete older APIs to prevent misuse/abuse using the same - Repeated log messages should be suppressed (as a configurable option) - Logging framework assumes that only one init is possible, but there is no protection around the same (in existing code) - gf_log_fini is not invoked anywhere and does very little cleanup (in existing code) - DOxygen comments to message id headers for each message Change-Id: Ia043fda99a1c6cf7817517ef9e279bfcf35dcc24 BUG: 1075611 Signed-off-by: ShyamsundarR <srangana> Reviewed-on: http://review.gluster.org/6547 Reviewed-by: Krutika Dhananjay <kdhananj> Tested-by: Gluster Build System <jenkins.com> Reviewed-by: Raghavendra G <rgowdapp> Reviewed-by: Pranith Kumar Karampuri <pkarampu> Reviewed-by: Vijay Bellur <vbellur>
REVIEW: http://review.gluster.org/7371 (log: Add missing log message from glusterfsd.c to glusterfsd-messages.h) posted (#1) for review on master by Krutika Dhananjay (kdhananj)
REVIEW: http://review.gluster.org/7372 (logging: Make logger and log format configurable through cli) posted (#1) for review on master by Krutika Dhananjay (kdhananj)
REVIEW: http://review.gluster.org/7372 (logging: Make logger and log format configurable through cli) posted (#2) for review on master by Krutika Dhananjay (kdhananj)
REVIEW: http://review.gluster.org/7371 (log: Add missing log message from glusterfsd.c to glusterfsd-messages.h) posted (#2) for review on master by Krutika Dhananjay (kdhananj)
REVIEW: http://review.gluster.org/7372 (logging: Make logger and log format configurable through cli) posted (#3) for review on master by Krutika Dhananjay (kdhananj)
REVIEW: http://review.gluster.org/7371 (log: Add missing log message from glusterfsd.c to glusterfsd-messages.h) posted (#3) for review on master by Krutika Dhananjay (kdhananj)
REVIEW: http://review.gluster.org/7372 (logging: Make logger and log format configurable through cli) posted (#4) for review on master by Krutika Dhananjay (kdhananj)
COMMIT: http://review.gluster.org/7371 committed in master by Vijay Bellur (vbellur) ------ commit d586ecc0a501440436a918ed973fd75facafc455 Author: Krutika Dhananjay <kdhananj> Date: Sun Mar 30 08:37:02 2014 +0530 log: Add missing log message from glusterfsd.c to glusterfsd-messages.h ... by retaining GLFS_NUM_MESSAGES as 33 which is its correct value. Also replace all occurrences of gf_log with gf_msg/gf_msg_debug. Change-Id: Ibfbe1d645de521e8d59ca406f78b1a8eb08aa7e0 BUG: 1075611 Signed-off-by: Krutika Dhananjay <kdhananj> Reviewed-on: http://review.gluster.org/7371 Tested-by: Gluster Build System <jenkins.com> Reviewed-by: Vijay Bellur <vbellur>
COMMIT: http://review.gluster.org/7372 committed in master by Vijay Bellur (vbellur) ------ commit 712541cdefcc9614e5a79f628358f205ceda6e55 Author: Krutika Dhananjay <kdhananj> Date: Tue Mar 11 15:05:44 2014 +0530 logging: Make logger and log format configurable through cli Change-Id: Ic4b701a6621578848ff67ae4ecb5a10b5f32f93b BUG: 1075611 Signed-off-by: Krutika Dhananjay <kdhananj> Reviewed-on: http://review.gluster.org/7372 Tested-by: Gluster Build System <jenkins.com> Reviewed-by: Krishnan Parthasarathi <kparthas> Reviewed-by: Vijay Bellur <vbellur>
REVIEW: http://review.gluster.org/7475 (logging: Introduce suppression of repetitive log messages) posted (#1) for review on master by Krutika Dhananjay (kdhananj)
REVIEW: http://review.gluster.org/7475 (logging: Introduce suppression of repetitive log messages) posted (#2) for review on master by Krutika Dhananjay (kdhananj)
REVIEW: http://review.gluster.org/7475 (logging: Introduce suppression of repetitive log messages) posted (#3) for review on master by Krutika Dhananjay (kdhananj)
REVIEW: http://review.gluster.org/7475 (logging: Introduce suppression of repetitive log messages) posted (#4) for review on master by Krutika Dhananjay (kdhananj)
REVIEW: http://review.gluster.org/7462 (glusterd: port network failure log messages to gf_msg API) posted (#4) for review on master by Krishnan Parthasarathi (kparthas)
REVIEW: http://review.gluster.org/7471 (glusterd : port glusterd messages to new logging framework) posted (#3) for review on master by Atin Mukherjee (amukherj)
REVIEW: http://review.gluster.org/7574 (QUTOA: port QUOTA messages to new logging framework) posted (#1) for review on master by susant palai (spalai)
REVIEW: http://review.gluster.org/7574 (QUTOA: port QUOTA messages to new logging framework) posted (#2) for review on master by susant palai (spalai)
REVIEW: http://review.gluster.org/7574 (QUTOA: port QUOTA messages to new logging framework) posted (#3) for review on master by susant palai (spalai)
REVIEW: http://review.gluster.org/7574 (QUTOA: port QUOTA messages to new logging framework) posted (#4) for review on master by susant palai (spalai)
REVIEW: http://review.gluster.org/7574 (QUTOA: port QUOTA messages to new logging framework) posted (#5) for review on master by susant palai (spalai)
REVIEW: http://review.gluster.org/7578 (glusterd: Port server quorum messages to the gf_msg API) posted (#1) for review on master by Kaushal M (kaushal)
REVIEW: http://review.gluster.org/7462 (glusterd: port network failure log messages to gf_msg API) posted (#5) for review on master by Krishnan Parthasarathi (kparthas)
REVIEW: http://review.gluster.org/7471 (glusterd : port glusterd messages to new logging framework) posted (#4) for review on master by Atin Mukherjee (amukherj)
REVIEW: http://review.gluster.org/7574 (QUTOA: port QUOTA messages to new logging framework) posted (#6) for review on master by susant palai (spalai)
REVIEW: http://review.gluster.org/7578 (glusterd: Port server quorum messages to the gf_msg API) posted (#2) for review on master by Kaushal M (kaushal)
REVIEW: http://review.gluster.org/7580 (logging: Fix msg-id segment allocation) posted (#1) for review on master by Krutika Dhananjay (kdhananj)
REVIEW: http://review.gluster.org/7578 (glusterd: Port server quorum messages to the gf_msg API) posted (#3) for review on master by Kaushal M (kaushal)
REVIEW: http://review.gluster.org/7574 (QUTOA: port QUOTA messages to new logging framework) posted (#7) for review on master by susant palai (spalai)
REVIEW: http://review.gluster.org/7574 (features/quota: port QUOTA messages to new logging framework) posted (#8) for review on master by susant palai (spalai)
REVIEW: http://review.gluster.org/7574 (features/quota: port QUOTA messages to new logging framework) posted (#9) for review on master by susant palai (spalai)
REVIEW: http://review.gluster.org/7580 (logging: Fix msg-id segment allocation) posted (#2) for review on master by Krutika Dhananjay (kdhananj)
REVIEW: http://review.gluster.org/7578 (glusterd: Port server quorum messages to the gf_msg API) posted (#4) for review on master by Kaushal M (kaushal)
COMMIT: http://review.gluster.org/7580 committed in master by Vijay Bellur (vbellur) ------ commit 9dd643dc68bfc22f7244706717d7dcb4ab090f06 Author: Krutika Dhananjay <kdhananj> Date: Mon Apr 28 10:59:04 2014 +0530 logging: Fix msg-id segment allocation Change-Id: I85efa4b91c263d7374d34dd0d84e9f1032d07ab6 BUG: 1075611 Signed-off-by: Krutika Dhananjay <kdhananj> Reviewed-on: http://review.gluster.org/7580 Reviewed-by: N Balachandran <nbalacha> Tested-by: Gluster Build System <jenkins.com> Reviewed-by: Vijay Bellur <vbellur>
REVIEW: http://review.gluster.org/7475 (logging: Introduce suppression of repetitive log messages) posted (#5) for review on master by Krutika Dhananjay (kdhananj)
COMMIT: http://review.gluster.org/7475 committed in master by Vijay Bellur (vbellur) ------ commit 630d46d714a233919664c035f2c5c48c028777e8 Author: Krutika Dhananjay <kdhananj> Date: Fri Feb 7 11:02:10 2014 +0530 logging: Introduce suppression of repetitive log messages Change-Id: I8efa08cc9832ad509fba65a88bb0cddbaf056404 BUG: 1075611 Signed-off-by: Krutika Dhananjay <kdhananj> Reviewed-on: http://review.gluster.org/7475 Tested-by: Gluster Build System <jenkins.com> Reviewed-by: Vijay Bellur <vbellur>
REVIEW: http://review.gluster.org/7578 (glusterd: Port server quorum messages to the gf_msg API) posted (#5) for review on master by Kaushal M (kaushal)
REVIEW: http://review.gluster.org/7578 (glusterd: Port server quorum messages to the gf_msg API) posted (#6) for review on master by Krishnan Parthasarathi (kparthas)
REVIEW: http://review.gluster.org/7644 (glusterd: port network failure log messages to gf_msg API) posted (#1) for review on master by Krishnan Parthasarathi (kparthas)
REVIEW: http://review.gluster.org/7578 (glusterd: Port server quorum messages to the gf_msg API) posted (#7) for review on master by Atin Mukherjee (amukherj)
REVIEW: http://review.gluster.org/7652 (Port glusterd sync log messages to gf_msg API) posted (#1) for review on master by Atin Mukherjee (amukherj)
REVIEW: http://review.gluster.org/7652 (Port glusterd sync log messages to gf_msg API) posted (#2) for review on master by Atin Mukherjee (amukherj)
REVIEW: http://review.gluster.org/7652 (glusterd : Port glusterd sync log messages to gf_msg API) posted (#3) for review on master by Atin Mukherjee (amukherj)
REVIEW: http://review.gluster.org/7578 (glusterd: Port server quorum messages to the gf_msg API) posted (#8) for review on master by Krishnan Parthasarathi (kparthas)
REVIEW: http://review.gluster.org/7462 (glusterd: port network failure log messages to gf_msg API) posted (#6) for review on master by Krishnan Parthasarathi (kparthas)
REVIEW: http://review.gluster.org/7578 (glusterd: Port server quorum messages to the gf_msg API) posted (#9) for review on master by Kaushal M (kaushal)
REVIEW: http://review.gluster.org/7681 (logging: Add extra logs to enable testing of log suppression) posted (#1) for review on master by Krutika Dhananjay (kdhananj)
REVIEW: http://review.gluster.org/7652 (glusterd : Port glusterd sync log messages to gf_msg API) posted (#4) for review on master by Kaushal M (kaushal)
REVIEW: http://review.gluster.org/7578 (glusterd: Port server quorum messages to the gf_msg API) posted (#10) for review on master by Kaushal M (kaushal)
REVIEW: http://review.gluster.org/7462 (glusterd: port network failure log messages to gf_msg API) posted (#7) for review on master by Kaushal M (kaushal)
COMMIT: http://review.gluster.org/7578 committed in master by Krishnan Parthasarathi (kparthas) ------ commit f9672386ac2e3da2dc5439eb0a3a53dfaa5181dd Author: Kaushal M <kaushal> Date: Mon Apr 28 13:17:22 2014 +0530 glusterd: Port server quorum messages to the gf_msg API Change-Id: I84716cc07f3cbd8c1b2825a5676d6693fed6fade BUG: 1075611 Signed-off-by: Kaushal M <kaushal> Reviewed-on: http://review.gluster.org/7578 Tested-by: Gluster Build System <jenkins.com> Reviewed-by: Krishnan Parthasarathi <kparthas> Tested-by: Krishnan Parthasarathi <kparthas>
COMMIT: http://review.gluster.org/7462 committed in master by Kaushal M (kaushal) ------ commit 451246a58dbbc1ec777f379a6b779be374379abd Author: Krishnan Parthasarathi <kparthas> Date: Fri May 2 15:09:25 2014 +0530 glusterd: port network failure log messages to gf_msg API Change-Id: I23df6d179e9d66a71721e9844a34c5b96586f90f BUG: 1075611 Signed-off-by: Krishnan Parthasarathi <kparthas> Reviewed-on: http://review.gluster.org/7462 Tested-by: Gluster Build System <jenkins.com> Reviewed-by: Kaushal M <kaushal>
COMMIT: http://review.gluster.org/7652 committed in master by Kaushal M (kaushal) ------ commit 199435aac3be170f6dadd4e88a576cec808ee419 Author: Atin Mukherjee <amukherj> Date: Sat May 3 12:52:44 2014 +0530 glusterd : Port glusterd sync log messages to gf_msg API Change-Id: Ic3ed2c96d8fc3a15fedaa80517a2c79c0c858963 BUG: 1075611 Signed-off-by: Atin Mukherjee <amukherj> Reviewed-on: http://review.gluster.org/7652 Tested-by: Gluster Build System <jenkins.com> Reviewed-by: Kaushal M <kaushal>
REVIEW: http://review.gluster.org/7727 (Cluster/DHT : Moving to new logging framework) posted (#1) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7727 (Cluster/DHT : Moving to new logging framework) posted (#2) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7727 (Cluster/DHT : Moving to new logging framework) posted (#3) for review on master by N Balachandran (nbalacha)
COMMIT: http://review.gluster.org/7681 committed in master by Vijay Bellur (vbellur) ------ commit 07e8f0226d5263501d2b23ed008c59ed45a5a5bd Author: Krutika Dhananjay <kdhananj> Date: Fri May 2 13:55:59 2014 +0530 logging: Add extra logs to enable testing of log suppression Note: This patch may be reverted once the testing effort is complete, if desired. Change-Id: I840399c531a43049749073d4d59bc0c85f525be3 BUG: 1075611 Signed-off-by: Krutika Dhananjay <kdhananj> Reviewed-on: http://review.gluster.org/7681 Reviewed-by: Raghavendra G <rgowdapp> Tested-by: Gluster Build System <jenkins.com> Reviewed-by: Vijay Bellur <vbellur>
REVIEW: http://review.gluster.org/7784 (cluster/afr: move messages to new logging framework) posted (#1) for review on master by Ravishankar N (ravishankar)
REVIEW: http://review.gluster.org/7784 (cluster/afr: move messages to new logging framework) posted (#2) for review on master by Ravishankar N (ravishankar)
REVIEW: http://review.gluster.org/7784 (cluster/afr: move messages to new logging framework) posted (#3) for review on master by Ravishankar N (ravishankar)
REVIEW: http://review.gluster.org/7784 (cluster/afr: move messages to new logging framework) posted (#4) for review on master by Ravishankar N (ravishankar)
COMMIT: http://review.gluster.org/7784 committed in master by Pranith Kumar Karampuri (pkarampu) ------ commit f4a391e5a44950b0468af082255b9f5abf52b10b Author: Ravishankar N <ravishankar> Date: Fri May 16 15:41:33 2014 +0530 cluster/afr: move messages to new logging framework Change important (from a diagnostics point of view) log messages to use the gf_msg() framework. Change-Id: I0a58184bbb78989db149e67f07c140a21c781bc2 BUG: 1075611 Signed-off-by: Ravishankar N <ravishankar> Reviewed-on: http://review.gluster.org/7784 Reviewed-by: Krutika Dhananjay <kdhananj> Tested-by: Gluster Build System <jenkins.com> Reviewed-by: Pranith Kumar Karampuri <pkarampu> Tested-by: Pranith Kumar Karampuri <pkarampu>
REVIEW: http://review.gluster.org/7727 (Cluster/DHT : Moving to new logging framework) posted (#4) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7840 (cluster/afr: Add descriptions to message-ids.) posted (#1) for review on master by Ravishankar N (ravishankar)
REVIEW: http://review.gluster.org/7727 (Cluster/DHT : Moving to new logging framework) posted (#5) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7727 (Cluster/DHT : Moving to new logging framework) posted (#6) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7727 (Cluster/DHT : Moving to new logging framework) posted (#7) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7867 (glusterd : glusterd message-id documentation) posted (#1) for review on master by Atin Mukherjee (amukherj)
REVIEW: http://review.gluster.org/7727 (Cluster/DHT : Moving to new logging framework) posted (#8) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7727 (Cluster/DHT : Moving to new logging framework) posted (#9) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7840 (cluster/afr: Add descriptions to message-ids.) posted (#3) for review on master by Ravishankar N (ravishankar)
REVIEW: http://review.gluster.org/7867 (glusterd : glusterd message-id comments to support extracting the msg-id description through doxygen) posted (#2) for review on master by Atin Mukherjee (amukherj)
REVIEW: http://review.gluster.org/7867 (glusterd : glusterd message-id comments to support extracting the msg-id description through doxygen) posted (#3) for review on master by Atin Mukherjee (amukherj)
REVIEW: http://review.gluster.org/7574 (features/quota: port QUOTA messages to new logging framework) posted (#10) for review on master by susant palai (spalai)
REVIEW: http://review.gluster.org/7929 (Cluster/DHT: New logging framework) posted (#1) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7929 (Cluster/DHT: New logging framework) posted (#2) for review on master by N Balachandran (nbalacha)
COMMIT: http://review.gluster.org/7840 committed in master by Pranith Kumar Karampuri (pkarampu) ------ commit 3230db8561ddfec2aa26fc106ec65b4a307b6db6 Author: Ravishankar N <ravishankar> Date: Thu May 22 10:25:47 2014 +0530 cluster/afr: Add descriptions to message-ids. Change-Id: I7ec2821c96d4cbff78b4959d9b07019896cc9a2c BUG: 1075611 Signed-off-by: Ravishankar N <ravishankar> Reviewed-on: http://review.gluster.org/7840 Reviewed-by: Raghavendra G <rgowdapp> Reviewed-by: N Balachandran <nbalacha> Tested-by: Gluster Build System <jenkins.com> Reviewed-by: Pranith Kumar Karampuri <pkarampu> Tested-by: Pranith Kumar Karampuri <pkarampu>
REVIEW: http://review.gluster.org/7867 (glusterd : glusterd message-id comments to support extracting the msg-id description through doxygen) posted (#4) for review on master by Atin Mukherjee (amukherj)
REVIEW: http://review.gluster.org/7867 (glusterd : glusterd message-id comments to support extracting the msg-id description through doxygen) posted (#5) for review on master by Atin Mukherjee (amukherj)
REVIEW: http://review.gluster.org/7574 (features/quota: port QUOTA messages to new logging framework) posted (#11) for review on master by susant palai (spalai)
REVIEW: http://review.gluster.org/7867 (glusterd : glusterd message-id comments to support extracting the msg-id description through doxygen) posted (#6) for review on master by Atin Mukherjee (amukherj)
REVIEW: http://review.gluster.org/7929 (Cluster/DHT: New logging framework) posted (#3) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7929 (Cluster/DHT: New logging framework) posted (#4) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7929 (Cluster/DHT: New logging framework) posted (#5) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7929 (Cluster/DHT: New logging framework) posted (#6) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7969 (Gluster Doxygen conf file for message ids: Added a doxygen conf file that will extract the documentation for the message ids defined for various components.) posted (#1) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7867 (glusterd : glusterd message-id comments to support extracting the msg-id description through doxygen) posted (#7) for review on master by Atin Mukherjee (amukherj)
REVIEW: http://review.gluster.org/7969 (Gluster msg-ids Doxygen conf file: Added a doxygen conf file that will extract the documentation for the message ids defined for various components.) posted (#2) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7987 (Gluster msg-ids Doxygen: Added a doxygen conf file that will extract the documentation for the message ids defined for various components.) posted (#1) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/8005 (features/quota: port QUOTA messages to new logging framework) posted (#1) for review on master by susant palai (spalai)
REVIEW: http://review.gluster.org/7574 (features/quota: port QUOTA messages to new logging framework) posted (#12) for review on master by susant palai (spalai)
REVIEW: http://review.gluster.org/7929 (Cluster/DHT: New logging framework) posted (#7) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7929 (Cluster/DHT: New logging framework) posted (#8) for review on master by N Balachandran (nbalacha)
COMMIT: http://review.gluster.org/7867 committed in master by Krishnan Parthasarathi (kparthas) ------ commit f95a0f99599c0e1825a36eb424b3fe386d6d6b23 Author: Atin Mukherjee <amukherj> Date: Mon May 26 12:12:36 2014 +0530 glusterd : glusterd message-id comments to support extracting the msg-id description through doxygen Change-Id: Ic9660519ae505b78e976e092e7ac80ae63b12a7f BUG: 1075611 Signed-off-by: Atin Mukherjee <amukherj> Reviewed-on: http://review.gluster.org/7867 Reviewed-by: Raghavendra G <rgowdapp> Reviewed-by: Pavithra Srinivasan <psriniva> Tested-by: Gluster Build System <jenkins.com> Reviewed-by: Krishnan Parthasarathi <kparthas> Tested-by: Krishnan Parthasarathi <kparthas>
REVIEW: http://review.gluster.org/7929 (Cluster/DHT: New logging framework) posted (#9) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7929 (Cluster/DHT: New logging framework) posted (#10) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7987 (Gluster msg-ids Doxygen: Added a doxygen conf file that will extract the documentation for the message ids defined for various components.) posted (#2) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7929 (Cluster/DHT: New logging framework) posted (#11) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7929 (Cluster/DHT: New logging framework) posted (#12) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7929 (Cluster/DHT: New logging framework) posted (#13) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/7929 (Cluster/DHT: New logging framework) posted (#14) for review on master by N Balachandran (nbalacha)
COMMIT: http://review.gluster.org/7929 committed in master by Vijay Bellur (vbellur) ------ commit 7382b66de76101d625ed888ec7b7f82fd7da56d3 Author: Nithya Balachandran <nbalacha> Date: Fri May 30 11:26:40 2014 +0530 Cluster/DHT: New logging framework Moved all relevant DHT gf_log calls to the new logging framework. Change-Id: I3af3cfe0416e332774a6c4ff6a091d006c400af2 BUG: 1075611 Signed-off-by: Nithya Balachandran <nbalacha> Reviewed-on: http://review.gluster.org/7929 Tested-by: Gluster Build System <jenkins.com> Reviewed-by: Vijay Bellur <vbellur>
REVIEW: http://review.gluster.org/8096 (Cluster/DHT : Logging changes) posted (#1) for review on master by N Balachandran (nbalacha)
REVIEW: http://review.gluster.org/8096 (Cluster/DHT : Logging changes) posted (#2) for review on master by N Balachandran (nbalacha)
COMMIT: http://review.gluster.org/8096 committed in master by Vijay Bellur (vbellur) ------ commit f844e5019de872e0c138daa6257d1f6cac5a4aff Author: Nithya Balachandran <nbalacha> Date: Wed Jun 18 11:06:21 2014 +0530 Cluster/DHT : Logging changes Removed trailing spaces from the code Change-Id: I427c9a01b514824f903e301863c2c29071db6483 BUG: 1075611 Signed-off-by: Nithya Balachandran <nbalacha> Reviewed-on: http://review.gluster.org/8096 Tested-by: Gluster Build System <jenkins.com> Reviewed-by: Vijay Bellur <vbellur>
REVIEW: http://review.gluster.org/8149 (cluster/afr: change message description in afr-messages.h) posted (#1) for review on master by Ravishankar N (ravishankar)
REVIEW: http://review.gluster.org/8149 (cluster/afr: change message description in afr-messages.h) posted (#2) for review on master by Ravishankar N (ravishankar)
COMMIT: http://review.gluster.org/8149 committed in master by Pranith Kumar Karampuri (pkarampu) ------ commit 10c04c617276dbd9af7ae04ae287fe6f75e2f2ae Author: Ravishankar N <ravishankar> Date: Mon Jun 23 12:36:17 2014 +0530 cluster/afr: change message description in afr-messages.h Changed the description of AFR_MSG_SUBVOL_UP to make it more meaningful. Change-Id: I30fa13c2e9a280a22d48e777d259d04a3b71deef BUG: 1075611 Signed-off-by: Ravishankar N <ravishankar> Reviewed-on: http://review.gluster.org/8149 Reviewed-by: Krutika Dhananjay <kdhananj> Tested-by: Gluster Build System <jenkins.com> Reviewed-by: Pranith Kumar Karampuri <pkarampu> Tested-by: Pranith Kumar Karampuri <pkarampu>
REVIEW: http://review.gluster.org/7574 (features/quota: port QUOTA messages to new logging framework) posted (#13) for review on master by susant palai (spalai)
This bug is getting closed because a release has been made available that should address the reported issue. In case the problem is still not fixed with glusterfs-3.6.1, please reopen this bug report. glusterfs-3.6.1 has been announced [1], packages for several distributions should become available in the near future. Keep an eye on the Gluster Users mailinglist [2] and the update infrastructure for your distribution. [1] http://supercolony.gluster.org/pipermail/gluster-users/2014-November/019410.html [2] http://supercolony.gluster.org/mailman/listinfo/gluster-users
REVIEW: http://review.gluster.org/7574 (features/quota: port QUOTA messages to new logging framework) posted (#14) for review on master by Susant Palai (spalai)
REVIEW: http://review.gluster.org/7574 (features/quota: port QUOTA messages to new logging framework) posted (#15) for review on master by Susant Palai (spalai)
REVIEW: http://review.gluster.org/7574 (features/quota: port QUOTA messages to new logging framework) posted (#16) for review on master by Niels de Vos (ndevos)
REVIEW: http://review.gluster.org/7574 (features/quota: port QUOTA messages to new logging framework) posted (#17) for review on master by Susant Palai (spalai)
REVIEW: http://review.gluster.org/7574 (features/quota: port QUOTA messages to new logging framework) posted (#18) for review on master by Susant Palai (spalai)
COMMIT: http://review.gluster.org/7574 committed in master by Raghavendra G (rgowdapp) ------ commit 8720cef1ed642d7cb09e98c41458d19845f24711 Author: Susant Palai <spalai> Date: Mon May 25 16:52:10 2015 +0530 features/quota: port QUOTA messages to new logging framework Change-Id: I5e3df8860ea35bce14a802391be9b22ad64f1ad4 BUG: 1075611 Signed-off-by: Susant Palai <spalai> Reviewed-on: http://review.gluster.org/7574 Tested-by: Gluster Build System <jenkins.com> Tested-by: NetBSD Build System <jenkins.org> Reviewed-by: Raghavendra G <rgowdapp> Tested-by: Raghavendra G <rgowdapp>