File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
redisinsight/api/src/modules/database/models Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -4,60 +4,60 @@ export class DatabaseOverview {
4
4
@ApiProperty ( {
5
5
description : 'Redis database version' ,
6
6
type : String ,
7
- } )
7
+ } )
8
8
version : string ;
9
9
10
10
@ApiPropertyOptional ( {
11
11
description : 'Total number of bytes allocated by Redis primary shards' ,
12
12
type : Number ,
13
- } )
13
+ } )
14
14
usedMemory ?: number ;
15
15
16
16
@ApiPropertyOptional ( {
17
17
description : 'Total number of keys inside Redis primary shards' ,
18
18
type : Number ,
19
- } )
19
+ } )
20
20
totalKeys ?: number ;
21
21
22
22
@ApiPropertyOptional ( {
23
23
description : 'Nested object with total number of keys per logical database' ,
24
24
type : Number ,
25
- } )
25
+ } )
26
26
totalKeysPerDb ?: Record < string , number > ;
27
27
28
28
@ApiPropertyOptional ( {
29
29
description : 'Median for connected clients in the all shards' ,
30
30
type : Number ,
31
- } )
31
+ } )
32
32
connectedClients ?: number ;
33
33
34
34
@ApiPropertyOptional ( {
35
35
description : 'Sum of current commands per second in the all shards' ,
36
36
type : Number ,
37
- } )
37
+ } )
38
38
opsPerSecond ?: number ;
39
39
40
40
@ApiPropertyOptional ( {
41
41
description : 'Sum of current network input in the all shards (kbps)' ,
42
42
type : Number ,
43
- } )
43
+ } )
44
44
networkInKbps ?: number ;
45
45
46
46
@ApiPropertyOptional ( {
47
47
description : 'Sum of current network out in the all shards (kbps)' ,
48
48
type : Number ,
49
- } )
49
+ } )
50
50
networkOutKbps ?: number ;
51
51
52
52
@ApiPropertyOptional ( {
53
53
description : 'Sum of current cpu usage in the all shards (%)' ,
54
54
type : Number ,
55
- } )
55
+ } )
56
56
cpuUsagePercentage ?: number ;
57
57
58
58
@ApiProperty ( {
59
59
description : 'Database server name' ,
60
60
type : String ,
61
- } )
61
+ } )
62
62
serverName ?: string ;
63
63
}
You can’t perform that action at this time.
0 commit comments