Updates for ceph module regarding info gathering

   Related-PROD: PROD-36845

Change-Id: I1903af0c3ff8bc9c7d047c06917fc5bffa733224
diff --git a/cfg_checker/modules/ceph/__init__.py b/cfg_checker/modules/ceph/__init__.py
index 29b9a29..e2f0049 100644
--- a/cfg_checker/modules/ceph/__init__.py
+++ b/cfg_checker/modules/ceph/__init__.py
@@ -1,5 +1,7 @@
 #    Author: Alex Savatieiev (osavatieiev@mirantis.com; a.savex@gmail.com)
 #    Copyright 2019-2022 Mirantis, Inc.
+from datetime import datetime
+
 from cfg_checker.agent.fio_runner import get_fio_options
 from cfg_checker.agent.fio_runner import seq_modes, mix_modes
 from cfg_checker.common import logger_cli
@@ -7,6 +9,7 @@
 from cfg_checker.helpers import args_utils
 from cfg_checker.modules.ceph import info, bench
 
+
 command_help = "Ceph Storage information and benchmarks"
 supported_envs = [ENV_TYPE_KUBE]
 
@@ -54,17 +57,18 @@
     )
 
     ceph_info_parser.add_argument(
-        '--tgz',
-        metavar='ceph_tgz_filename',
-        help="TGZ archive filename to save gathered data"
+        '--client-name',
+        metavar='client_name',
+        help="Client name for archive naming"
     )
 
-    ceph_report_parser = ceph_subparsers.add_parser(
-        'report',
-        help="Generate Ceph Info report"
+    ceph_info_parser.add_argument(
+        '--project-name',
+        metavar='projectname',
+        help="Project name for archive naming"
     )
 
-    ceph_report_parser.add_argument(
+    ceph_info_parser.add_argument(
         '--html',
         metavar='ceph_html_filename',
         help="HTML filename to save report"
@@ -179,11 +183,22 @@
     # Ceph info
     # Gather ceph info and create an archive with data
     args_utils.check_supported_env(ENV_TYPE_KUBE, args, config)
-    # check tgz
-    _tgzfile = "ceph_info_archive.tgz" if not args.tgz else args.tgz
 
+    # check client and project names
+    if not args.client_name or not args.project_name:
+        logger_cli.error(
+            "ERROR: Missing '--client-name' or '--project-name' options"
+        )
+        return
     # _class = _selectClass(_env)
     ceph_info = info.KubeCephInfo(config)
+    _tgzfilename = ceph_info.get_info_archive_filename(
+        args.client_name,
+        args.project_name
+    )
+    logger_cli.info("# Archive will be generated to '{}'".format(_tgzfilename))
+    # get html
+    _htmlfilename = args_utils.get_arg(args, 'html')
 
     logger_cli.info("# Collecting Ceph cluster information")
     ceph_info.gather_info()
@@ -195,30 +210,13 @@
     # ceph_info.load_info()
     # end debug
 
-    ceph_info.generate_archive(_tgzfile)
-    ceph_info.print_summary()
-
-    return
-
-
-def do_report(args, config):
-    # Ceph Report
-    # Gather ceph info and create HTML report with all of the data
-    args_utils.check_supported_env(ENV_TYPE_KUBE, args, config)
-    _filename = args_utils.get_arg(args, 'html')
-    logger_cli.info("# Ceph cluster Configuration report")
-
-    # _class = _selectClass(_env)
-    ceph_info = info.KubeCephInfo(config)
-    # Debug, enable if needed to debug report generation
-    # without actuall data collecting each time
-    # ceph_info.load_info()
-    # end debug
-    ceph_info.gather_info()
-    ceph_info.gather_osd_configs()
     ceph_info.get_transposed_latency_table()
     ceph_info.get_latest_health_readout()
-    ceph_info.create_html_report(_filename)
+    ceph_info.create_html_report(_htmlfilename)
+
+    # handle cli part
+    ceph_info.generate_archive(_tgzfilename)
+    ceph_info.print_summary()
 
     return