We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9deee71 commit bdfc9e4Copy full SHA for bdfc9e4
2 files changed
src/containers/Tablets/Tablets.tsx
@@ -11,6 +11,10 @@ interface TabletsProps {
11
path?: string;
12
database?: string;
13
nodeId?: string | number;
14
+ /**
15
+ * Show/hide dead tablets: shown in pages needing complete statistics,
16
+ * hidden in pages that already display multiple tablet generations to reduce visual noise.
17
+ */
18
onlyActive?: boolean;
19
}
20
src/services/api/viewer.ts
@@ -316,6 +316,10 @@ export class ViewerAPI extends BaseYdbAPI {
316
enums: true,
317
merge: false,
318
database,
319
320
321
322
323
filter: `(TabletId=${id};State!=Dead)`,
324
},
325
{
0 commit comments