26 lines
387 B
Markdown
26 lines
387 B
Markdown
|
|
|
|
## All reported incidents
|
|
|
|
```dataview
|
|
TABLE
|
|
jira AS "Jira",
|
|
status AS "Status",
|
|
classification AS "Classification"
|
|
FROM "20 Work/Tracking/Website Sync"
|
|
WHERE jira
|
|
SORT date DESC
|
|
```
|
|
|
|
|
|
## Confirmed sync issues
|
|
|
|
```dataview
|
|
TABLE
|
|
jira AS "Jira",
|
|
reported_at AS "Reported"
|
|
FROM "20 Work/Tracking/Website Sync/Incidents"
|
|
WHERE status = "confirmed-sync-issue"
|
|
SORT date DESC
|
|
```
|