317.md 2.3 KB
Newer Older
Lab机器人's avatar
readme  
Lab机器人 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
# Group Activity Analytics API

> 原文:[https://docs.gitlab.com/ee/api/group_activity_analytics.html](https://docs.gitlab.com/ee/api/group_activity_analytics.html)

*   [Get count of recently created issues for group](#get-count-of-recently-created-issues-for-group)
*   [Get count of recently created merge requests for group](#get-count-of-recently-created-merge-requests-for-group)
*   [Get count of members recently added to group](#get-count-of-members-recently-added-to-group)

# Group Activity Analytics API[](#group-activity-analytics-api "Permalink")

**注意:**此功能是在 GitLab 12.9 中[引入的](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/26460) .

## Get count of recently created issues for group[](#get-count-of-recently-created-issues-for-group "Permalink")

```
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-count-of-recently-created-merge-requests-for-group "Permalink")

```
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-count-of-members-recently-added-to-group "Permalink")

```
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  } 
```