2023-04-19 14:21:55 +08:00
|
|
|
# Copyright 2023 Memgraph Ltd.
|
2021-10-26 14:53:56 +08:00
|
|
|
#
|
|
|
|
# Use of this software is governed by the Business Source License
|
|
|
|
# included in the file licenses/BSL.txt; by using this file, you agree to be bound by the terms of the Business Source
|
|
|
|
# License, and you may not use this file except in compliance with the Business Source License.
|
|
|
|
#
|
|
|
|
# As of the Change Date specified in that file, in accordance with
|
|
|
|
# the Business Source License, use of this software will be governed
|
|
|
|
# by the Apache License, Version 2.0, included in the file
|
|
|
|
# licenses/APL.txt.
|
|
|
|
|
2023-03-22 04:44:11 +08:00
|
|
|
import logging
|
2023-10-06 16:19:29 +08:00
|
|
|
from typing import Dict
|
|
|
|
|
|
|
|
from constants import (
|
|
|
|
COUNT,
|
|
|
|
CPU,
|
|
|
|
DATABASE,
|
|
|
|
DOCKER,
|
|
|
|
DURATION,
|
|
|
|
IMPORT,
|
|
|
|
ITERATIONS,
|
|
|
|
LATENCY_STATS,
|
|
|
|
MEMORY,
|
|
|
|
METADATA,
|
|
|
|
RETRIES,
|
|
|
|
RUN_CONFIGURATION,
|
|
|
|
THROUGHPUT,
|
|
|
|
)
|
2023-03-22 04:44:11 +08:00
|
|
|
|
2020-09-23 00:55:28 +08:00
|
|
|
COLOR_GRAY = 0
|
|
|
|
COLOR_RED = 1
|
|
|
|
COLOR_GREEN = 2
|
|
|
|
COLOR_YELLOW = 3
|
|
|
|
COLOR_BLUE = 4
|
|
|
|
COLOR_VIOLET = 5
|
|
|
|
COLOR_CYAN = 6
|
2023-03-22 04:44:11 +08:00
|
|
|
COLOR_WHITE = 7
|
|
|
|
|
|
|
|
|
|
|
|
logger = logging.Logger("mgbench_logger")
|
|
|
|
file_handler = logging.FileHandler("mgbench_logs.log")
|
|
|
|
file_format = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s")
|
|
|
|
file_handler.setFormatter(file_format)
|
|
|
|
logger.addHandler(file_handler)
|
2020-09-23 00:55:28 +08:00
|
|
|
|
|
|
|
|
2023-03-22 04:44:11 +08:00
|
|
|
def _log(color, *args):
|
2020-09-23 00:55:28 +08:00
|
|
|
print("\033[1;3{}m~~".format(color), *args, "~~\033[0m")
|
|
|
|
|
|
|
|
|
2023-03-22 04:44:11 +08:00
|
|
|
def log(msg):
|
2023-04-19 14:21:55 +08:00
|
|
|
print(str(msg))
|
2023-03-22 04:44:11 +08:00
|
|
|
logger.info(msg=msg)
|
|
|
|
|
|
|
|
|
2020-09-23 00:55:28 +08:00
|
|
|
def init(*args):
|
2023-03-22 04:44:11 +08:00
|
|
|
_log(COLOR_BLUE, *args)
|
|
|
|
logger.info(*args)
|
2020-09-23 00:55:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
def info(*args):
|
2023-03-22 04:44:11 +08:00
|
|
|
_log(COLOR_WHITE, *args)
|
|
|
|
logger.info(*args)
|
2020-09-23 00:55:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
def success(*args):
|
2023-03-22 04:44:11 +08:00
|
|
|
_log(COLOR_GREEN, *args)
|
|
|
|
logger.info(*args)
|
2020-09-23 00:55:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
def warning(*args):
|
2023-03-22 04:44:11 +08:00
|
|
|
_log(COLOR_YELLOW, *args)
|
|
|
|
logger.warning(*args)
|
2020-09-23 00:55:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
def error(*args):
|
2023-03-22 04:44:11 +08:00
|
|
|
_log(COLOR_RED, *args)
|
|
|
|
logger.critical(*args)
|
2023-04-19 14:21:55 +08:00
|
|
|
|
|
|
|
|
|
|
|
def summary(*args):
|
|
|
|
_log(COLOR_CYAN, *args)
|
|
|
|
logger.info(*args)
|