Aggregated Defect Severity Distribution
ℹCombined severity breakdown of all defects across all instances. Severity levels: High (critical issues), Medium (moderate concerns), Low (minor issues), Unspecified (not yet classified).
📋 Aggregated Triage Progress
ℹTriage status of all defects across instances. Shows how many defects have been reviewed and classified versus those still awaiting triage.
Total Outstanding
ℹTotal number of defects that are still open/outstanding across all instances.
{{ triage_summary.total_defects }}
Across all instances
Classified
ℹDefects that have been reviewed and assigned a triage classification (Bug, False Positive, Intentional, etc.).
{{ triage_summary.classified_count }}
Unclassified
ℹDefects that have not yet been triaged or classified. These require developer review.
{{ triage_summary.unclassified_count }}
Triage Completion
ℹPercentage of defects that have been triaged. Formula: (Classified / Total Outstanding) × 100%
{{ (triage_summary.triage_completion_percentage|round(1)) if triage_summary.triage_completion_percentage else '0' }}%
Bugs Confirmed
{{ triage_summary.bug_count }}
False Positives
{{ triage_summary.false_positive_count }}
Intentional
{{ triage_summary.intentional_count }}
Action Assigned
{{ triage_summary.action_assigned_count }}
{% endif %}
{% if trend_summary and trend_summary.total_new %}
📊 Aggregated Defect Introduction vs Fix Velocity ({{ trend_period_text }})
ℹTracks the rate at which new defects are introduced versus the rate at which defects are fixed across all instances. A positive trend (fixing faster than introducing) indicates improving code quality.
🌐 Multi-Instance Trend Status:
{% if trend_summary.trend_direction == 'improving' %}
✅ IMPROVING - Fixing defects faster than introducing new ones across all instances
{% elif trend_summary.trend_direction == 'declining' %}
⚠️ DECLINING - Introducing defects faster than fixing them across all instances
{% else %}
ℹ️ STABLE - Introduction and fix rates are balanced across all instances
{% endif %}
Avg New Defects/Day
ℹAverage number of new defects introduced per day over the tracking period. Formula: Total New Defects / Days in Period
{{ (trend_summary.avg_new_per_day|round(1)) if trend_summary.avg_new_per_day else '0' }}
↑
Across all instances
Avg Fixed Defects/Day
ℹAverage number of defects fixed per day over the tracking period. Formula: Total Fixed Defects / Days in Period
{{ (trend_summary.avg_fixed_per_day|round(1)) if trend_summary.avg_fixed_per_day else '0' }}
↓
Across all instances
Net Change
ℹNet change in defect count over the period. Formula: Total New - Total Fixed. Negative values indicate improvement.
{{ ('+' if trend_summary.net_change > 0 else '') if trend_summary.net_change else '' }}{{ trend_summary.net_change if trend_summary.net_change else '0' }}
Fix Rate Efficiency
ℹPercentage showing fix efficiency. Formula: (Fixed / (Fixed + New)) × 100%. Values over 50% indicate more fixes than introductions.
{{ (trend_summary.fix_rate_pct|round(1)) if trend_summary.fix_rate_pct else '0' }}%
Total New (90d)
{{ trend_summary.total_new }}
Total Fixed (90d)
{{ trend_summary.total_fixed }}
{% endif %}
{% if fix_rate_metrics %}
⚡ Aggregated Fix Rate & Velocity ({{ trend_period_text }})
ℹMeasures the efficiency of defect resolution across all instances. Fix Rate = (Fixed Defects / Total Defects) × 100%. Higher rates indicate better remediation efforts.
Total Defects
ℹTotal number of defects tracked during the measurement period.
{{ fix_rate_metrics.total_defects }}
Fixed Defects
ℹNumber of defects that were successfully resolved and fixed during the period.
{{ fix_rate_metrics.fixed_defects }}
Fix Rate
ℹPercentage of defects fixed. Formula: (Fixed Defects / Total Defects) × 100%
{{ fix_rate_metrics.fix_rate_percentage }}%
Current Outstanding
ℹCurrent total count of defects that remain open and unresolved.
{{ trend_summary.current_outstanding if trend_summary else 'N/A' }}
{% endif %}
{% if trends_by_instance %}
📈 Trends by Instance
ℹDetailed breakdown of triage completion, defect introduction, and fix trends for each individual instance.
{% if ver.first_used %}
{{ ver.first_used.strftime('%Y-%m-%d %H:%M') if ver.first_used.strftime else ver.first_used }}
{% else %}
N/A
{% endif %}
{% if ver.last_used %}
{{ ver.last_used.strftime('%Y-%m-%d %H:%M') if ver.last_used.strftime else ver.last_used }}
{% else %}
N/A
{% endif %}
{% endfor %}
{% endif %}
{% if user_statistics %}
👥 Aggregated User Activity & License Statistics (Last 90 Days)
ℹShows license utilization and user engagement across all instances. Active users are those who have logged in or interacted with Coverity in the last 90 days.
Total Licensed Users
ℹTotal number of Coverity licenses allocated across all instances.
{{ user_statistics.total_licensed_users }}
Across all instances
Users with Login
ℹNumber of licensed users who have logged into Coverity at least once.
{{ user_statistics.users_with_login }}
{{ user_statistics.login_user_percentage }}% of licenses
Active Users
ℹUsers who have actively used Coverity within the last 90 days. Indicates license utilization.
{{ user_statistics.active_users }}
{{ user_statistics.active_user_percentage }}% of licenses
Inactive Licenses
ℹNumber of licenses allocated to users who have not been active in the last 90 days. These licenses may be reassignable.
{{ (100 - user_statistics.active_user_percentage)|round(1) }}% of licenses
🌐 Multi-Instance Activity Summary:
{% if user_statistics.active_user_percentage >= 50 %}
Excellent license utilization across all Coverity instances! {{ user_statistics.active_user_percentage }}% of users are actively engaged.
{% elif user_statistics.active_user_percentage >= 30 %}
Moderate license utilization. {{ user_statistics.active_user_percentage }}% of users are active. Consider cross-instance user engagement strategies.
{% else %}
Low license utilization detected across instances. Only {{ user_statistics.active_user_percentage }}% of users are active. Review license distribution and training programs.
{% endif %}
User Activity by Instance
Instance
Licensed Users
Users with Login
Active Users
Active %
{% for inst in user_statistics.by_instance %}
{{ inst.instance_name }}
{{ inst.licensed_users }}
{{ inst.users_with_login }}
{{ inst.active_users }}
{{ inst.active_percentage }}%
{% endfor %}
{% endif %}
{% if database_statistics %}
💾 Aggregated Database Statistics
ℹCombined database metrics across all instances, including total storage size, snapshot counts, and commit performance statistics.
Total Database Size
ℹCombined size of all Coverity databases across monitored instances.
{{ database_statistics.total_db_size }}
Across all instances
Total Snapshots
ℹTotal number of analysis snapshots stored across all instances. Each snapshot represents a code analysis run.
{{ database_statistics.total_snapshots }}
All instances combined
Avg Commit Time
ℹAverage time to commit analysis results to the database, weighted across all instances.
{{ database_statistics.avg_duration_seconds }}s
Weighted average
Total Commits
ℹTotal number of commit operations (analysis uploads) across all instances.
{% if commit_activity and commit_activity.total_commits > 0 %}
Aggregated Commit Activity Patterns
ℹ️ Activity Analysis: Based on {{ commit_activity.total_commits }} commits/snapshots across all instances, showing when development activity is most and least active.