identify_performance_bottlenecks
Analyze JMeter test results to detect and report performance bottlenecks, enabling users to optimize system efficiency. Input a JTL file to receive formatted bottleneck analysis.
Instructions
Identify performance bottlenecks in JMeter test results.
Args: jtl_file: Path to the JTL file containing test results
Returns: str: Bottleneck analysis results in a formatted string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
jtl_file | Yes |
Input Schema (JSON Schema)
{
"properties": {
"jtl_file": {
"title": "Jtl File",
"type": "string"
}
},
"required": [
"jtl_file"
],
"title": "identify_performance_bottlenecksArguments",
"type": "object"
}