Skip to content
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
96 changes: 96 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1345,6 +1345,50 @@ components:
type: string
x-enum-varnames:
- COHORT
ComparisonCustomTimeframe:
description: Fixed time range for a `custom_timeframe` comparison.
properties:
from:
description: Start time in milliseconds since epoch.
example: 1779290190000
format: int64
type: integer
to:
description: End time in milliseconds since epoch.
example: 1779894990000
format: int64
type: integer
required:
- from
- to
type: object
ComparisonDuration:
description: The comparison period. Use a preset `type` value or set `type` to `custom_timeframe` and provide `custom_timeframe` with explicit millisecond epoch bounds.
properties:
custom_timeframe:
$ref: "#/components/schemas/ComparisonCustomTimeframe"
description: Required when `type` is `custom_timeframe`. Fixed time range to compare against.
type:
$ref: "#/components/schemas/ComparisonDurationType"
required:
- type
type: object
ComparisonDurationType:
description: "The comparison window type."
enum:
- previous_timeframe
- custom_timeframe
- previous_day
- previous_week
- previous_month
example: previous_timeframe
type: string
x-enum-varnames:
- PREVIOUS_TIMEFRAME
- CUSTOM_TIMEFRAME
- PREVIOUS_DAY
- PREVIOUS_WEEK
- PREVIOUS_MONTH
ContentEncoding:
description: HTTP header used to compress the media-type.
enum:
Expand Down Expand Up @@ -12064,6 +12108,43 @@ components:
x-enum-varnames:
- ASC
- DESC
QueryValueWidgetComparison:
description: A change indicator that compares the current value to a historical period.
properties:
directionality:
$ref: "#/components/schemas/QueryValueWidgetComparisonDirectionality"
description: Which direction of change is considered an improvement, determining the indicator color.
duration:
$ref: "#/components/schemas/ComparisonDuration"
type:
$ref: "#/components/schemas/QueryValueWidgetComparisonType"
required:
- duration
type: object
QueryValueWidgetComparisonDirectionality:
default: neutral
description: "Color-coding direction: `increase_better` (green on rise), `decrease_better` (green on drop), or `neutral` (no color)."
enum:
- increase_better
- decrease_better
- neutral
type: string
x-enum-varnames:
- INCREASE_BETTER
- DECREASE_BETTER
- NEUTRAL
QueryValueWidgetComparisonType:
default: absolute
description: "How the delta is expressed: `absolute` (raw difference), `relative` (percentage), or `both`."
enum:
- absolute
- relative
- both
type: string
x-enum-varnames:
- ABSOLUTE
- RELATIVE
- BOTH
QueryValueWidgetDefinition:
description: Query values display the current value of a given metric, APM, or log query.
properties:
Expand Down Expand Up @@ -12135,6 +12216,9 @@ components:
$ref: "#/components/schemas/LogQueryDefinition"
deprecated: true
description: Deprecated - Use `queries` and `formulas` instead.
comparison:
$ref: "#/components/schemas/QueryValueWidgetComparison"
description: Displays a change indicator showing a delta against a historical baseline.
conditional_formats:
description: List of conditional formats.
items:
Expand Down Expand Up @@ -23207,6 +23291,10 @@ components:
description: Shows the average number of Serverless Apps for Azure Web App instances for the current date for all organizations.
format: int64
type: integer
serverless_apps_dsm_fargate_tasks_avg:
description: Shows the average number of DSM Fargate ECS tasks monitored under Serverless Apps DSM for the current date for all organizations.
format: int64
type: integer
serverless_apps_ecs_avg:
description: Shows the average number of Serverless Apps for Elastic Container Service for the current date for all organizations.
format: int64
Expand Down Expand Up @@ -24244,6 +24332,10 @@ components:
description: Shows the average number of Serverless Apps for Azure Web App instances for the given date and given org.
format: int64
type: integer
serverless_apps_dsm_fargate_tasks_avg:
description: Shows the average number of DSM Fargate ECS tasks monitored under Serverless Apps DSM for the given date and given org.
format: int64
type: integer
serverless_apps_ecs_avg:
description: Shows the average number of Serverless Apps for Elastic Container Service for the given date and given org.
format: int64
Expand Down Expand Up @@ -25299,6 +25391,10 @@ components:
description: Sum of the average number of Serverless Apps for Azure Web App instances in the current month for all organizations.
format: int64
type: integer
serverless_apps_dsm_fargate_tasks_avg_sum:
description: Sum of the average number of DSM Fargate ECS tasks monitored under Serverless Apps DSM in the current month for all organizations.
format: int64
type: integer
serverless_apps_ecs_avg_sum:
description: Sum of the average number of Serverless Apps for Elastic Container Service in the current month for all organizations.
format: int64
Expand Down
Loading
Loading