import logging # General settings LOG_LEVEL = logging.INFO # gRPC settings GRPC_SERVICE_PORT = 10100 GRPC_MAX_WORKERS = 200 # multiple clients might keep connections alive for Get*Events() RPC methods GRPC_GRACE_PERIOD = 60 # REST-API settings RESTAPI_SERVICE_PORT = 8080 RESTAPI_BASE_URL = '/api' # Prometheus settings METRICS_PORT = 9192 # Autopopulate the component with fake data for testing purposes? POPULATE_FAKE_DATA = False