Group Activity Analytics API

原文:https://docs.gitlab.com/ee/api/group_activity_analytics.html

Group Activity Analytics API

注意:此功能是在 GitLab 12.9 中引入的 .

Get count of recently created issues for group

  1. GET /analytics/group_activity/issues_count

Parameters:

Attribute Type Required Description
group_path string yes 组路径

请求示例:

  1. curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/analytics/group_activity/issues_count?group_path=gitlab-org"

响应示例:

  1. { "issues_count": 10 }

Get count of recently created merge requests for group

  1. GET /analytics/group_activity/merge_requests_count

Parameters:

Attribute Type Required Description
group_path string yes 组路径

请求示例:

  1. curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/analytics/group_activity/merge_requests_count?group_path=gitlab-org"

响应示例:

  1. { "merge_requests_count": 10 }

Get count of members recently added to group

  1. GET /analytics/group_activity/new_members_count

Parameters:

Attribute Type Required Description
group_path string yes 组路径

请求示例:

  1. curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/analytics/group_activity/new_members_count?group_path=gitlab-org"

响应示例:

  1. { "new_members_count": 10 }