5.7.177. Bugzilla::Extension::PlotlyReports::Graphs::BugSeverity

5.7.177.1. Name

Bugzilla::Extension::PlotlyReports::Graphs::BugSeverity

5.7.177.2. Description

This module generates reports of the current open defects for a product or products based on bug severity and grouped by the Agile team on the bug.

5.7.177.3. METHODS

new

  • Description

Creates an object to generate a graph with.

my %opt = (totals => 1, hide_empty => 0);
my $gf  =
  Bugzilla::Extension::PlotlyReports::Graphs::BugSeverity->new({%opt});

$gt->run();
$gt->generate();
  • Params
  • title
string The start string for the graph title. Defaults to ‘Open Defects by Severity’. It will get modified by other parameters.
  • developer

bool display results per developer.

TODO: This feature has not been ported yet.

  • customer
bool Limit results to customer bugs. This is defined as bugs with an SFDC external tracker.
  • totals
bool Include totals in the output.
  • closed
bool report on closed bugs.
  • months
int When displaying closed bugs set the number of months to show. defaults to 12.
  • from
date When displaying closed bugs set the date to start searching from.
  • to
date When displaying closed bugs set the date to stop searching from.
  • hide_empty
bool Do not show Agile teams that do not have any matching bugs. Defaults off.
  • products
string a comma separated list of product names to restrict the results to.
  • deadline

string A date math string to compare to the deadline field.

e.g. “2weeks” will limit the results to bugs that have a deadline less than 2 weeks from now.

  • all_severities
bool list all severities. Defaults off, which only shows urgent and high severities.
  • Returns
A Bugzilla::Extension::PlotlyReports::Graphs::BugSeverity object.

run

  • Description
Run the queries to gather the bug data.
  • Params
None.
  • Returns
Nothing.

generate

  • Description
Process the bug data and generate the results.
  • Params
None.
  • Returns
Nothing.

This documentation undoubtedly has bugs; if you find some, please file them here.