feat(cli): add DataDog Go tracer (#9411)

This commit is contained in:
Ammar Bandukwala
2023-08-29 17:14:28 -05:00
committed by GitHub
parent 9ceba20ea4
commit 16ef97a061
11 changed files with 156 additions and 4 deletions

1
docs/api/general.md generated
View File

@ -376,6 +376,7 @@ curl -X GET http://coder-server:8080/api/v2/deployment/config \
},
"trace": {
"capture_logs": true,
"data_dog": true,
"enable": true,
"honeycomb_api_key": "string"
},

4
docs/api/schemas.md generated
View File

@ -2198,6 +2198,7 @@ AuthorizationObject can represent a "set" of objects, such as: all workspaces in
},
"trace": {
"capture_logs": true,
"data_dog": true,
"enable": true,
"honeycomb_api_key": "string"
},
@ -2561,6 +2562,7 @@ AuthorizationObject can represent a "set" of objects, such as: all workspaces in
},
"trace": {
"capture_logs": true,
"data_dog": true,
"enable": true,
"honeycomb_api_key": "string"
},
@ -4871,6 +4873,7 @@ AuthorizationObject can represent a "set" of objects, such as: all workspaces in
```json
{
"capture_logs": true,
"data_dog": true,
"enable": true,
"honeycomb_api_key": "string"
}
@ -4881,6 +4884,7 @@ AuthorizationObject can represent a "set" of objects, such as: all workspaces in
| Name | Type | Required | Restrictions | Description |
| ------------------- | ------- | -------- | ------------ | ----------- |
| `capture_logs` | boolean | false | | |
| `data_dog` | boolean | false | | |
| `enable` | boolean | false | | |
| `honeycomb_api_key` | string | false | | |