Merge branch 'main' into leeoniya/lazy-react-query-builder

This commit is contained in:
Leon Sorokin
2025-11-07 07:54:07 -06:00
62 changed files with 1896 additions and 764 deletions
+5 -1
View File
@@ -565,10 +565,14 @@ export interface FeatureToggles {
*/
queryLibrary?: boolean;
/**
* Enable suggested dashboards when creating new dashboards
* Enable dashboard library experiments that are production ready
*/
dashboardLibrary?: boolean;
/**
* Enable suggested dashboards when creating new dashboards
*/
suggestedDashboards?: boolean;
/**
* Sets the logs table as default visualisation in logs explore
*/
logsExploreTableDefaultVisualization?: boolean;
+1
View File
@@ -162,6 +162,7 @@ export const availableIconsIndex = {
globe: true,
grafana: true,
'graph-bar': true,
'hand-pointer': true,
heart: true,
'heart-rate': true,
'heart-break': true,
@@ -247,7 +247,7 @@ export interface CloudWatchLogsQuery extends common.DataQuery {
*/
logGroups?: Array<LogGroup>;
/**
* Whether a query is a Logs Insights or Logs Anomalies query
* Whether a query is a Logs Insights or Log Anomalies query
*/
logsMode?: LogsMode;
/**
@@ -275,7 +275,7 @@ export const defaultCloudWatchLogsQuery: Partial<CloudWatchLogsQuery> = {
};
/**
* Shape of a Cloudwatch Logs Anomalies query
* Shape of a Cloudwatch Log Anomalies query
*/
export interface CloudWatchLogsAnomaliesQuery extends common.DataQuery {
/**
@@ -284,7 +284,7 @@ export interface CloudWatchLogsAnomaliesQuery extends common.DataQuery {
anomalyDetectionARN?: string;
id: string;
/**
* Whether a query is a Logs Insights or Logs Anomalies query
* Whether a query is a Logs Insights or Log Anomalies query
*/
logsMode?: LogsMode;
/**