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.
Files changed (2) hide show
  1. package/dist/cli.js +3 -4
  2. 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 (e.g., "At 00:12s, traffic spiked by 40%. This caused database connection pool exhaustion, which triggered a cascading series of 504 errors on the checkout endpoint, ultimately hitting a knee-point crash at 500 virtual users."). Translate raw logs and metrics trends directly into an easy-to-read chronological story.
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 (CPU saturation, socket pool exhaustion, database lock contention, etc.) indicated by how latency changes dynamically alongside concurrency, and correlate unique structural exception/error patterns directly to the performance drops.
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(/(\\d+(?:\\.\\d+)?)/);
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');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blaze-performance-tester",
3
- "version": "3.2.11",
3
+ "version": "3.2.12",
4
4
  "description": "A high-performance, multi-threaded load testing engine built with Rust and QuickJS.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",