get_assignment_statistics
Analyze bug assignment statistics in Mantis Bug Tracker to track user-specific issue distributions, filter by status, and include unassigned issues for comprehensive insights.
Instructions
獲取 Mantis 問題分派統計數據,分析不同用戶的問題分派情況
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeUnassigned | No | 是否包含未分派問題 | |
projectId | No | 專案 ID | |
statusFilter | No | 狀態過濾器,只計算特定狀態的問題 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"includeUnassigned": {
"default": true,
"description": "是否包含未分派問題",
"type": "boolean"
},
"projectId": {
"description": "專案 ID",
"type": "number"
},
"statusFilter": {
"description": "狀態過濾器,只計算特定狀態的問題",
"items": {
"type": "number"
},
"type": "array"
}
},
"type": "object"
}