Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add replay_session_count and update documentation for rum_session_count #1284

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.5.1.dev2",
"regenerated": "2022-01-05 07:38:55.651805",
"spec_repo_commit": "d72de97"
"regenerated": "2022-01-10 14:23:26.380065",
"spec_repo_commit": "d9089b2"
},
"v2": {
"apigentools_version": "1.5.1.dev2",
"regenerated": "2022-01-05 07:38:55.673576",
"spec_repo_commit": "d72de97"
"regenerated": "2022-01-10 14:23:26.401253",
"spec_repo_commit": "d9089b2"
}
}
}
19 changes: 12 additions & 7 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13180,8 +13180,13 @@ components:
public_id:
description: The organization public ID.
type: string
replay_session_count:
description: Contains the number of RUM Replay Sessions (data available
beginning November 1, 2021).
format: int64
type: integer
session_count:
description: Contains the number of RUM Sessions.
description: Contains the number of browser RUM Lite Sessions.
format: int64
type: integer
session_count_android:
Expand Down Expand Up @@ -13611,8 +13616,8 @@ components:
format: int64
type: integer
rum_session_count_sum:
description: Shows the sum of all browser RUM Sessions over all hours in
the current date for all organizations
description: Shows the sum of all browser RUM Lite Sessions over all hours
in the current date for all organizations
format: int64
type: integer
rum_total_session_count_sum:
Expand Down Expand Up @@ -13890,8 +13895,8 @@ components:
format: int64
type: integer
rum_session_count_sum:
description: Shows the sum of all browser RUM Sessions over all hours in
the current date for the given org.
description: Shows the sum of all browser RUM Lite Sessions over all hours
in the current date for the given org.
format: int64
type: integer
rum_total_session_count_sum:
Expand Down Expand Up @@ -14209,8 +14214,8 @@ components:
format: int64
type: integer
rum_session_count_agg_sum:
description: Shows the sum of all browser RUM Sessions over all hours in
the current months for all organizations.
description: Shows the sum of all browser RUM Lite Sessions over all hours
in the current months for all organizations.
format: int64
type: integer
rum_total_session_count_agg_sum:
Expand Down
28 changes: 27 additions & 1 deletion api/v1/datadog/docs/UsageRumSessionsHour.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ Name | Type | Description | Notes
**Hour** | Pointer to **time.Time** | The hour for the usage. | [optional]
**OrgName** | Pointer to **string** | The organization name. | [optional]
**PublicId** | Pointer to **string** | The organization public ID. | [optional]
**SessionCount** | Pointer to **int64** | Contains the number of RUM Sessions. | [optional]
**ReplaySessionCount** | Pointer to **int64** | Contains the number of RUM Replay Sessions (data available beginning November 1, 2021). | [optional]
**SessionCount** | Pointer to **int64** | Contains the number of browser RUM Lite Sessions. | [optional]
**SessionCountAndroid** | Pointer to **int64** | Contains the number of mobile RUM Sessions on Android (data available beginning December 1, 2020). | [optional]
**SessionCountIos** | Pointer to **int64** | Contains the number of mobile RUM Sessions on iOS (data available beginning December 1, 2020). | [optional]

Expand Down Expand Up @@ -105,6 +106,31 @@ SetPublicId sets PublicId field to given value.

HasPublicId returns a boolean if a field has been set.

### GetReplaySessionCount

`func (o *UsageRumSessionsHour) GetReplaySessionCount() int64`

GetReplaySessionCount returns the ReplaySessionCount field if non-nil, zero value otherwise.

### GetReplaySessionCountOk

`func (o *UsageRumSessionsHour) GetReplaySessionCountOk() (*int64, bool)`

GetReplaySessionCountOk returns a tuple with the ReplaySessionCount field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetReplaySessionCount

`func (o *UsageRumSessionsHour) SetReplaySessionCount(v int64)`

SetReplaySessionCount sets ReplaySessionCount field to given value.

### HasReplaySessionCount

`func (o *UsageRumSessionsHour) HasReplaySessionCount() bool`

HasReplaySessionCount returns a boolean if a field has been set.

### GetSessionCount

