The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

analizo-metrics - analizo's metric reporting tool

USAGE

  analizo metrics [OPTIONS] [<input>]

DESCRIPTION

analizo metrics analyzes source code in input and produces a metrics report. If input is omitted, the current directory (.) is assumed.

The produced report is written to the standard output, or to a file using the --output option, using the YAML format (see http://www.yaml.org/)

analizo metrics is part of the analizo suite.

OPTIONS

<input>

Tells analizo which source code directory you want to parse.

--extractor <extractor>

Define which extractor method use to analise source code. Default is Doxyparse.

When using the Doxyparse extractor (default), all files matching the languages supported by doxyparse are processed, unless --language is used.

--list, -l

Displays metric list.

--output <file>, -o <file>

Writes the output to <file> instead of standard output.

--globalonly, --global-only, -g

Don't output the details about modules: only output global (project-wide) metrics.

--language <lang>

Process only filenames matching known extensions for the <lang> programming language. To see which languages are supported, pass --language list.

--exclude <dirs>, -x <dirs>

Exclude <dirs> (a colon-separated list of directories) from the analysis. This is useful, for example, when you want to focus on production code and exclude test code from the analysis. You could do that by passing something like pass --exclude test.

OUTPUT FORMAT

The output is a stream of YAML documents. The first one presents metrics for the project as a whole. The subsequent ones present per-module metrics, and thus there will be as many of them as there are modules in your project.

COPYRIGHT AND AUTHORS

See analizo(1).