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
14 changes: 14 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4306,6 +4306,7 @@ components:
- estimated_indexed_spans_usage
- estimated_ingested_spans_usage
- fargate_usage
- flex_stored_logs
- functions_usage
- incident_management_monthly_active_users_usage
- indexed_spans_usage
Expand Down Expand Up @@ -4387,6 +4388,7 @@ components:
- ESTIMATED_INDEXED_SPANS_USAGE
- ESTIMATED_INGESTED_SPANS_USAGE
- FARGATE_USAGE
- FLEX_STORED_LOGS
- FUNCTIONS_USAGE
- INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE
- INDEXED_SPANS_USAGE
Expand Down Expand Up @@ -8740,6 +8742,8 @@ components:
- estimated_ingested_spans_percentage
- fargate_usage
- fargate_percentage
- flex_stored_logs_usage
- flex_stored_logs_percentage
- functions_usage
- functions_percentage
- incident_management_monthly_active_users_usage
Expand Down Expand Up @@ -8897,6 +8901,8 @@ components:
- ESTIMATED_INGESTED_SPANS_PERCENTAGE
- FARGATE_USAGE
- FARGATE_PERCENTAGE
- FLEX_STORED_LOGS_USAGE
- FLEX_STORED_LOGS_PERCENTAGE
- FUNCTIONS_USAGE
- FUNCTIONS_PERCENTAGE
- INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE
Expand Down Expand Up @@ -9256,6 +9262,14 @@ components:
description: The Fargate usage by tags.
format: double
type: number
flex_stored_logs_percentage:
description: The percentage of Flex Stored Logs usage by tag(s).
format: double
type: number
flex_stored_logs_usage:
description: The Flex Stored Logs usage by tag(s).
format: double
type: number
functions_percentage:
description: The percentage of Lambda function usage by tag(s).
format: double
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export type HourlyUsageAttributionUsageType =
| typeof ESTIMATED_INDEXED_SPANS_USAGE
| typeof ESTIMATED_INGESTED_SPANS_USAGE
| typeof FARGATE_USAGE
| typeof FLEX_STORED_LOGS
| typeof FUNCTIONS_USAGE
| typeof INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE
| typeof INDEXED_SPANS_USAGE
Expand Down Expand Up @@ -122,6 +123,7 @@ export const ERROR_TRACKING_PERCENTAGE = "error_tracking_percentage";
export const ESTIMATED_INDEXED_SPANS_USAGE = "estimated_indexed_spans_usage";
export const ESTIMATED_INGESTED_SPANS_USAGE = "estimated_ingested_spans_usage";
export const FARGATE_USAGE = "fargate_usage";
export const FLEX_STORED_LOGS = "flex_stored_logs";
export const FUNCTIONS_USAGE = "functions_usage";
export const INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE =
"incident_management_monthly_active_users_usage";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ export type MonthlyUsageAttributionSupportedMetrics =
| typeof ESTIMATED_INGESTED_SPANS_PERCENTAGE
| typeof FARGATE_USAGE
| typeof FARGATE_PERCENTAGE
| typeof FLEX_STORED_LOGS_USAGE
| typeof FLEX_STORED_LOGS_PERCENTAGE
| typeof FUNCTIONS_USAGE
| typeof FUNCTIONS_PERCENTAGE
| typeof INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE
Expand Down Expand Up @@ -225,6 +227,8 @@ export const ESTIMATED_INGESTED_SPANS_PERCENTAGE =
"estimated_ingested_spans_percentage";
export const FARGATE_USAGE = "fargate_usage";
export const FARGATE_PERCENTAGE = "fargate_percentage";
export const FLEX_STORED_LOGS_USAGE = "flex_stored_logs_usage";
export const FLEX_STORED_LOGS_PERCENTAGE = "flex_stored_logs_percentage";
export const FUNCTIONS_USAGE = "functions_usage";
export const FUNCTIONS_PERCENTAGE = "functions_percentage";
export const INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,14 @@ export class MonthlyUsageAttributionValues {
* The Fargate usage by tags.
*/
"fargateUsage"?: number;
/**
* The percentage of Flex Stored Logs usage by tag(s).
*/
"flexStoredLogsPercentage"?: number;
/**
* The Flex Stored Logs usage by tag(s).
*/
"flexStoredLogsUsage"?: number;
/**
* The percentage of Lambda function usage by tag(s).
*/
Expand Down Expand Up @@ -928,6 +936,16 @@ export class MonthlyUsageAttributionValues {
type: "number",
format: "double",
},
flexStoredLogsPercentage: {
baseName: "flex_stored_logs_percentage",
type: "number",
format: "double",
},
flexStoredLogsUsage: {
baseName: "flex_stored_logs_usage",
type: "number",
format: "double",
},
functionsPercentage: {
baseName: "functions_percentage",
type: "number",
Expand Down
3 changes: 3 additions & 0 deletions services/usage_metering/src/v1/models/TypingInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ export const TypingInfo: ModelTypingInfo = {
"estimated_indexed_spans_usage",
"estimated_ingested_spans_usage",
"fargate_usage",
"flex_stored_logs",
"functions_usage",
"incident_management_monthly_active_users_usage",
"indexed_spans_usage",
Expand Down Expand Up @@ -235,6 +236,8 @@ export const TypingInfo: ModelTypingInfo = {
"estimated_ingested_spans_percentage",
"fargate_usage",
"fargate_percentage",
"flex_stored_logs_usage",
"flex_stored_logs_percentage",
"functions_usage",
"functions_percentage",
"incident_management_monthly_active_users_usage",
Expand Down