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

Update docs for RU Rollout New and Deprecated Keys planned for Oct 1st #2544

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.6.6",
"regenerated": "2024-06-26 17:58:27.325217",
"spec_repo_commit": "bad4ef97"
"regenerated": "2024-06-27 17:06:16.982006",
"spec_repo_commit": "5ebef994"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-06-26 17:58:27.343333",
"spec_repo_commit": "bad4ef97"
"regenerated": "2024-06-27 17:06:17.000191",
"spec_repo_commit": "5ebef994"
}
}
}
531 changes: 442 additions & 89 deletions .generator/schemas/v1/openapi.yaml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions api/datadogV1/model_monthly_usage_attribution_values.go
Original file line number Diff line number Diff line change
Expand Up @@ -246,9 +246,9 @@ type MonthlyUsageAttributionValues struct {
RumBrowserMobileSessionsPercentage *float64 `json:"rum_browser_mobile_sessions_percentage,omitempty"`
// The total RUM Browser and Mobile usage by tag(s).
RumBrowserMobileSessionsUsage *float64 `json:"rum_browser_mobile_sessions_usage,omitempty"`
// The percentage of RUM Replay Sessions usage by tag(s).
// The percentage of RUM Session Replay usage by tag(s).
RumReplaySessionsPercentage *float64 `json:"rum_replay_sessions_percentage,omitempty"`
// The total RUM Replay Sessions usage by tag(s).
// The total RUM Session Replay usage by tag(s).
RumReplaySessionsUsage *float64 `json:"rum_replay_sessions_usage,omitempty"`
// The percentage of Sensitive Data Scanner usage by tag(s).
SdsScannedBytesPercentage *float64 `json:"sds_scanned_bytes_percentage,omitempty"`
Expand Down
14 changes: 7 additions & 7 deletions api/datadogV1/model_usage_rum_sessions_hour.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,25 @@ import (
"github.com/DataDog/datadog-api-client-go/v2/api/datadog"
)

// UsageRumSessionsHour Number of RUM Sessions recorded for each hour for a given organization.
// UsageRumSessionsHour Number of RUM sessions recorded for each hour for a given organization.
type UsageRumSessionsHour struct {
// The hour for the usage.
Hour *time.Time `json:"hour,omitempty"`
// The organization name.
OrgName *string `json:"org_name,omitempty"`
// The organization public ID.
PublicId *string `json:"public_id,omitempty"`
// Contains the number of RUM Replay Sessions (data available beginning November 1, 2021).
// Contains the number of RUM Session Replay counts (data available beginning November 1, 2021).
ReplaySessionCount *int64 `json:"replay_session_count,omitempty"`
// Contains the number of browser RUM Lite Sessions.
// Contains the number of browser RUM lite Sessions.
SessionCount datadog.NullableInt64 `json:"session_count,omitempty"`
// Contains the number of mobile RUM Sessions on Android (data available beginning December 1, 2020).
// Contains the number of mobile RUM sessions on Android (data available beginning December 1, 2020).
SessionCountAndroid datadog.NullableInt64 `json:"session_count_android,omitempty"`
// Contains the number of mobile RUM Sessions on Flutter (data available beginning March 1, 2023).
// Contains the number of mobile RUM sessions on Flutter (data available beginning March 1, 2023).
SessionCountFlutter datadog.NullableInt64 `json:"session_count_flutter,omitempty"`
// Contains the number of mobile RUM Sessions on iOS (data available beginning December 1, 2020).
// Contains the number of mobile RUM sessions on iOS (data available beginning December 1, 2020).
SessionCountIos datadog.NullableInt64 `json:"session_count_ios,omitempty"`
// Contains the number of mobile RUM Sessions on React Native (data available beginning May 1, 2022).
// Contains the number of mobile RUM sessions on React Native (data available beginning May 1, 2022).
SessionCountReactnative datadog.NullableInt64 `json:"session_count_reactnative,omitempty"`
// UnparsedObject contains the raw value of the object if there was an error when deserializing into the struct
UnparsedObject map[string]interface{} `json:"-"`
Expand Down
4 changes: 2 additions & 2 deletions api/datadogV1/model_usage_rum_sessions_response.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"github.com/DataDog/datadog-api-client-go/v2/api/datadog"
)

// UsageRumSessionsResponse Response containing the number of RUM Sessions for each hour for a given organization.
// UsageRumSessionsResponse Response containing the number of RUM sessions for each hour for a given organization.
type UsageRumSessionsResponse struct {
// Get hourly usage for RUM Sessions.
// Get hourly usage for RUM sessions.
Usage []UsageRumSessionsHour `json:"usage,omitempty"`
// UnparsedObject contains the raw value of the object if there was an error when deserializing into the struct
UnparsedObject map[string]interface{} `json:"-"`
Expand Down
613 changes: 595 additions & 18 deletions api/datadogV1/model_usage_summary_date.go

Large diffs are not rendered by default.

619 changes: 600 additions & 19 deletions api/datadogV1/model_usage_summary_date_org.go

Large diffs are not rendered by default.

631 changes: 610 additions & 21 deletions api/datadogV1/model_usage_summary_response.go

Large diffs are not rendered by default.

Loading