Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/experiments.md')
-rw-r--r--doc/api/experiments.md50
1 files changed, 44 insertions, 6 deletions
diff --git a/doc/api/experiments.md b/doc/api/experiments.md
index 3c8efa35b78..c5e217a3d66 100644
--- a/doc/api/experiments.md
+++ b/doc/api/experiments.md
@@ -28,13 +28,51 @@ Example response:
```json
[
- {
- "key": "experiment_1",
- "enabled": true
+ {
+ "key": "code_quality_walkthrough",
+ "definition": {
+ "name": "code_quality_walkthrough",
+ "introduced_by_url": "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/58900",
+ "rollout_issue_url": "https://gitlab.com/gitlab-org/gitlab/-/issues/327229",
+ "milestone": "13.12",
+ "type": "experiment",
+ "group": "group::activation",
+ "default_enabled": false
},
- {
- "key": "experiment_2",
- "enabled": false
+ "current_status": {
+ "state": "conditional",
+ "gates": [
+ {
+ "key": "boolean",
+ "value": false
+ },
+ {
+ "key": "percentage_of_actors",
+ "value": 25
+ }
+ ]
}
+ },
+ {
+ "key": "ci_runner_templates",
+ "definition": {
+ "name": "ci_runner_templates",
+ "introduced_by_url": "https://gitlab.com/gitlab-org/gitlab/-/merge_requests/58357",
+ "rollout_issue_url": "https://gitlab.com/gitlab-org/gitlab/-/issues/326725",
+ "milestone": "14.0",
+ "type": "experiment",
+ "group": "group::activation",
+ "default_enabled": false
+ },
+ "current_status": {
+ "state": "off",
+ "gates": [
+ {
+ "key": "boolean",
+ "value": false
+ }
+ ]
+ }
+ }
]
```