@yugabytedb/perf-advisor-ui 1.0.47 → 1.0.48
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/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/types.d.ts +1 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -538,7 +538,6 @@ interface ClusterLoadResponseData {
|
|
|
538
538
|
interface MetricsAnalysisEntryProps {
|
|
539
539
|
universeUuid: string;
|
|
540
540
|
troubleshootUuid: string | null;
|
|
541
|
-
shouldAnalyzeTopK?: boolean;
|
|
542
541
|
universeData: Universe | ClusterNodeInfo;
|
|
543
542
|
appName: AppName;
|
|
544
543
|
timezone?: string;
|
|
@@ -546,7 +545,7 @@ interface MetricsAnalysisEntryProps {
|
|
|
546
545
|
onSelectedIssue?: (troubleshootUuid: string | null, params?: TPUrlParams) => void;
|
|
547
546
|
onSelectedQuery?: (queryId: string | null, params?: QueryPageParams) => void;
|
|
548
547
|
}
|
|
549
|
-
declare const MetricsAnalysisEntry: ({ universeUuid, troubleshootUuid, universeData, appName, timezone, apiUrl,
|
|
548
|
+
declare const MetricsAnalysisEntry: ({ universeUuid, troubleshootUuid, universeData, appName, timezone, apiUrl, onSelectedIssue, onSelectedQuery }: MetricsAnalysisEntryProps) => JSX.Element;
|
|
550
549
|
|
|
551
550
|
interface PerfAdvisorEntryProps {
|
|
552
551
|
timezone?: string;
|