-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'devin/1735731104-update-datadog-docs' into devin/173573…
…1104-add-datadog-users-example
- Loading branch information
Showing
2 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,8 @@ This integration allows you to: | |
- [`SLO`](https://docs.datadoghq.com/api/latest/service-level-objectives/#get-all-slos) | ||
- [`SLO History`](https://docs.datadoghq.com/api/latest/service-level-objectives/#get-an-slos-history) | ||
- [`Service Metric`](https://docs.datadoghq.com/api/latest/metrics/#query-timeseries-points) | ||
- [`User`](https://docs.datadoghq.com/api/latest/users/#list-all-users) | ||
- [`Team`](https://docs.datadoghq.com/api/latest/teams/#get-all-teams) | ||
|
||
|
||
|
||
|
@@ -772,6 +774,49 @@ This enrichment significantly enhances the usability of the Datadog response by | |
|
||
</details> | ||
|
||
<details> | ||
<summary> User response data</summary> | ||
|
||
```json showLineNumbers | ||
{ | ||
"type": "users", | ||
"id": "468a7e28-4d70-11ef-9b68-c2d109cdf094", | ||
"attributes": { | ||
"name": "", | ||
"handle": " <mailto:[email protected]|[email protected]>", | ||
"created_at": "2024-07-29T06:03:28.693227+00:00", | ||
"modified_at": "2024-07-29T06:05:30.392353+00:00", | ||
"email": " <mailto:[email protected]|[email protected]>", | ||
"icon": "<https://secure.gravatar.com/avatar/04659c42251ec0dacaa5eb88507e3016?s=48&d=retro>", | ||
"title": "", | ||
"verified": true, | ||
"service_account": false, | ||
"disabled": false, | ||
"allowed_login_methods": [], | ||
"status": "Active", | ||
"mfa_enabled": false | ||
}, | ||
"relationships": { | ||
"roles": { | ||
"data": [ | ||
{ | ||
"type": "roles", | ||
"id": "dbc3577a-396e-11ef-b12b-da7ad0900002" | ||
} | ||
] | ||
}, | ||
"org": { | ||
"data": { | ||
"type": "orgs", | ||
"id": "dbb758e9-396e-11ef-800c-bea43249b5f6" | ||
} | ||
} | ||
} | ||
} | ||
``` | ||
|
||
</details> | ||
|
||
### Mapping Result | ||
|
||
The combination of the sample payload and the Ocean configuration generates the following Port entity: | ||
|
@@ -941,6 +986,30 @@ The combination of the sample payload and the Ocean configuration generates the | |
|
||
</details> | ||
|
||
<details> | ||
<summary>User entity in Port</summary> | ||
|
||
```json showLineNumbers | ||
{ | ||
"identifier": "1e675d18-b002-11ef-9df4-2a2722803530", | ||
"title": "Matan Grady", | ||
"team": [], | ||
"properties": { | ||
"email": " <mailto:[email protected]|[email protected]>", | ||
"handle": " <mailto:[email protected]|[email protected]>", | ||
"status": "Active", | ||
"disabled": false, | ||
"verified": true | ||
}, | ||
"relations": { | ||
"team": [] | ||
}, | ||
"icon": "Datadog" | ||
} | ||
``` | ||
|
||
</details> | ||
|
||
|
||
## Relevant Guides | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters