O2-DQ User Interface 1.0.0
Loading...
Searching...
No Matches
monitoring Namespace Reference

Functions

def dispArgs (dict configuredCommands)
 

Function Documentation

◆ dispArgs()

def dispArgs ( dict  configuredCommands)
Display all configured commands you provided in CLI

Args:
    configuredCommands (dict): configured commands in CLI

Definition at line 23 of file monitoring.py.

23def dispArgs(configuredCommands: dict):
24 """Display all configured commands you provided in CLI
25
26 Args:
27 configuredCommands (dict): configured commands in CLI
28 """
29 logging.info("Args provided configurations List")
30 print("====================================================================================================================")
31 for key, value in configuredCommands.items():
32 if value is not None:
33 if isinstance(value, list):
34 listToString(value)
35 logging.info("--%s : %s ", key, value)
36 print("====================================================================================================================")