get_top_bugs
Retrieve the most frequent defects from Zebrunner test management to identify recurring issues and prioritize bug fixes across projects.
Instructions
๐ Top N most frequent defects with optional issue links (SQL widget, templateId: 4)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format: raw widget response or formatted data | formatted |
issueUrlPattern | No | e.g., 'https://yourcompany.atlassian.net/browse/{key}' | |
limit | No | How many bugs to return | |
milestone | No | Optional MILESTONE filter, e.g., ['25.39.0'] for milestone filtering | |
period | No | Time period | Last 7 Days |
platform | No | Optional platform filter; defaults to [] for this widget | |
project | No | Project alias ('web', 'android', 'ios', 'api'), project key, or numeric projectId | web |
templateId | No | Override templateId if needed |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "formatted",
"description": "Output format: raw widget response or formatted data",
"enum": [
"raw",
"formatted"
],
"type": "string"
},
"issueUrlPattern": {
"description": "e.g., 'https://yourcompany.atlassian.net/browse/{key}'",
"type": "string"
},
"limit": {
"default": 10,
"description": "How many bugs to return",
"exclusiveMinimum": 0,
"maximum": 100,
"type": "integer"
},
"milestone": {
"default": [],
"description": "Optional MILESTONE filter, e.g., ['25.39.0'] for milestone filtering",
"items": {
"type": "string"
},
"type": "array"
},
"period": {
"default": "Last 7 Days",
"description": "Time period",
"enum": [
"Last 7 Days",
"Week",
"Month"
],
"type": "string"
},
"platform": {
"anyOf": [
{
"enum": [
"web",
"android",
"ios",
"api"
],
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
],
"description": "Optional platform filter; defaults to [] for this widget"
},
"project": {
"anyOf": [
{
"enum": [
"web",
"android",
"ios",
"api"
],
"type": "string"
},
{
"type": "string"
},
{
"type": "number"
}
],
"default": "web",
"description": "Project alias ('web', 'android', 'ios', 'api'), project key, or numeric projectId"
},
"templateId": {
"default": 4,
"description": "Override templateId if needed",
"type": "number"
}
},
"type": "object"
}