blaze-performance-tester 3.2.11 → 3.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +3 -4
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -5638,9 +5638,9 @@ ${uniqueLogs || "No unique structural exceptions encountered."}
|
|
|
5638
5638
|
|
|
5639
5639
|
Provide a comprehensive, highly technical Root Cause Analysis (RCA) report structured exactly as follows:
|
|
5640
5640
|
|
|
5641
|
-
Paragraph 1 - GENERATIVE INCIDENT NARRATIVE: Write a clean, plain-English story of the incident that builds a chronological timeline of the failure event
|
|
5641
|
+
Paragraph 1 - GENERATIVE INCIDENT NARRATIVE: Write a clean, plain-English story of the incident that builds a chronological timeline of the failure event. Translate raw logs and metrics trends directly into an easy-to-read chronological story.
|
|
5642
5642
|
|
|
5643
|
-
Paragraph 2 - TECHNICAL BOTTLENECK DIAGNOSIS: Diagnose the exact bottleneck point
|
|
5643
|
+
Paragraph 2 - TECHNICAL BOTTLENECK DIAGNOSIS: Diagnose the exact bottleneck point indicated by how latency changes dynamically alongside concurrency, and correlate unique structural exception/error patterns directly to the performance drops.
|
|
5644
5644
|
|
|
5645
5645
|
Paragraph 3 - ARCHITECTURAL SIZING RECOMMENDATIONS: Give concrete, infrastructure sizing or cloud architecture remediation recommendations based on the stress points found.
|
|
5646
5646
|
|
|
@@ -5718,7 +5718,6 @@ import { step } from 'blaze-performance-tester';
|
|
|
5718
5718
|
|
|
5719
5719
|
export default async function scenario() {
|
|
5720
5720
|
await step('Scenario Execution', async () => {
|
|
5721
|
-
// Add generated API calls or interactions here
|
|
5722
5721
|
console.log("Executing auto-generated step based on prompt.");
|
|
5723
5722
|
});
|
|
5724
5723
|
}
|
|
@@ -6708,7 +6707,7 @@ function exportHtmlDashboard(history, config, verdictReason, semanticReport, res
|
|
|
6708
6707
|
const feedback = document.getElementById('nlpQueryFeedback');
|
|
6709
6708
|
|
|
6710
6709
|
let filterFn = (row, data) => true;
|
|
6711
|
-
const numMatch = q.match(/(
|
|
6710
|
+
const numMatch = q.match(/(d+(?:.d+)?)/);
|
|
6712
6711
|
const targetNum = numMatch ? parseFloat(numMatch[1]) : null;
|
|
6713
6712
|
|
|
6714
6713
|
const isGreater = q.includes('>') || q.includes('greater') || q.includes('above') || q.includes('more');
|