Skip to content

Commit

Permalink
convert initial VM connectivy check to a warning
Browse files Browse the repository at this point in the history
Signed-off-by: Karl W. Schulz <karl.schulz@amd.com>
  • Loading branch information
koomie committed Jan 27, 2025
1 parent 0367948 commit 62b4ec7
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions omnistat/standalone.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,8 @@ def __init__(self, args, config):
time.sleep(delay)

if failed:
logging.error("")
logging.error("[ERROR]: Unable to access VictoriaMetrics server endpoint (%s)" % self.__victoriaURL)
logging.error("[ERROR]: Please verify server is running and accessible from this host.")
logging.error("")
sys.exit(1)
logging.warning("[WARN]: Unable to access VictoriaMetrics server endpoint (%s)" % self.__victoriaURL)
logging.warning("[WARN]: Please verify server is running and accessible from this host.")

logging.info("Cached data will be pushed every %i minute(s)" % self.__pushFrequencyMins)

Expand Down

0 comments on commit 62b4ec7

Please sign in to comment.