Group Activity Analytics API
原文:https://docs.gitlab.com/ee/api/group_activity_analytics.html
- Get count of recently created issues for group
 - Get count of recently created merge requests for group
 - Get count of members recently added to group
 
Group Activity Analytics API
注意:此功能是在 GitLab 12.9 中引入的 .
Get count of recently created issues for group
GET /analytics/group_activity/issues_count 
Parameters:
| Attribute | Type | Required | Description | 
|---|---|---|---|
 group_path  | 
string | yes | 组路径 | 
请求示例:
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/analytics/group_activity/issues_count?group_path=gitlab-org" 
响应示例:
{  "issues_count":  10  } 
Get count of recently created merge requests for group
GET /analytics/group_activity/merge_requests_count 
Parameters:
| Attribute | Type | Required | Description | 
|---|---|---|---|
 group_path  | 
string | yes | 组路径 | 
请求示例:
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/analytics/group_activity/merge_requests_count?group_path=gitlab-org" 
响应示例:
{  "merge_requests_count":  10  } 
Get count of members recently added to group
GET /analytics/group_activity/new_members_count 
Parameters:
| Attribute | Type | Required | Description | 
|---|---|---|---|
 group_path  | 
string | yes | 组路径 | 
请求示例:
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/analytics/group_activity/new_members_count?group_path=gitlab-org" 
响应示例:
{  "new_members_count":  10  }