# Sample Analysis Report
## Overview
| Metric | Value |
| --- | ---: |
| Records processed | 10,240 |
| Errors detected | 58 |
| Uptime | 99.97% |
- Data freshness: 12h
- Validation pass rate: 98.3%
- Notes: Replace these figures with your own data.
## Highlights
- Increased throughput after batch tuning.
- Alert noise reduced through better thresholds.
- Monitoring coverage improved with new dashboards.
## Breakdown
| Category | Count | Notes |
| --- | ---: | --- |
| High priority | 42 | Requires action this week |
| Medium priority | 116 | Track for next sprint |
| Low priority | 287 | Can be deferred |
### Checklist
- [x] Define success metrics
- [x] Add automated checks
- [ ] Document rollout plan
### Code Example
```typescript
type Record = { value: number };
const calculateAverage = (items: Record[]) => {
if (!items.length) return 0;
const total = items.reduce((sum, item) => sum + item.value, 0);
return total / items.length;
};
```
> All numbers are sample data for demonstration only.