Skip to content

Commit 6776750

Browse files
authored
Merge pull request #492 from stardom3645/ablestack-diplo-hwryu-2025
[Netdive][버그] netdive 서비스 재시작 안되는 버그 수정
2 parents 298017f + 5078338 commit 6776750

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

python/url/create_address.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ def wallCenter(action, H=False):
7373

7474
if action == 'wallCenter':
7575
try:
76-
# 클라우드센터
76+
# 모니터링센터
7777
value = "https://"+ip+":8081/login"
78-
request = requests.get(value, verify=False, timeout=3)
78+
request = requests.get(value, verify=False, timeout=3)
7979

8080
except:
8181
# http 접속되지않는 경우

src/features/wall-monitoring-wizard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ function resetWallMonitoringWizard() {
411411
var netdive_config_result = JSON.parse(data);
412412
if(netdive_config_result.code=="200") { //정상
413413
//=========== 1-3. 모니터링 서비스 전체 종료 ===========
414-
var wall_service_stop_cmd = ['python3', pythonPath + 'start_services.py', 'stop', '--service', 'blackbox-exporter', 'node-exporter', 'grafana-server', 'process-exporter', 'prometheus', 'netdive-analyzer'];
414+
var wall_service_stop_cmd = ['python3', pythonPath + 'start_services.py', 'stop', '--service', 'blackbox-exporter', 'node-exporter', 'grafana-server', 'process-exporter', 'prometheus'];
415415
if (console_log) { console.log(wall_service_stop_cmd); }
416416
cockpit.spawn(wall_service_stop_cmd, { host: ccvm_ip })
417417
.then(function (data) {

0 commit comments

Comments
 (0)