Skip to content
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
30 changes: 30 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20700,6 +20700,11 @@ components:
hours in the current date for the given org.
format: int64
type: integer
apm_enterprise_standalone_hosts_top99p:
description: Shows the 99th percentile of all distinct standalone Enterprise
hosts over all hours in the current date for all organizations.
format: int64
type: integer
apm_fargate_count_avg:
description: Shows the average of all APM ECS Fargate tasks over all hours
in the current date for all organizations.
Expand All @@ -20710,6 +20715,11 @@ components:
hours in the current date for all organizations.
format: int64
type: integer
apm_pro_standalone_hosts_top99p:
description: Shows the 99th percentile of all distinct standalone Pro hosts
over all hours in the current date for all organizations.
format: int64
type: integer
appsec_fargate_count_avg:
description: Shows the average of all Application Security Monitoring ECS
Fargate tasks over all hours in the current date for all organizations.
Expand Down Expand Up @@ -21798,6 +21808,11 @@ components:
hours in the current date for the given org.
format: int64
type: integer
apm_enterprise_standalone_hosts_top99p:
description: Shows the 99th percentile of all distinct standalone Enterprise
hosts over all hours in the current date for the given org.
format: int64
type: integer
apm_fargate_count_avg:
description: Shows the average of all APM ECS Fargate tasks over all hours
in the current month for the given org.
Expand All @@ -21808,6 +21823,11 @@ components:
hours in the current date for the given org.
format: int64
type: integer
apm_pro_standalone_hosts_top99p:
description: Shows the 99th percentile of all distinct standalone Pro hosts
over all hours in the current date for the given org.
format: int64
type: integer
appsec_fargate_count_avg:
description: Shows the average of all Application Security Monitoring ECS
Fargate tasks over all hours in the current month for the given org.
Expand Down Expand Up @@ -22900,6 +22920,11 @@ components:
hours in the current month for all organizations.
format: int64
type: integer
apm_enterprise_standalone_hosts_top99p_sum:
description: Shows the sum of the 99th percentile of all distinct standalone
Enterprise hosts over all hours in the current month for all organizations.
format: int64
type: integer
apm_fargate_count_avg_sum:
description: Shows the average of all APM ECS Fargate tasks over all hours
in the current month for all organizations.
Expand All @@ -22910,6 +22935,11 @@ components:
hours in the current month for all organizations.
format: int64
type: integer
apm_pro_standalone_hosts_top99p_sum:
description: Shows the sum of the 99th percentile of all distinct standalone
Pro hosts over all hours in the current month for all organizations.
format: int64
type: integer
appsec_fargate_count_avg_sum:
description: Shows the average of all Application Security Monitoring ECS
Fargate tasks over all hours in the current month for all organizations.
Expand Down
18 changes: 18 additions & 0 deletions services/usage_metering/src/v1/models/UsageSummaryDate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ export class UsageSummaryDate {
* Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org.
*/
"apmDevsecopsHostTop99P"?: number;
/**
* Shows the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current date for all organizations.
*/
"apmEnterpriseStandaloneHostsTop99P"?: number;
/**
* Shows the average of all APM ECS Fargate tasks over all hours in the current date for all organizations.
*/
Expand All @@ -26,6 +30,10 @@ export class UsageSummaryDate {
* Shows the 99th percentile of all distinct APM hosts over all hours in the current date for all organizations.
*/
"apmHostTop99P"?: number;
/**
* Shows the 99th percentile of all distinct standalone Pro hosts over all hours in the current date for all organizations.
*/
"apmProStandaloneHostsTop99P"?: number;
/**
* Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current date for all organizations.
*/
Expand Down Expand Up @@ -848,6 +856,11 @@ export class UsageSummaryDate {
type: "number",
format: "int64",
},
apmEnterpriseStandaloneHostsTop99P: {
baseName: "apm_enterprise_standalone_hosts_top99p",
type: "number",
format: "int64",
},
apmFargateCountAvg: {
baseName: "apm_fargate_count_avg",
type: "number",
Expand All @@ -858,6 +871,11 @@ export class UsageSummaryDate {
type: "number",
format: "int64",
},
apmProStandaloneHostsTop99P: {
baseName: "apm_pro_standalone_hosts_top99p",
type: "number",
format: "int64",
},
appsecFargateCountAvg: {
baseName: "appsec_fargate_count_avg",
type: "number",
Expand Down
18 changes: 18 additions & 0 deletions services/usage_metering/src/v1/models/UsageSummaryDateOrg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ export class UsageSummaryDateOrg {
* Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org.
*/
"apmDevsecopsHostTop99P"?: number;
/**
* Shows the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current date for the given org.
*/
"apmEnterpriseStandaloneHostsTop99P"?: number;
/**
* Shows the average of all APM ECS Fargate tasks over all hours in the current month for the given org.
*/
Expand All @@ -32,6 +36,10 @@ export class UsageSummaryDateOrg {
* Shows the 99th percentile of all distinct APM hosts over all hours in the current date for the given org.
*/
"apmHostTop99P"?: number;
/**
* Shows the 99th percentile of all distinct standalone Pro hosts over all hours in the current date for the given org.
*/
"apmProStandaloneHostsTop99P"?: number;
/**
* Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current month for the given org.
*/
Expand Down Expand Up @@ -878,6 +886,11 @@ export class UsageSummaryDateOrg {
type: "number",
format: "int64",
},
apmEnterpriseStandaloneHostsTop99P: {
baseName: "apm_enterprise_standalone_hosts_top99p",
type: "number",
format: "int64",
},
apmFargateCountAvg: {
baseName: "apm_fargate_count_avg",
type: "number",
Expand All @@ -888,6 +901,11 @@ export class UsageSummaryDateOrg {
type: "number",
format: "int64",
},
apmProStandaloneHostsTop99P: {
baseName: "apm_pro_standalone_hosts_top99p",
type: "number",
format: "int64",
},
appsecFargateCountAvg: {
baseName: "appsec_fargate_count_avg",
type: "number",
Expand Down
18 changes: 18 additions & 0 deletions services/usage_metering/src/v1/models/UsageSummaryResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ export class UsageSummaryResponse {
* Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current month for all organizations.
*/
"apmDevsecopsHostTop99PSum"?: number;
/**
* Shows the sum of the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current month for all organizations.
*/
"apmEnterpriseStandaloneHostsTop99PSum"?: number;
/**
* Shows the average of all APM ECS Fargate tasks over all hours in the current month for all organizations.
*/
Expand All @@ -27,6 +31,10 @@ export class UsageSummaryResponse {
* Shows the 99th percentile of all distinct APM hosts over all hours in the current month for all organizations.
*/
"apmHostTop99PSum"?: number;
/**
* Shows the sum of the 99th percentile of all distinct standalone Pro hosts over all hours in the current month for all organizations.
*/
"apmProStandaloneHostsTop99PSum"?: number;
/**
* Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current month for all organizations.
*/
Expand Down Expand Up @@ -893,6 +901,11 @@ export class UsageSummaryResponse {
type: "number",
format: "int64",
},
apmEnterpriseStandaloneHostsTop99PSum: {
baseName: "apm_enterprise_standalone_hosts_top99p_sum",
type: "number",
format: "int64",
},
apmFargateCountAvgSum: {
baseName: "apm_fargate_count_avg_sum",
type: "number",
Expand All @@ -903,6 +916,11 @@ export class UsageSummaryResponse {
type: "number",
format: "int64",
},
apmProStandaloneHostsTop99PSum: {
baseName: "apm_pro_standalone_hosts_top99p_sum",
type: "number",
format: "int64",
},
appsecFargateCountAvgSum: {
baseName: "appsec_fargate_count_avg_sum",
type: "number",
Expand Down
Loading