Skip to main content

Steps

1. Navigate to a Dashboard with Coverage Metrics

Start from any dashboard showing coverage bars:
  • Home Dashboard — Overall project statistics
  • Requirements Space — Requirements traceability
  • Design Space — Design verification coverage
  • Risks Space — FMEA coverage metrics
  • Safety Readiness Scorecard — Standards compliance
Each coverage bar displays a percentage and a “gaps” link.

2. Identify Coverage Gaps

Look for coverage metrics below 100%. The coverage bar shows: The color indicates health:
  • Green (≥80%) — Good coverage
  • Yellow (50-79%) — Needs attention
  • Red (<50%) — Critical gap
Click the “View N gaps” or “uncovered” link next to the coverage percentage. This executes a Lucene query in the Work Items Tracker showing only the items missing the required links. diagram

4. Review the Gap Query Results

The Work Items Tracker opens with a pre-filtered query showing uncovered items. Example for unverified system requirements:
IDTitleStatusASILAssignee
TA-123System shall detect obstaclesDraftDUnassigned
TA-145System shall calculate collision riskDraftCJ. Smith
TA-167System shall activate brake actuatorReviewDUnassigned
The query URL contains the Lucene filter:
type:sysReq AND NOT backlinkedWorkItems:verifies=TA*
Right-click the gap link and select “Copy Link Address” to bookmark frequently used gap queries. This lets you monitor progress without navigating through dashboards.

5. Drill Down to Item Details

Click any work item ID to open the full form and investigate why the link is missing:
  • Check the Linked Work Items section
  • Verify the correct link role (e.g., “verifies”, “refines”, “assesses”)
  • Review custom fields (ASIL, classification, Action Priority)
  • Check workflow status — items in “Draft” may be intentionally unlinked

6. Understand Gap Query Logic

Different coverage metrics use different Lucene queries:
Coverage TypeQuery PatternMeaning
Forward linkstype:A AND NOT linkedWorkItems:role=*Items of type A with NO outgoing links
Backward linkstype:A AND NOT backlinkedWorkItems:role=PREFIX*Items of type A with NO incoming links from project
Enum classificationtype:A AND NOT fieldName.KEY:(value1 value2)Items missing enum value
Multi-hopCustom Velocity loopTransitive traceability (e.g., desReq → characteristic → failureMode)
Complex traceability chains (like SC/CC Design Requirements → Failure Modes via Characteristics) cannot generate automatic gap queries. The dashboard shows the original query (e.g., type:desReq AND classification.KEY:(sc cc)) — you must manually verify each item.

7. Fix Gaps Systematically

From the gap query results:
  1. Batch select items needing the same link type
  2. Use Bulk Edit (from Work Items table toolbar) to add links
  3. For FMEA gaps, open the risksheet and complete missing fields
  4. For complex chains, use the relevant PowerSheet (e.g., Characteristics PowerSheet to link characteristics → failure modes)

8. Verify Coverage Improvement

Return to the dashboard and refresh (F5). The coverage percentage should increase as you add links. The gap count decreases in real-time.
Before:  26/31 verified (83.9%) — 5 gaps
After:   31/31 verified (100%)  — 0 gaps

Common Gap Query Examples

Unverified System Requirements

type:sysReq AND NOT backlinkedWorkItems:verifies=TA*
Shows system requirements with NO test cases linked via “verifies” role.

Unrefined Customer Requirements

type:customerRequirement AND NOT backlinkedWorkItems:refines=TA*
Shows customer requirements with NO system requirements refining them.

SC/CC Characteristics Without FMEA

type:characteristic AND classification.KEY:(sc cc) AND NOT backlinkedWorkItems:assesses=TA*
Shows safety-critical/cybersecurity-critical characteristics missing failure mode analysis.

Failure Modes Without Action Priority

type:failureMode AND NOT actionPriority.KEY:(h m l)
Shows failure modes missing post-mitigation Action Priority rating.

Visual Flow

diagram

Verification

You should now see:
  • The Work Items Tracker filtered to show ONLY uncovered items
  • A Lucene query in the search bar explaining the gap logic
  • The ability to click individual items to investigate and fix gaps
  • Updated coverage percentages when you return to the dashboard

See also