File tree Expand file tree Collapse file tree 6 files changed +31
-16
lines changed Expand file tree Collapse file tree 6 files changed +31
-16
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,11 @@ import {EFlag} from './enums';
22import { TEndpoint , TLegacyNodeLocation , TPoolStats } from './nodes' ;
33import { TMetrics } from './tenant' ;
44
5- // endpoint: viewer/json/compute
6- // source: https://github.com/ydb-platform/ydb/blob/main/ydb/core/viewer/protos/viewer.proto
7-
5+ /**
6+ * endpoint: viewer/json/compute
7+ *
8+ * source: https://github.com/ydb-platform/ydb/blob/main/ydb/core/viewer/protos/viewer.proto
9+ */
810export interface TComputeInfo {
911 Overall : EFlag ;
1012 Tenants ?: TComputeTenantInfo [ ] ;
Original file line number Diff line number Diff line change @@ -3,9 +3,11 @@ import {TPDiskStateInfo} from './pdisk';
33import { TTabletStateInfo } from './tablet' ;
44import { TVDiskStateInfo } from './vdisk' ;
55
6- // endpoint: /viewer/json/nodes
7- // source: https://github.com/ydb-platform/ydb/blob/main/ydb/core/viewer/protos/viewer.proto
8-
6+ /**
7+ * endpoint: /viewer/json/nodes
8+ *
9+ * source: https://github.com/ydb-platform/ydb/blob/main/ydb/core/viewer/protos/viewer.proto
10+ */
911export interface TNodesInfo {
1012 Overall ?: EFlag ;
1113 Nodes ?: TNodeInfo [ ] ;
Original file line number Diff line number Diff line change 11import { EFlag } from './enums' ;
22
3- // endpoint: /viewer/json/pdiskinfo
4- // source: https://github.com/ydb-platform/ydb/blob/main/ydb/core/protos/node_whiteboard.proto
5-
3+ /**
4+ * endpoint: /viewer/json/pdiskinfo
5+ *
6+ * source: https://github.com/ydb-platform/ydb/blob/main/ydb/core/protos/node_whiteboard.proto
7+ */
68export interface TPDiskStateInfo {
79 PDiskId ?: number ;
810 /** uint64 */
Original file line number Diff line number Diff line change 11import { EFlag } from './enums' ;
22import { TVDiskStateInfo } from './vdisk' ;
33
4- // endpoint: /viewer/json/storage
5- // source: https://github.com/ydb-platform/ydb/blob/main/ydb/core/viewer/protos/viewer.proto
6-
4+ /**
5+ * endpoint: /viewer/json/storage
6+ *
7+ * source: https://github.com/ydb-platform/ydb/blob/main/ydb/core/viewer/protos/viewer.proto
8+ */
79export interface TStorageInfo {
810 Overall ?: EFlag ;
911 StoragePools ?: TStoragePoolInfo [ ] ;
Original file line number Diff line number Diff line change @@ -3,14 +3,19 @@ import {TPoolStats, TSystemStateInfo} from './nodes';
33import { TTabletStateInfo } from './tablet' ;
44
55/**
6- * endpoint: /viewer/json/tenantinfo
6+ * endpoint: /viewer/json/tenants
77 *
88 * source: https://github.com/ydb-platform/ydb/blob/main/ydb/core/viewer/protos/viewer.proto
99 */
1010export interface TTenants {
1111 Tenants ?: TTenant [ ] ;
1212}
1313
14+ /**
15+ * endpoint: /viewer/json/tenantinfo
16+ *
17+ * source: https://github.com/ydb-platform/ydb/blob/main/ydb/core/viewer/protos/viewer.proto
18+ */
1419export interface TTenantInfo {
1520 TenantInfo ?: TTenant [ ] ;
1621 Errors ?: string [ ] ;
Original file line number Diff line number Diff line change 11import { EFlag } from './enums' ;
22import { TPDiskStateInfo } from './pdisk' ;
33
4- // endpoint: /viewer/json/vdiskinfo
5- // source: https://github.com/ydb-platform/ydb/blob/main/ydb/core/protos/node_whiteboard.proto
6-
4+ /**
5+ * endpoint: /viewer/json/vdiskinfo
6+ *
7+ * source: https://github.com/ydb-platform/ydb/blob/main/ydb/core/protos/node_whiteboard.proto
8+ */
79export interface TVDiskStateInfo {
810 VDiskId ?: TVDiskID ;
911 /** uint64 */
You can’t perform that action at this time.
0 commit comments