File tree Expand file tree Collapse file tree 1 file changed +35
-11
lines changed Expand file tree Collapse file tree 1 file changed +35
-11
lines changed Original file line number Diff line number Diff line change @@ -52,53 +52,77 @@ Repeater {
52
52
53
53
text: qsTr (" Redis Version" )
54
54
font .pointSize : 12
55
- color: " grey"
55
+ color: " grey"
56
56
}
57
57
58
- Label { id: redisVersionLabel; text: " N/A" ; font .pointSize : 12 }
58
+ Label {
59
+ id: redisVersionLabel
60
+ text: " N/A"
61
+ font .pointSize : 12
62
+ objectName: " rdm_server_info_redis_version"
63
+ }
59
64
60
65
Text {
61
66
Layout .preferredWidth : tab .width / 5
62
67
63
68
text: qsTr (" Used memory" )
64
69
font .pointSize : 12
65
- color: " grey"
70
+ color: " grey"
66
71
}
67
72
68
- Label { id: usedMemoryLabel; text: " N/A" ; font .pointSize : 12 }
73
+ Label {
74
+ id: usedMemoryLabel;
75
+ text: " N/A" ;
76
+ font .pointSize : 12
77
+ objectName: " rdm_server_info_used_memory"
78
+ }
69
79
70
80
Text {
71
81
Layout .preferredWidth : tab .width / 5
72
82
73
83
text: qsTr (" Clients" )
74
84
font .pointSize : 12
75
- color: " grey"
85
+ color: " grey"
76
86
}
77
87
78
- Label { id: connectedClientsLabel; text: " N/A" ; font .pointSize : 12 }
88
+ Label {
89
+ id: connectedClientsLabel;
90
+ text: " N/A" ;
91
+ font .pointSize : 12
92
+ objectName: " rdm_server_info_clients"
93
+ }
79
94
80
95
Text {
81
96
Layout .preferredWidth : tab .width / 5
82
97
83
98
text: qsTr (" Commands Processed" )
84
99
font .pointSize : 12
85
100
color: " grey"
86
- wrapMode: Text .WordWrap
101
+ wrapMode: Text .WordWrap
87
102
}
88
103
89
- Label { id: totalCommandsProcessedLabel; text: " N/A" ; font .pointSize : 12 }
104
+ Label {
105
+ id: totalCommandsProcessedLabel;
106
+ text: " N/A" ;
107
+ font .pointSize : 12
108
+ objectName: " rdm_server_info_cmd_processed"
109
+ }
90
110
91
111
92
112
Text {
93
113
Layout .preferredWidth : tab .width / 5
94
114
95
115
text: qsTr (" Uptime" )
96
116
font .pointSize : 12
97
- color: " grey"
117
+ color: " grey"
98
118
}
99
119
100
- Label { id: uptimeLabel; text: " N/A" ; font .pointSize : 12 }
101
-
120
+ Label {
121
+ id: uptimeLabel;
122
+ text: " N/A" ;
123
+ font .pointSize : 12
124
+ objectName: " rdm_server_info_uptime"
125
+ }
102
126
103
127
Connections {
104
128
target: tab .model ? tab .model : null
You can’t perform that action at this time.
0 commit comments