1234567891011121314151617181920212223242526272829303132 |
- Usage: metrixpp.py export [options] -- [path 1] ... [path N]
- Options:
- -h, --help show this help message and exit
- --general.log-level=GENERAL.LOG_LEVEL
- Defines log level. Possible values are
- 'DEBUG','INFO','WARNING' or 'ERROR'. Default value is
- inherited from environment variable
- 'METRIXPLUSPLUS_LOG_LEVEL' if set. [default: INFO]
- --general.db-file=GENERAL.DB_FILE
- Primary database file to write (by the collector) and
- post-process (by other tools) [default: ./metrixpp.db]
- --general.db-file-prev=GENERAL.DB_FILE_PREV
- Database file with data collected for the
- past/previous revision. If it is set for the collector
- tool to perform an incremental/iterative collection,
- it may reduce the processing time significantly. Post-
- processing tools use it in order to recognise/evaluate
- change trends. [default: none].
- --general.format=GENERAL.FORMAT
- Format of the output data. Possible values are 'xml',
- 'txt' or 'python' [default: xml]
- --general.namespaces=GENERAL.NAMESPACES
- Allows to enumerate namespaces of interest. If not
- defined all namespaces available in database file will
- be processed. Separate several namespaces by comma,
- for example 'general,std.code.complexity' [default:
- none]
- --general.nest-regions
- If the option is set (True), data for regions is
- exported in the form of a tree. Otherwise, all regions
- are exported in plain list. [default: False]
|