def __init__(self, grouped_snapshots, path_to_output_dir, options):
        PluginMultinode.__init__(
            self,
            "snapshots-multiple_nodes",
            "The stats for the snapshots and dlm activity for multiple nodes.",
            grouped_snapshots,
            "Snapshot Stats for Multiple Nodes",
            path_to_output_dir,
            options,
        )

        self.__start_time_for_hosts = {}
        self.__stop_time_for_hosts = {}
        self.__snapshot_count_for_hosts = {}
        self.__dlm_activity_for_hosts = {}
        self.__gs_glocks_total_lowest = {}
        self.__gs_glocks_total_highest = {}
 def __init__(self, grouped_snapshots, path_to_output_dir, options):
     PluginMultinode.__init__(self, "glocks_activity-multiple_nodes",
                              "The glock's lockdump analyzed for multiple holder and waiters from multiple nodes.",
                              grouped_snapshots, "Glocks Activity for Multiple Nodes", path_to_output_dir,
                              options)
     self.__mininum_waiter_count = int(self.get_option("mininum_waiter_count"))