@yugabytedb/perf-advisor-ui 1.0.93 → 1.0.95

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.ts CHANGED
@@ -470,6 +470,7 @@ declare enum RuntimeConfigType {
470
470
  DURATION = "DURATION"
471
471
  }
472
472
  interface AnomalyInstance {
473
+ description?: string;
473
474
  detectionTime: string;
474
475
  endTime: string;
475
476
  entityDisplayName: string;
@@ -719,6 +720,19 @@ interface TransformedNodeLoadData {
719
720
  totalEpsRatio: number;
720
721
  universeId: string;
721
722
  }
723
+ interface PaFeatureRuntimeConfigs {
724
+ showDbLoadView: boolean;
725
+ showBgTasksView: boolean;
726
+ }
727
+ interface AnomalyPossibleCauseData {
728
+ observation: string;
729
+ possibleCauses: AnomalyPossibleCauseItem[];
730
+ }
731
+ interface AnomalyPossibleCauseItem {
732
+ possibleCause: string;
733
+ possibleCauseDescription: string;
734
+ troubleshootingRecommendations: string[];
735
+ }
722
736
 
723
737
  interface MetricsAnalysisEntryProps {
724
738
  universeUuid: string;
@@ -740,11 +754,12 @@ interface PerfAdvisorEntryProps {
740
754
  appName: AppName;
741
755
  apiUrl: string;
742
756
  showStandaloneAnomalies?: boolean;
757
+ runtimeConfigs?: PaFeatureRuntimeConfigs;
743
758
  onSelectedIssue?: (troubleshootUuid: string, params?: PAUrlParams) => void;
744
759
  onSelectedQuery?: (queryId: string, params?: QueryPageParams) => void;
745
760
  onNavigateToUrl?: (url: string) => void;
746
761
  }
747
- declare const PerfAdvisorEntry: ({ timezone, universeUuid, appName, apiUrl, showStandaloneAnomalies, onSelectedIssue, onSelectedQuery, onNavigateToUrl }: PerfAdvisorEntryProps) => JSX.Element;
762
+ declare const PerfAdvisorEntry: ({ timezone, universeUuid, appName, apiUrl, runtimeConfigs, showStandaloneAnomalies, onSelectedIssue, onSelectedQuery, onNavigateToUrl }: PerfAdvisorEntryProps) => JSX.Element;
748
763
 
749
764
  interface TroubleshootConfigurationProps {
750
765
  apiUrl: string;
@@ -1398,4 +1413,4 @@ interface YBThemeWrapperProps {
1398
1413
  */
1399
1414
  declare const YBThemeWrapper: React.FC<YBThemeWrapperProps>;
1400
1415
 
1401
- export { ACTIVE_SESSION_HISOTRY_EPS_CLIENT_NODE, ACTIVE_SESSION_HISTORY_EPS_GLOBAL, ACTIVE_SESSION_HISTORY_QUERY_EVENTS, ADD_COLUMNS_BUTTON_TEXT, ALL, ALL_REGIONS, ALL_ZONES, ANOMALY_CATEGORY_LIST, ANOMALY_FILTER_DURATION_OPTIONS, ANOMALY_TAG, ANOMALY_TYPE_TO_NAME_MAP, ASH, AggregatedLineSettings, Aggregation, Anomaly, AnomalyCategory, AnomalyDetails, AnomalyDetectionStatus, AnomalyDetectionStatusText, AnomalyGroup, AnomalyInstance, AnomalyResponse, AnomalyType, AnomalyTypeFilter, AppName, AttachUniversePayload, AuthDetails, BACKGROUND_QUERY_REQUEST_GRAPHS, BackgroundJobCategory, BackgroundTask, BackgroundTaskGroup, BackgroundTasksResponse, CATALOG_READ_REQUEST_GRAPH, CATEGORY_HEADER_DATA_MAP, COLORS, CORES, CPU_CORES, CPU_COUNT, CPU_TEXT, CQL_QUERY_REQUEST_GRAPHS, ChartType, ClusterLoadOverallTabs, ClusterLoadResponseData, ClusterLoadSubTabs, ClusterNodeInfo, ClusterNodeListMetadata, ClusterRegionSelector, Column, ConfigureUniverseMetadata, DB_CAPS_TAG, DB_TAG, DB_TYPE_TAG, DB_WAIT_EVENT_TYPE_MAPPING, DEFAULT_ERROR_MESSAGES, DEFAULT_RECORDS_PER_PAGE, ELLIPSIS, FormattedAnomalyRca, GLOBAL_RUNTIME_CONFIG, GROUP_BY_OPERATIONS, GROUP_BY_OPERATIONS_LABELS, GraphAxisData, GraphFilters, GraphMetadata, GraphRequestParams, GraphResponse, GraphSettings, GraphType, GroupEventsParam, HISTORICAL_QUERY_DATA_LABELS, IN_DEVELOPMENT_MODE, IO_TEXT, InsightsTabs, Interval, MAX_OUTLIER_NUM_NODES, METRICS_OUTLIER_DATABASES_STORAGE_KEY, METRICS_OUTLIER_TABLES_STORAGE_KEY, METRICS_SESSION_STORAGE_KEY, METRIC_DB_RESOURCES_WITH_GRAPHS, METRIC_FONT, METRIC_MEASURE_TEXT, METRIC_NAMES, METRIC_RESOURCES_WITH_GRAPHS, METRIC_TABLES_RESOURCES_WITH_GRAPHS, METRIC_TABS, METRIC_TABS_DATABASES, METRIC_TABS_TABLES, MIN_OUTLIER_NUM_NODES, MORE, MetadataFields, MetricConsts, MetricMeasure, MetricOrigin, MetricSplitSelector, MetricsAnalysisEntry, MetricsAnalysisEntryProps, NAME_COLOR_MAPPING, NodeData, NodeDataCloudInfo, NodeDataMetrics, NodeDetails, NodeInfo, NodeState, OutlierSelector, PAUrlParams, PagedStatsResponse, PerfAdvisorAPI, PerfAdvisorEntry, PrimaryDashboardViewTabs, QUERIES, QUERY_DETAILS, QUERY_KEY, QUERY_TAG, QUERY_TYPE_TAG, QueryEvents, QueryPageParams, QueryType, QueryTypeMode, QueryWaitEvents, RCAGuideline, RCA_GANT_CHART, REACT_APP_API_URL, REGION_TAG, REGION_ZONE_TAG, RUNTIME_CONFIG_KEYS, Resources, RowItemClasses$1 as RowItemClasses, RuntimeConfigData, RuntimeConfigType, RuntimeConfigs, SQL_QUERY_REQUEST_GRAPHS, SortDirection, SplitMode, SplitType, SqlDrilldownTabs, SqlTabs, TABLET_ID_TAG, TABLET_TAG, TABLE_REQUEST_GRAPHS, TABLE_TAG, TIME_FILTER_LABEL, TIME_FILTER_VALUES, TOOLTIP_TEXT, TPFeatureFlags, TYPE, TableInfo, TablePageParams, TabletResponseMetadata, TabletTabs, TransformedBackgroundTasksCategory, TransformedBackgroundTasksResponse, TransformedData, TransformedDbLoadData, TransformedNodeLoadData, TransformedTabletsData, TroubleshootingRecommendations, URL_TAB_PATH, USER_TAG, Universe, UniverseConfig, UniverseDatabaseStatsData, UniverseMetadataFields, UniverseQueryData, UniverseQueryStatsData, UpdateMetadataFormFields, UpdateRuntimeConfigFormFields, UrlParams, VIEW_MORE, VISIBLE_DB_LOAD_METADATA_COLUMNS, VISIBLE_NODE_LOAD_METADATA_COLUMNS, VISIBLE_QUERY_METADATA_COLUMNS, VISIBLE_TABLETS_METADATA_COLUMNS, VISIBLE_TABLET_DRILLDOWN_METADATA_COLUMNS, WaitEventClassification, YBCheckboxField, YBErrorIndicator, YBInfinitePagination, YBInputField, YBPanelItem, YBThemeWrapper, YBToggleField, YSQL_COLUMNS, ZONE_TAG, ZoneNodeSelector, filterDurations, getCustomFooterComponent, getRowCellComponent, isDefinedNotNull, isEmptyArray, isEmptyObject, isEmptyString, isNonEmptyArray, isNonEmptyObject, isNonEmptyString, isNullOrEmpty, isValidObject, isYAxisGreaterThanThousand, metricOutlierSelectors, metricSplitSelectors, otherSplitSelectors, queryTypeSelectors, removeNullProperties, useCodeBlockStyles };
1416
+ export { ACTIVE_SESSION_HISOTRY_EPS_CLIENT_NODE, ACTIVE_SESSION_HISTORY_EPS_GLOBAL, ACTIVE_SESSION_HISTORY_QUERY_EVENTS, ADD_COLUMNS_BUTTON_TEXT, ALL, ALL_REGIONS, ALL_ZONES, ANOMALY_CATEGORY_LIST, ANOMALY_FILTER_DURATION_OPTIONS, ANOMALY_TAG, ANOMALY_TYPE_TO_NAME_MAP, ASH, AggregatedLineSettings, Aggregation, Anomaly, AnomalyCategory, AnomalyDetails, AnomalyDetectionStatus, AnomalyDetectionStatusText, AnomalyGroup, AnomalyInstance, AnomalyPossibleCauseData, AnomalyPossibleCauseItem, AnomalyResponse, AnomalyType, AnomalyTypeFilter, AppName, AttachUniversePayload, AuthDetails, BACKGROUND_QUERY_REQUEST_GRAPHS, BackgroundJobCategory, BackgroundTask, BackgroundTaskGroup, BackgroundTasksResponse, CATALOG_READ_REQUEST_GRAPH, CATEGORY_HEADER_DATA_MAP, COLORS, CORES, CPU_CORES, CPU_COUNT, CPU_TEXT, CQL_QUERY_REQUEST_GRAPHS, ChartType, ClusterLoadOverallTabs, ClusterLoadResponseData, ClusterLoadSubTabs, ClusterNodeInfo, ClusterNodeListMetadata, ClusterRegionSelector, Column, ConfigureUniverseMetadata, DB_CAPS_TAG, DB_TAG, DB_TYPE_TAG, DB_WAIT_EVENT_TYPE_MAPPING, DEFAULT_ERROR_MESSAGES, DEFAULT_RECORDS_PER_PAGE, ELLIPSIS, FormattedAnomalyRca, GLOBAL_RUNTIME_CONFIG, GROUP_BY_OPERATIONS, GROUP_BY_OPERATIONS_LABELS, GraphAxisData, GraphFilters, GraphMetadata, GraphRequestParams, GraphResponse, GraphSettings, GraphType, GroupEventsParam, HISTORICAL_QUERY_DATA_LABELS, IN_DEVELOPMENT_MODE, IO_TEXT, InsightsTabs, Interval, MAX_OUTLIER_NUM_NODES, METRICS_OUTLIER_DATABASES_STORAGE_KEY, METRICS_OUTLIER_TABLES_STORAGE_KEY, METRICS_SESSION_STORAGE_KEY, METRIC_DB_RESOURCES_WITH_GRAPHS, METRIC_FONT, METRIC_MEASURE_TEXT, METRIC_NAMES, METRIC_RESOURCES_WITH_GRAPHS, METRIC_TABLES_RESOURCES_WITH_GRAPHS, METRIC_TABS, METRIC_TABS_DATABASES, METRIC_TABS_TABLES, MIN_OUTLIER_NUM_NODES, MORE, MetadataFields, MetricConsts, MetricMeasure, MetricOrigin, MetricSplitSelector, MetricsAnalysisEntry, MetricsAnalysisEntryProps, NAME_COLOR_MAPPING, NodeData, NodeDataCloudInfo, NodeDataMetrics, NodeDetails, NodeInfo, NodeState, OutlierSelector, PAUrlParams, PaFeatureRuntimeConfigs, PagedStatsResponse, PerfAdvisorAPI, PerfAdvisorEntry, PrimaryDashboardViewTabs, QUERIES, QUERY_DETAILS, QUERY_KEY, QUERY_TAG, QUERY_TYPE_TAG, QueryEvents, QueryPageParams, QueryType, QueryTypeMode, QueryWaitEvents, RCAGuideline, RCA_GANT_CHART, REACT_APP_API_URL, REGION_TAG, REGION_ZONE_TAG, RUNTIME_CONFIG_KEYS, Resources, RowItemClasses$1 as RowItemClasses, RuntimeConfigData, RuntimeConfigType, RuntimeConfigs, SQL_QUERY_REQUEST_GRAPHS, SortDirection, SplitMode, SplitType, SqlDrilldownTabs, SqlTabs, TABLET_ID_TAG, TABLET_TAG, TABLE_REQUEST_GRAPHS, TABLE_TAG, TIME_FILTER_LABEL, TIME_FILTER_VALUES, TOOLTIP_TEXT, TPFeatureFlags, TYPE, TableInfo, TablePageParams, TabletResponseMetadata, TabletTabs, TransformedBackgroundTasksCategory, TransformedBackgroundTasksResponse, TransformedData, TransformedDbLoadData, TransformedNodeLoadData, TransformedTabletsData, TroubleshootingRecommendations, URL_TAB_PATH, USER_TAG, Universe, UniverseConfig, UniverseDatabaseStatsData, UniverseMetadataFields, UniverseQueryData, UniverseQueryStatsData, UpdateMetadataFormFields, UpdateRuntimeConfigFormFields, UrlParams, VIEW_MORE, VISIBLE_DB_LOAD_METADATA_COLUMNS, VISIBLE_NODE_LOAD_METADATA_COLUMNS, VISIBLE_QUERY_METADATA_COLUMNS, VISIBLE_TABLETS_METADATA_COLUMNS, VISIBLE_TABLET_DRILLDOWN_METADATA_COLUMNS, WaitEventClassification, YBCheckboxField, YBErrorIndicator, YBInfinitePagination, YBInputField, YBPanelItem, YBThemeWrapper, YBToggleField, YSQL_COLUMNS, ZONE_TAG, ZoneNodeSelector, filterDurations, getCustomFooterComponent, getRowCellComponent, isDefinedNotNull, isEmptyArray, isEmptyObject, isEmptyString, isNonEmptyArray, isNonEmptyObject, isNonEmptyString, isNullOrEmpty, isValidObject, isYAxisGreaterThanThousand, metricOutlierSelectors, metricSplitSelectors, otherSplitSelectors, queryTypeSelectors, removeNullProperties, useCodeBlockStyles };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yugabytedb/perf-advisor-ui",
3
- "version": "1.0.93",
3
+ "version": "1.0.95",
4
4
  "main": "dist/cjs/index.js",
5
5
  "types": "dist/types.d.ts",
6
6
  "author": "Rajagopalan Madhavan",