Skip to content

Commit e2722ed

Browse files
#RI-6363 - fix pr comments
1 parent 3affc23 commit e2722ed

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

redisinsight/api/src/modules/database/models/database-overview.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,60 +4,60 @@ export class DatabaseOverview {
44
@ApiProperty({
55
description: 'Redis database version',
66
type: String,
7-
})
7+
})
88
version: string;
99

1010
@ApiPropertyOptional({
1111
description: 'Total number of bytes allocated by Redis primary shards',
1212
type: Number,
13-
})
13+
})
1414
usedMemory?: number;
1515

1616
@ApiPropertyOptional({
1717
description: 'Total number of keys inside Redis primary shards',
1818
type: Number,
19-
})
19+
})
2020
totalKeys?: number;
2121

2222
@ApiPropertyOptional({
2323
description: 'Nested object with total number of keys per logical database',
2424
type: Number,
25-
})
25+
})
2626
totalKeysPerDb?: Record<string, number>;
2727

2828
@ApiPropertyOptional({
2929
description: 'Median for connected clients in the all shards',
3030
type: Number,
31-
})
31+
})
3232
connectedClients?: number;
3333

3434
@ApiPropertyOptional({
3535
description: 'Sum of current commands per second in the all shards',
3636
type: Number,
37-
})
37+
})
3838
opsPerSecond?: number;
3939

4040
@ApiPropertyOptional({
4141
description: 'Sum of current network input in the all shards (kbps)',
4242
type: Number,
43-
})
43+
})
4444
networkInKbps?: number;
4545

4646
@ApiPropertyOptional({
4747
description: 'Sum of current network out in the all shards (kbps)',
4848
type: Number,
49-
})
49+
})
5050
networkOutKbps?: number;
5151

5252
@ApiPropertyOptional({
5353
description: 'Sum of current cpu usage in the all shards (%)',
5454
type: Number,
55-
})
55+
})
5656
cpuUsagePercentage?: number;
5757

5858
@ApiProperty({
5959
description: 'Database server name',
6060
type: String,
61-
})
61+
})
6262
serverName?: string;
6363
}

0 commit comments

Comments
 (0)