From c733ed40fec8b332009ed2c6b45210622d1cc7a4 Mon Sep 17 00:00:00 2001 From: Joseph Vazhappilly Date: Tue, 22 Dec 2020 04:57:29 -0500 Subject: [PATCH] Update installer for the changed exporter path --- installer/install_delfin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/install_delfin.py b/installer/install_delfin.py index d55a73e33..d4070aa19 100644 --- a/installer/install_delfin.py +++ b/installer/install_delfin.py @@ -81,7 +81,7 @@ def start_processes(): # Start exporter server process proc_path = os.path.join(delfin_source_path, 'delfin', 'exporter', - 'exporter_server.py') + 'prometheus', 'exporter_server.py') command = 'python3 ' + proc_path + ' --config-file ' +\ conf_file + ' >' + DEVNULL + ' 2>&1 &' logger.info("Executing command [%s]", command)