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 rum doc to include new usage types #2641

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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": "2025-01-13 17:10:06.419911",
"spec_repo_commit": "be17a7b8"
"regenerated": "2025-01-13 18:28:02.734157",
"spec_repo_commit": "3517c947"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-01-13 17:10:06.435212",
"spec_repo_commit": "be17a7b8"
"regenerated": "2025-01-13 18:28:02.749067",
"spec_repo_commit": "3517c947"
}
}
}
53 changes: 49 additions & 4 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20269,7 +20269,7 @@ components:
type: integer
profiling_host_top99p:
description: Shows the 99th percentile of all profiled hosts over all hours
in the current date for all organizations.
within the current date for all organizations.
format: int64
type: integer
rum_browser_and_mobile_session_count:
Expand Down Expand Up @@ -20358,10 +20358,25 @@ components:
type: integer
rum_mobile_lite_session_count_roku_sum:
description: Shows the sum of all mobile RUM lite sessions on Roku over
all hours in the current date for all organizations (To be introduced
all hours within the current date for all organizations (To be introduced
on October 1st, 2024).
format: int64
type: integer
rum_mobile_replay_session_count_android_sum:
description: Shows the sum of all mobile RUM replay sessions on Android
over all hours within the current date for the given org.
format: int64
type: integer
rum_mobile_replay_session_count_ios_sum:
description: Shows the sum of all mobile RUM replay sessions on iOS over
all hours within the current date for the given org.
format: int64
type: integer
rum_mobile_replay_session_count_reactnative_sum:
description: Shows the sum of all mobile RUM replay sessions on React Native
over all hours within the current date for the given org.
format: int64
type: integer
rum_replay_session_count_sum:
description: Shows the sum of all RUM Session Replay counts over all hours
in the current date for all organizations (To be introduced on October
Expand Down Expand Up @@ -21122,7 +21137,7 @@ components:
type: integer
profiling_host_top99p:
description: Shows the 99th percentile of all profiled hosts over all hours
in the current date for the given org.
within the current date for the given org.
format: int64
type: integer
public_id:
Expand Down Expand Up @@ -21221,6 +21236,21 @@ components:
1st, 2024).
format: int64
type: integer
rum_mobile_replay_session_count_android_sum:
description: Shows the sum of all mobile RUM replay sessions on Android
over all hours within the current date for the given org.
format: int64
type: integer
rum_mobile_replay_session_count_ios_sum:
description: Shows the sum of all mobile RUM replay sessions on iOS over
all hours within the current date for the given org.
format: int64
type: integer
rum_mobile_replay_session_count_reactnative_sum:
description: Shows the sum of all mobile RUM replay sessions on React Native
over all hours within the current date for the given org.
format: int64
type: integer
rum_replay_session_count_sum:
description: Shows the sum of all RUM Session Replay counts over all hours
in the current date for the given org (To be introduced on October 1st,
Expand Down Expand Up @@ -22109,10 +22139,25 @@ components:
type: integer
rum_mobile_lite_session_count_roku_agg_sum:
description: Shows the sum of all mobile RUM lite sessions on Roku over
all hours in the current month for all organizations (To be introduced
all hours within the current month for all organizations (To be introduced
on October 1st, 2024).
format: int64
type: integer
rum_mobile_replay_session_count_android_agg_sum:
description: Shows the sum of all mobile RUM replay sessions on Android
over all hours within the current month for all organizations.
format: int64
type: integer
rum_mobile_replay_session_count_ios_agg_sum:
description: Shows the sum of all mobile RUM replay sessions on iOS over
all hours within the current month for all organizations.
format: int64
type: integer
rum_mobile_replay_session_count_reactnative_agg_sum:
description: Shows the sum of all mobile RUM replay sessions on React Native
over all hours within the current month for all organizations.
format: int64
type: integer
rum_replay_session_count_agg_sum:
description: Shows the sum of all RUM Session Replay counts over all hours
in the current month for all organizations (To be introduced on October
Expand Down
112 changes: 109 additions & 3 deletions src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,9 @@
UsageSummaryDate.JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_IOS_SUM,
UsageSummaryDate.JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_REACTNATIVE_SUM,
UsageSummaryDate.JSON_PROPERTY_RUM_MOBILE_LITE_SESSION_COUNT_ROKU_SUM,
UsageSummaryDate.JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_ANDROID_SUM,
UsageSummaryDate.JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_IOS_SUM,
UsageSummaryDate.JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_REACTNATIVE_SUM,
UsageSummaryDate.JSON_PROPERTY_RUM_REPLAY_SESSION_COUNT_SUM,
UsageSummaryDate.JSON_PROPERTY_RUM_SESSION_COUNT_SUM,
UsageSummaryDate.JSON_PROPERTY_RUM_TOTAL_SESSION_COUNT_SUM,
Expand Down Expand Up @@ -648,6 +651,18 @@ public class UsageSummaryDate {
"rum_mobile_lite_session_count_roku_sum";
private Long rumMobileLiteSessionCountRokuSum;

public static final String JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_ANDROID_SUM =
"rum_mobile_replay_session_count_android_sum";
private Long rumMobileReplaySessionCountAndroidSum;

public static final String JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_IOS_SUM =
"rum_mobile_replay_session_count_ios_sum";
private Long rumMobileReplaySessionCountIosSum;

public static final String JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_REACTNATIVE_SUM =
"rum_mobile_replay_session_count_reactnative_sum";
private Long rumMobileReplaySessionCountReactnativeSum;

public static final String JSON_PROPERTY_RUM_REPLAY_SESSION_COUNT_SUM =
"rum_replay_session_count_sum";
private Long rumReplaySessionCountSum;
Expand Down Expand Up @@ -3348,7 +3363,7 @@ public UsageSummaryDate profilingHostTop99p(Long profilingHostTop99p) {
}

/**
* Shows the 99th percentile of all profiled hosts over all hours in the current date for all
* Shows the 99th percentile of all profiled hosts over all hours within the current date for all
* organizations.
*
* @return profilingHostTop99p
Expand Down Expand Up @@ -3688,8 +3703,8 @@ public UsageSummaryDate rumMobileLiteSessionCountRokuSum(Long rumMobileLiteSessi
}

/**
* Shows the sum of all mobile RUM lite sessions on Roku over all hours in the current date for
* all organizations (To be introduced on October 1st, 2024).
* Shows the sum of all mobile RUM lite sessions on Roku over all hours within the current date
* for all organizations (To be introduced on October 1st, 2024).
*
* @return rumMobileLiteSessionCountRokuSum
*/
Expand All @@ -3704,6 +3719,76 @@ public void setRumMobileLiteSessionCountRokuSum(Long rumMobileLiteSessionCountRo
this.rumMobileLiteSessionCountRokuSum = rumMobileLiteSessionCountRokuSum;
}

public UsageSummaryDate rumMobileReplaySessionCountAndroidSum(
Long rumMobileReplaySessionCountAndroidSum) {
this.rumMobileReplaySessionCountAndroidSum = rumMobileReplaySessionCountAndroidSum;
return this;
}

/**
* Shows the sum of all mobile RUM replay sessions on Android over all hours within the current
* date for the given org.
*
* @return rumMobileReplaySessionCountAndroidSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_ANDROID_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getRumMobileReplaySessionCountAndroidSum() {
return rumMobileReplaySessionCountAndroidSum;
}

public void setRumMobileReplaySessionCountAndroidSum(Long rumMobileReplaySessionCountAndroidSum) {
this.rumMobileReplaySessionCountAndroidSum = rumMobileReplaySessionCountAndroidSum;
}

public UsageSummaryDate rumMobileReplaySessionCountIosSum(
Long rumMobileReplaySessionCountIosSum) {
this.rumMobileReplaySessionCountIosSum = rumMobileReplaySessionCountIosSum;
return this;
}

/**
* Shows the sum of all mobile RUM replay sessions on iOS over all hours within the current date
* for the given org.
*
* @return rumMobileReplaySessionCountIosSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_IOS_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getRumMobileReplaySessionCountIosSum() {
return rumMobileReplaySessionCountIosSum;
}

public void setRumMobileReplaySessionCountIosSum(Long rumMobileReplaySessionCountIosSum) {
this.rumMobileReplaySessionCountIosSum = rumMobileReplaySessionCountIosSum;
}

public UsageSummaryDate rumMobileReplaySessionCountReactnativeSum(
Long rumMobileReplaySessionCountReactnativeSum) {
this.rumMobileReplaySessionCountReactnativeSum = rumMobileReplaySessionCountReactnativeSum;
return this;
}

/**
* Shows the sum of all mobile RUM replay sessions on React Native over all hours within the
* current date for the given org.
*
* @return rumMobileReplaySessionCountReactnativeSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_RUM_MOBILE_REPLAY_SESSION_COUNT_REACTNATIVE_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getRumMobileReplaySessionCountReactnativeSum() {
return rumMobileReplaySessionCountReactnativeSum;
}

public void setRumMobileReplaySessionCountReactnativeSum(
Long rumMobileReplaySessionCountReactnativeSum) {
this.rumMobileReplaySessionCountReactnativeSum = rumMobileReplaySessionCountReactnativeSum;
}

public UsageSummaryDate rumReplaySessionCountSum(Long rumReplaySessionCountSum) {
this.rumReplaySessionCountSum = rumReplaySessionCountSum;
return this;
Expand Down Expand Up @@ -4535,6 +4620,15 @@ public boolean equals(Object o) {
&& Objects.equals(
this.rumMobileLiteSessionCountRokuSum,
usageSummaryDate.rumMobileLiteSessionCountRokuSum)
&& Objects.equals(
this.rumMobileReplaySessionCountAndroidSum,
usageSummaryDate.rumMobileReplaySessionCountAndroidSum)
&& Objects.equals(
this.rumMobileReplaySessionCountIosSum,
usageSummaryDate.rumMobileReplaySessionCountIosSum)
&& Objects.equals(
this.rumMobileReplaySessionCountReactnativeSum,
usageSummaryDate.rumMobileReplaySessionCountReactnativeSum)
&& Objects.equals(this.rumReplaySessionCountSum, usageSummaryDate.rumReplaySessionCountSum)
&& Objects.equals(this.rumSessionCountSum, usageSummaryDate.rumSessionCountSum)
&& Objects.equals(this.rumTotalSessionCountSum, usageSummaryDate.rumTotalSessionCountSum)
Expand Down Expand Up @@ -4714,6 +4808,9 @@ public int hashCode() {
rumMobileLiteSessionCountIosSum,
rumMobileLiteSessionCountReactnativeSum,
rumMobileLiteSessionCountRokuSum,
rumMobileReplaySessionCountAndroidSum,
rumMobileReplaySessionCountIosSum,
rumMobileReplaySessionCountReactnativeSum,
rumReplaySessionCountSum,
rumSessionCountSum,
rumTotalSessionCountSum,
Expand Down Expand Up @@ -5063,6 +5160,15 @@ public String toString() {
sb.append(" rumMobileLiteSessionCountRokuSum: ")
.append(toIndentedString(rumMobileLiteSessionCountRokuSum))
.append("\n");
sb.append(" rumMobileReplaySessionCountAndroidSum: ")
.append(toIndentedString(rumMobileReplaySessionCountAndroidSum))
.append("\n");
sb.append(" rumMobileReplaySessionCountIosSum: ")
.append(toIndentedString(rumMobileReplaySessionCountIosSum))
.append("\n");
sb.append(" rumMobileReplaySessionCountReactnativeSum: ")
.append(toIndentedString(rumMobileReplaySessionCountReactnativeSum))
.append("\n");
sb.append(" rumReplaySessionCountSum: ")
.append(toIndentedString(rumReplaySessionCountSum))
.append("\n");
Expand Down
Loading
Loading