`func (o *UsageRumSessionsHour) GetSessionCount() int64`
Expand Down
2 changes: 1 addition & 1 deletion api/v1/datadog/docs/UsageSummaryDate.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Name | Type | Description | Notes
**Orgs** | Pointer to [**[]UsageSummaryDateOrg**](UsageSummaryDateOrg.md) | Organizations associated with a user. | [optional]
**ProfilingHostTop99p** | Pointer to **int64** | Shows the 99th percentile of all profiled hosts over all hours in the current date for all organizations. | [optional]
**RumBrowserAndMobileSessionCount** | Pointer to **int64** | Shows the sum of all mobile sessions and all browser lite and legacy sessions over all hours in the current month for all organizations. | [optional]
**RumSessionCountSum** | Pointer to **int64** | Shows the sum of all browser RUM Sessions over all hours in the current date for all organizations | [optional]
**RumSessionCountSum** | Pointer to **int64** | Shows the sum of all browser RUM Lite Sessions over all hours in the current date for all organizations | [optional]
**RumTotalSessionCountSum** | Pointer to **int64** | Shows the sum of RUM Sessions (browser and mobile) over all hours in the current date for all organizations. | [optional]
**RumUnitsSum** | Pointer to **int64** | Shows the sum of all browser and mobile RUM units over all hours in the current date for all organizations. | [optional]
**SdsLogsScannedBytesSum** | Pointer to **int64** | Shows the sum of all bytes scanned of logs usage by the Sensitive Data Scanner over all hours in the current month for all organizations. | [optional]
Expand Down
2 changes: 1 addition & 1 deletion api/v1/datadog/docs/UsageSummaryDateOrg.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Name | Type | Description | Notes
**ProfilingHostTop99p** | Pointer to **int64** | Shows the 99th percentile of all profiled hosts over all hours in the current date for the given org. | [optional]
**PublicId** | Pointer to **string** | The organization public id. | [optional]
**RumBrowserAndMobileSessionCount** | Pointer to **int64** | Shows the sum of all mobile sessions and all browser lite and legacy sessions over all hours in the current date for the given org. | [optional]
**RumSessionCountSum** | Pointer to **int64** | Shows the sum of all browser RUM Sessions over all hours in the current date for the given org. | [optional]
**RumSessionCountSum** | Pointer to **int64** | Shows the sum of all browser RUM Lite Sessions over all hours in the current date for the given org. | [optional]
**RumTotalSessionCountSum** | Pointer to **int64** | Shows the sum of RUM Sessions (browser and mobile) over all hours in the current date for the given org. | [optional]
**RumUnitsSum** | Pointer to **int64** | Shows the sum of all browser and mobile RUM units over all hours in the current date for the given org. | [optional]
**SdsLogsScannedBytesSum** | Pointer to **int64** | Shows the sum of all bytes scanned of logs usage by the Sensitive Data Scanner over all hours in the current month for the given org. | [optional]
Expand Down
2 changes: 1 addition & 1 deletion api/v1/datadog/docs/UsageSummaryResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Name | Type | Description | Notes
**RehydratedIndexedEventsAggSum** | Pointer to **int64** | Shows the sum of all rehydrated logs indexed over all hours in the current months for all organizations (data available as of December 1, 2020). | [optional]
**RehydratedIngestedBytesAggSum** | Pointer to **int64** | Shows the sum of all rehydrated logs bytes ingested over all hours in the current months for all organizations (data available as of December 1, 2020). | [optional]
**RumBrowserAndMobileSessionCount** | Pointer to **int64** | Shows the sum of all mobile sessions and all browser lite and legacy sessions over all hours in the current month for all organizations. | [optional]
**RumSessionCountAggSum** | Pointer to **int64** | Shows the sum of all browser RUM Sessions over all hours in the current months for all organizations. | [optional]
**RumSessionCountAggSum** | Pointer to **int64** | Shows the sum of all browser RUM Lite Sessions over all hours in the current months for all organizations. | [optional]
**RumTotalSessionCountAggSum** | Pointer to **int64** | Shows the sum of RUM Sessions (browser and mobile) over all hours in the current months for all organizations. | [optional]
**RumUnitsAggSum** | Pointer to **int64** | Shows the sum of all browser and mobile RUM units over all hours in the current months for all organizations. | [optional]
**SdsLogsScannedBytesSum** | Pointer to **int64** | Shows the sum of all bytes scanned of logs usage by the Sensitive Data Scanner over all hours in the current month for all organizations. | [optional]
Expand Down
41 changes: 40 additions & 1 deletion api/v1/datadog/model_usage_rum_sessions_hour.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/v1/datadog/model_usage_summary_date.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/v1/datadog/model_usage_summary_date_org.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/v1/datadog/model_usage_summary_response.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.