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
titlestringThe start string for the graph title. Defaults to ‘Open Defects by Severity’. It will get modified by other parameters.
developer
booldisplay results per developer.TODO: This feature has not been ported yet.
customerboolLimit results to customer bugs. This is defined as bugs with an SFDC external tracker.
totalsboolInclude totals in the output.
closedboolreport on closed bugs.
monthsintWhen displaying closed bugs set the number of months to show. defaults to 12.
fromdateWhen displaying closed bugs set the date to start searching from.
todateWhen displaying closed bugs set the date to stop searching from.
hide_emptyboolDo not show Agile teams that do not have any matching bugs. Defaults off.
productsstringa comma separated list of product names to restrict the results to.
deadline
stringA 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_severitiesboollist all severities. Defaults off, which only shows urgent and high severities.
- Returns
ABugzilla::Extension::PlotlyReports::Graphs::BugSeverityobject.