[Cluster-devel] [PATCH] gfs2_lockcapture: Fix condition where dlm lockspaces parsing failed

2015-09-11 Thread sbradley
From: Shane Bradley The output of `dlm_tool ls` was not parsed correctly on dlm_tool version 3.0 or higher. The patch now parses correctly `dlm_tool ls` output from version 2.0 or higher. Signed-off-by: Shane Bradley --- gfs2/scripts/gfs2_lockcapture | 35 ++-

[Cluster-devel] [PATCH] gfs2_lockcapture: Fixed rhbz#987019 and modified some options

2013-08-20 Thread sbradley
From: Shane Bradley Fix the header to use absolute path for rhbz#987019. The "-o" has been modified so that it takes a path that will be used to create the root directory of where the data will be written and will be location of the tarball that is created. Added undocumented(private) "-m" option

[Cluster-devel] [PATCH] gfs2_lockcapture: Fixed rhbz#987019, modified option -o, added private option -R, removed lsof data capture.

2013-08-19 Thread sbradley
From: Shane Bradley Fix the header to use absolute path for rhbz#987019. The "-o" has been modified so that it takes a path that will be used to create the root directory of where the data will be written and will be location of the tarball that is created. Added undocumented(private) "-R" option

[Cluster-devel] [PATCH] gfs2_lockcapture: Added option to disable process data gathering, added gathering of dlm_tool lockdebug, df, lsof, DLM hash table sizes.

2013-06-05 Thread sbradley
From: Shane Bradley The script no longer requires GFS2 mounts to capture data which allows the capturing of dlm data without having a GFS2 mount. Added -P option so that process gathering can be disabled. The following commands will have their output saved: dlm_tool lockdebug, df

[Cluster-devel] [PATCH] gfs2_lockcapture: Capture the status of the cluster nodes and find the clusternode name and id.

2013-01-31 Thread sbradley
From: Shane Bradley The status of the cluster will be captured and written to the file with respect to version: cman_tool nodes, corosync-quorumtool -l. Added two new configuration variables to the hostinformation.txt for the clusternode name and id. Signed-off-by: Shane Bradley --- gfs2/scrip

[Cluster-devel] [PATCH] gfs2_lockcapture: The script now returns a correct exit code when the script exits.

2012-12-20 Thread sbradley
From: Shane Bradley If there was files(not directories) created then the script will exit with 0, else 1 since there was no lockdump files captured on any run of capturing the data. Updated examples in man page. Change the default output path so that the node name is not in the path. In addition

[Cluster-devel] [PATCH] gfs2_trace: Added a script called gfs2_trace for kernel tracing debugging.

2012-12-19 Thread sbradley
From: Shane Bradley The script gfs2_trace is a tool used for debugging kernel tracing events. The script can enabled or disable all or selected GFS2 kernel tracing events. The script can capture the trace events and write them to a specific file which will be tarred up after the file is written.

[Cluster-devel] [PATCH] gfs2-lockcapture: Modified some of the data gathered

2012-12-13 Thread sbradley
From: sbradley Changed some var names in host data collected, added /proc// to files collected, and added man page. Signed-off-by: shane bradley --- gfs2/lockcapture/gfs2_lockcapture | 465 +- gfs2/man/Makefile.am | 3 +- gfs2/man

[Cluster-devel] [PATCH] gfs2-utils: Added a new script called gfs2_lockcapture to gfs2-utils that will capture lockdump data(including dlm lock) for the mounted GFS2 filesystems on a cluster node. The

2012-11-09 Thread sbradley
From: root Signed-off-by: root --- gfs2/lockgather/Makefile.am |2 +- gfs2/lockgather/gfs2_lockcapture | 1078 ++ 2 files changed, 1079 insertions(+), 1 deletions(-) create mode 100644 gfs2/lockgather/gfs2_lockcapture diff --git a/gfs2/lockgather/M