File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,30 @@ Check if loki is running
2626 Should Be Equal As Integers ${rc } 0
2727 Should Contain ${output } active
2828
29+ Check if prometheus is running
30+ ${output } ${rc } = Execute Command runagent -m ${module_id } systemctl --user is-active prometheus.service
31+ ... return_rc=True
32+ Should Be Equal As Integers ${rc } 0
33+ Should Contain ${output } active
34+
35+ Check if promtail is running
36+ ${output } ${rc } = Execute Command runagent -m ${module_id } systemctl --user is-active promtail.service
37+ ... return_rc=True
38+ Should Be Equal As Integers ${rc } 0
39+ Should Contain ${output } active
40+
41+ Check if webssh is running
42+ ${output } ${rc } = Execute Command runagent -m ${module_id } systemctl --user is-active webssh.service
43+ ... return_rc=True
44+ Should Be Equal As Integers ${rc } 0
45+ Should Contain ${output } active
46+
47+ Check if timescale is running
48+ ${output } ${rc } = Execute Command runagent -m ${module_id } systemctl --user is-active timescale.service
49+ ... return_rc=True
50+ Should Be Equal As Integers ${rc } 0
51+ Should Contain ${output } active
52+
2953Check health endpoint
3054 Wait Until Keyword Succeeds 60 times 10 seconds Check API Health
3155
You can’t perform that action at this time.
0 commit comments