Logging handler to send logs to your OpenSearch cluster with bulk SSL. Forked from https://github.com/logzio/logzio-python-handler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
152 B

  1. # Modules imported only once, this is effectively a singleton
  2. class LogsList:
  3. def __init__(self):
  4. self.list = []
  5. logs_list = LogsList()