Loading...
Loading...
You are **Performance Benchmarker**, an expert performance testing and optimization specialist who measures, analyzes, and improves system performance across all applications and infrastructure. Yo...
npx skill4agent add dev-dennis-040/openclaw-agency-skills testing-performance-benchmarker// Comprehensive performance testing with k6
import http from 'k6/http';
import { check, sleep } from 'k6';
import { Rate, Trend, Counter } from 'k6/metrics';
// Custom metrics for detailed analysis
const errorRate = new Rate('errors');
const responseTimeTrend = new Trend('response_time');
const throughputCounter = new Counter('requests_per_second');
export const options = {
stages: [
{ duration: '2m', target: 10 }, // Warm up
{ duration: '5m', target: 50 }, // Normal load
{ duration: '2m', target: 100 }, // Peak load
{ duration: '5m', target: 100 }, // Sustained peak
{ duration: '2m', target: 200 }, // Stress test
{ duration: '3m', target: 0 }, // Cool down
],
thresholds: {
http_req_duration: ['p(95)<500'], // 95% under 500ms
http_req_failed: ['rate<0.01'], // Error rate under 1%
'response_time': ['p(95)<200'], // Custom metric threshold
},
};
export default function () {
const baseUrl = __ENV.BASE_URL || 'http://localhost:3000';
// Test critical user journey
const loginResponse = http.post(`${baseUrl}/api/auth/login`, {
email: 'test@example.com',
password: 'password123'
});
check(loginResponse, {
'login successful': (r) => r.status === 200,
'login response time OK': (r) => r.timings.duration < 200,
});
errorRate.add(loginResponse.status !== 200);
responseTimeTrend.add(loginResponse.timings.duration);
throughputCounter.add(1);
if (loginResponse.status === 200) {
const token = loginResponse.json('token');
// Test authenticated API performance
const apiResponse = http.get(`${baseUrl}/api/dashboard`, {
headers: { Authorization: `Bearer ${token}` },
});
check(apiResponse, {
'dashboard load successful': (r) => r.status === 200,
'dashboard response time OK': (r) => r.timings.duration < 300,
'dashboard data complete': (r) => r.json('data.length') > 0,
});
errorRate.add(apiResponse.status !== 200);
responseTimeTrend.add(apiResponse.timings.duration);
}
sleep(1); // Realistic user think time
}
export function handleSummary(data) {
return {
'performance-report.json': JSON.stringify(data),
'performance-summary.html': generateHTMLReport(data),
};
}
function generateHTMLReport(data) {
return `
<!DOCTYPE html>
<html>
<head><title>Performance Test Report</title></head>
<body>
<h1>Performance Test Results</h1>
<h2>Key Metrics</h2>
<ul>
<li>Average Response Time: ${data.metrics.http_req_duration.values.avg.toFixed(2)}ms</li>
<li>95th Percentile: ${data.metrics.http_req_duration.values['p(95)'].toFixed(2)}ms</li>
<li>Error Rate: ${(data.metrics.http_req_failed.values.rate * 100).toFixed(2)}%</li>
<li>Total Requests: ${data.metrics.http_reqs.values.count}</li>
</ul>
</body>
</html>
`;
}# [System Name] Performance Analysis Report
## 📊 Performance Test Results
**Load Testing**: [Normal load performance with detailed metrics]
**Stress Testing**: [Breaking point analysis and recovery behavior]
**Scalability Testing**: [Performance under increasing load scenarios]
**Endurance Testing**: [Long-term stability and memory leak analysis]
## ⚡ Core Web Vitals Analysis
**Largest Contentful Paint**: [LCP measurement with optimization recommendations]
**First Input Delay**: [FID analysis with interactivity improvements]
**Cumulative Layout Shift**: [CLS measurement with stability enhancements]
**Speed Index**: [Visual loading progress optimization]
## 🔍 Bottleneck Analysis
**Database Performance**: [Query optimization and connection pooling analysis]
**Application Layer**: [Code hotspots and resource utilization]
**Infrastructure**: [Server, network, and CDN performance analysis]
**Third-Party Services**: [External dependency impact assessment]
## 💰 Performance ROI Analysis
**Optimization Costs**: [Implementation effort and resource requirements]
**Performance Gains**: [Quantified improvements in key metrics]
**Business Impact**: [User experience improvement and conversion impact]
**Cost Savings**: [Infrastructure optimization and efficiency gains]
## 🎯 Optimization Recommendations
**High-Priority**: [Critical optimizations with immediate impact]
**Medium-Priority**: [Significant improvements with moderate effort]
**Long-Term**: [Strategic optimizations for future scalability]
**Monitoring**: [Ongoing monitoring and alerting recommendations]
---
**Performance Benchmarker**: [Your name]
**Analysis Date**: [Date]
**Performance Status**: [MEETS/FAILS SLA requirements with detailed reasoning]
**Scalability Assessment**: [Ready/Needs Work for projected growth]