DFIRKuiper / Kuiper

Digital Forensics Investigation Platform
738 stars 110 forks source link

Docker Windows Install #59

Open Epod opened 2 years ago

Epod commented 2 years ago

Greetings,

I am wondering if there is any guidance on using Kuiper on a docker server hosted on WSL2 (windows).

Everything boots fine except the nfs share container. Errors like "exportnfs - nfs not supported" on that container.

Is there any direction that you might be able to point me to for modifying the container to work on a WSL2 environment?

salehmuhaysin commented 2 years ago

Hi, I did not try to use it in Windows.

regarding the nfs, you could avoid using nfs by removing the nfs service from docker--compose.yaml, and change the volumes kuiper_nfs and kuiper_nfs_files to use local file, the idea of nfs is to link the service flask and celery since both services require access to the same files

Epod commented 2 years ago

For some reason with Windows, when accessing the web UI, it returns a 403 error.

I get prompted to trust the self sign cert like normal, but afterwards I get a 403.

I have only seen this behavior on Windows.

to kuiper_nginx, kuiper_flask, kuiper_celery, kuiper_mongodb, kuiper_es01, kuiper_redis
celery_1 | Traceback (most recent call last):
celery_1 |   File "/usr/local/lib/python2.7/runpy.py", line 174, in _run_module_as_main
celery_1 |     "__main__", fname, loader, pkg_name)
celery_1 |   File "/usr/local/lib/python2.7/runpy.py", line 72, in _run_code
celery_1 |     exec code in run_globals
celery_1 |   File "/usr/local/lib/python2.7/site-packages/celery/__main__.py", line 20, in <module>
celery_1 |     main()
celery_1 |   File "/usr/local/lib/python2.7/site-packages/celery/__main__.py", line 16, in main
celery_1 |     _main()
celery_1 |   File "/usr/local/lib/python2.7/site-packages/celery/bin/celery.py", line 322, in main
celery_1 |     cmd.execute_from_commandline(argv)
celery_1 |   File "/usr/local/lib/python2.7/site-packages/celery/bin/celery.py", line 496, in execute_from_commandline
celery_1 |     super(CeleryCommand, self).execute_from_commandline(argv)))
celery_1 |   File "/usr/local/lib/python2.7/site-packages/celery/bin/base.py", line 288, in execute_from_commandline
celery_1 |     argv = self.setup_app_from_commandline(argv)
celery_1 |   File "/usr/local/lib/python2.7/site-packages/celery/bin/base.py", line 502, in setup_app_from_commandline
celery_1 |     self.app = self.find_app(app)
celery_1 |   File "/usr/local/lib/python2.7/site-packages/celery/bin/base.py", line 524, in find_app
celery_1 |     return find_app(app, symbol_by_name=self.symbol_by_name)
celery_1 |   File "/usr/local/lib/python2.7/site-packages/celery/app/utils.py", line 368, in find_app
celery_1 |     sym = symbol_by_name(app, imp=imp)
celery_1 |   File "/usr/local/lib/python2.7/site-packages/celery/bin/base.py", line 527, in symbol_by_name
celery_1 |     return imports.symbol_by_name(name, imp=imp)
celery_1 |   File "/usr/local/lib/python2.7/site-packages/kombu/utils/imports.py", line 57, in symbol_by_name
celery_1 |     module = imp(module_name, package=package, **kwargs)
celery_1 |   File "/usr/local/lib/python2.7/site-packages/celery/utils/imports.py", line 111, in import_from_cwd
celery_1 |     return imp(module, package=package)
celery_1 |   File "/usr/local/lib/python2.7/importlib/__init__.py", line 37, in import_module
celery_1 |     __import__(name)
celery_1 |   File "/app/app/__init__.py", line 176, in <module>
celery_1 |     from controllers import case_management,admin_management,API_management
celery_1 |   File "/app/app/controllers/case_management.py", line 22, in <module>
celery_1 |     import parser_management
celery_1 |   File "/app/app/controllers/parser_management.py", line 22, in <module>
celery_1 |     from app.database.dbstuff import *
celery_1 |   File "/app/app/database/dbstuff.py", line 889, in <module>
celery_1 |     db_cases    = get_db_cases()    # get case database
celery_1 |   File "/app/app/database/dbstuff.py", line 352, in get_db_cases
celery_1 |     return DB_Cases()
celery_1 |   File "/app/app/database/dbstuff.py", line 145, in __init__
celery_1 |     db_m = MClient[DB_NAME]
celery_1 | TypeError: 'NoneType' object has no attribute '__getitem__'
celery_1 | /usr/local/lib/python2.7/site-packages/celery/platforms.py:801: RuntimeWarning: You're running the worker with superuser privileges: this is
celery_1 | absolutely not recommended!
celery_1 | 
celery_1 | Please specify a different user using the --uid option.
celery_1 | 
celery_1 | User information: uid=0 euid=0 gid=0 egid=0
celery_1 | 
celery_1 |   uid=uid, euid=euid, gid=gid, egid=egid,
celery_1 | [2022-06-08 15:37:36,493: INFO/MainProcess] Connected to redis://redis:6379//
celery_1 | [2022-06-08 15:37:36,498: INFO/MainProcess] mingle: searching for neighbors
celery_1 | [2022-06-08 15:37:37,509: INFO/MainProcess] mingle: all alone
celery_1 | [2022-06-08 15:37:37,517: INFO/MainProcess] kuiper@a92038cd234c ready.
flask_1 | [2022-06-08 15:37:33 +0000] [9] [INFO] Starting gunicorn 19.4.5
flask_1 | [2022-06-08 15:37:33 +0000] [9] [INFO] Listening at: http://0.0.0.0:5000 (9)
flask_1 | [2022-06-08 15:37:33 +0000] [9] [INFO] Using worker: gevent
flask_1 | [2022-06-08 15:37:33 +0000] [13] [INFO] Booting worker with pid: 13
flask_1 | [2022-06-08 15:37:33 +0000] [14] [INFO] Booting worker with pid: 14
flask_1 | [2022-06-08 15:37:33 +0000] [15] [INFO] Booting worker with pid: 15
flask_1 | [2022-06-08 15:37:33 +0000] [16] [INFO] Booting worker with pid: 16
flask_1 | [2022-06-08 15:37:34 +0000] [14] [ERROR] Exception in worker process:
flask_1 | Traceback (most recent call last):
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/arbiter.py", line 515, in spawn_worker
flask_1 |     worker.init_process()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/ggevent.py", line 201, in init_process
flask_1 |     super(GeventWorker, self).init_process()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/base.py", line 122, in init_process
flask_1 |     self.load_wsgi()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/base.py", line 130, in load_wsgi
flask_1 |     self.wsgi = self.app.wsgi()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
flask_1 |     self.callable = self.load()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
flask_1 |     return self.load_wsgiapp()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
flask_1 |     return util.import_app(self.app_uri)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/util.py", line 357, in import_app
flask_1 |     __import__(module)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/Kuiper.py", line 3, in <module>
flask_1 |     from app import app
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/__init__.py", line 176, in <module>
flask_1 |     from controllers import case_management,admin_management,API_management
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/controllers/case_management.py", line 22, in <module>
flask_1 |     import parser_management
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/controllers/parser_management.py", line 22, in <module>
flask_1 |     from app.database.dbstuff import *
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/database/dbstuff.py", line 891, in <module>
flask_1 |     db_files    = get_db_files()    # get files databse
flask_1 |   File "/app/app/database/dbstuff.py", line 875, in get_db_files
flask_1 |     return DB_Files()
flask_1 |   File "/app/app/database/dbstuff.py", line 673, in __init__
flask_1 |     db_m.create_collection('files')
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 241, in create_collection
flask_1 |     return Collection(self, name, **opts)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/collection.py", line 120, in __init__
flask_1 |     self.__create(kwargs)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/collection.py", line 134, in __create
flask_1 |     read_preference=ReadPreference.PRIMARY)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 439, in command
flask_1 |     uuid_subtype, compile_re, **kwargs)[0]
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 345, in _command
flask_1 |     msg, allowable_errors)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/helpers.py", line 182, in _check_command_response
flask_1 |     raise OperationFailure(msg % errmsg, code, response)
flask_1 | OperationFailure: command SON([('create', u'files')]) on namespace Kuiper.$cmd failed: a collection 'Kuiper.files' already exists
flask_1 | Traceback (most recent call last):
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/arbiter.py", line 515, in spawn_worker
flask_1 |     worker.init_process()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/ggevent.py", line 201, in init_process
flask_1 |     super(GeventWorker, self).init_process()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/base.py", line 122, in init_process
flask_1 |     self.load_wsgi()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/base.py", line 130, in load_wsgi
flask_1 |     self.wsgi = self.app.wsgi()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
flask_1 |     self.callable = self.load()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
flask_1 |     return self.load_wsgiapp()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
flask_1 |     return util.import_app(self.app_uri)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/util.py", line 357, in import_app
flask_1 |     __import__(module)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/Kuiper.py", line 3, in <module>
flask_1 |     from app import app
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/__init__.py", line 176, in <module>
flask_1 |     from controllers import case_management,admin_management,API_management
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/controllers/case_management.py", line 22, in <module>
flask_1 |     import parser_management
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/controllers/parser_management.py", line 22, in <module>
flask_1 |     from app.database.dbstuff import *
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/database/dbstuff.py", line 891, in <module>
flask_1 |     db_files    = get_db_files()    # get files databse
flask_1 |   File "/app/app/database/dbstuff.py", line 875, in get_db_files
flask_1 |     return DB_Files()
flask_1 |   File "/app/app/database/dbstuff.py", line 673, in __init__
flask_1 |     db_m.create_collection('files')
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 241, in create_collection
flask_1 |     return Collection(self, name, **opts)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/collection.py", line 120, in __init__
flask_1 |     self.__create(kwargs)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/collection.py", line 134, in __create
flask_1 |     read_preference=ReadPreference.PRIMARY)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 439, in command
flask_1 |     uuid_subtype, compile_re, **kwargs)[0]
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 345, in _command
flask_1 |     msg, allowable_errors)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/helpers.py", line 182, in _check_command_response
flask_1 |     raise OperationFailure(msg % errmsg, code, response)
flask_1 | OperationFailure: command SON([('create', u'files')]) on namespace Kuiper.$cmd failed: a collection 'Kuiper.files' already exists
flask_1 | [2022-06-08 15:37:34 +0000] [15] [ERROR] Exception in worker process:
flask_1 | Traceback (most recent call last):
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/arbiter.py", line 515, in spawn_worker
flask_1 |     worker.init_process()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/ggevent.py", line 201, in init_process
flask_1 |     super(GeventWorker, self).init_process()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/base.py", line 122, in init_process
flask_1 |     self.load_wsgi()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/base.py", line 130, in load_wsgi
flask_1 |     self.wsgi = self.app.wsgi()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
flask_1 |     self.callable = self.load()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
flask_1 |     return self.load_wsgiapp()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
flask_1 |     return util.import_app(self.app_uri)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/util.py", line 357, in import_app
flask_1 |     __import__(module)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/Kuiper.py", line 3, in <module>
flask_1 |     from app import app
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/__init__.py", line 176, in <module>
flask_1 |     from controllers import case_management,admin_management,API_management
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/controllers/case_management.py", line 22, in <module>
flask_1 |     import parser_management
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/controllers/parser_management.py", line 22, in <module>
flask_1 |     from app.database.dbstuff import *
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/database/dbstuff.py", line 891, in <module>
flask_1 |     db_files    = get_db_files()    # get files databse
flask_1 |   File "/app/app/database/dbstuff.py", line 875, in get_db_files
flask_1 |     return DB_Files()
flask_1 |   File "/app/app/database/dbstuff.py", line 673, in __init__
flask_1 |     db_m.create_collection('files')
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 241, in create_collection
flask_1 |     return Collection(self, name, **opts)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/collection.py", line 120, in __init__
flask_1 |     self.__create(kwargs)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/collection.py", line 134, in __create
flask_1 |     read_preference=ReadPreference.PRIMARY)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 439, in command
flask_1 |     uuid_subtype, compile_re, **kwargs)[0]
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 345, in _command
flask_1 |     msg, allowable_errors)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/helpers.py", line 182, in _check_command_response
flask_1 |     raise OperationFailure(msg % errmsg, code, response)
flask_1 | OperationFailure: command SON([('create', u'files')]) on namespace Kuiper.$cmd failed: a collection 'Kuiper.files' already exists
flask_1 | Traceback (most recent call last):
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/arbiter.py", line 515, in spawn_worker
flask_1 |     worker.init_process()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/ggevent.py", line 201, in init_process
flask_1 |     super(GeventWorker, self).init_process()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/base.py", line 122, in init_process
flask_1 |     self.load_wsgi()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/base.py", line 130, in load_wsgi
flask_1 |     self.wsgi = self.app.wsgi()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
flask_1 |     self.callable = self.load()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
flask_1 |     return self.load_wsgiapp()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
flask_1 |     return util.import_app(self.app_uri)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/util.py", line 357, in import_app
flask_1 |     __import__(module)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/Kuiper.py", line 3, in <module>
flask_1 |     from app import app
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/__init__.py", line 176, in <module>
flask_1 |     from controllers import case_management,admin_management,API_management
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/controllers/case_management.py", line 22, in <module>
flask_1 |     import parser_management
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/controllers/parser_management.py", line 22, in <module>
flask_1 |     from app.database.dbstuff import *
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/database/dbstuff.py", line 891, in <module>
flask_1 |     db_files    = get_db_files()    # get files databse
flask_1 |   File "/app/app/database/dbstuff.py", line 875, in get_db_files
flask_1 |     return DB_Files()
flask_1 |   File "/app/app/database/dbstuff.py", line 673, in __init__
flask_1 |     db_m.create_collection('files')
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 241, in create_collection
flask_1 |     return Collection(self, name, **opts)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/collection.py", line 120, in __init__
flask_1 |     self.__create(kwargs)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/collection.py", line 134, in __create
flask_1 |     read_preference=ReadPreference.PRIMARY)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 439, in command
flask_1 |     uuid_subtype, compile_re, **kwargs)[0]
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 345, in _command
flask_1 |     msg, allowable_errors)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/helpers.py", line 182, in _check_command_response
flask_1 |     raise OperationFailure(msg % errmsg, code, response)
flask_1 | OperationFailure: command SON([('create', u'files')]) on namespace Kuiper.$cmd failed: a collection 'Kuiper.files' already exists
flask_1 | [2022-06-08 15:37:34 +0000] [14] [INFO] Worker exiting (pid: 14)
flask_1 | [2022-06-08 15:37:34 +0000] [15] [INFO] Worker exiting (pid: 15)
flask_1 | [2022-06-08 15:37:35 +0000] [16] [ERROR] Exception in worker process:
flask_1 | Traceback (most recent call last):
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/arbiter.py", line 515, in spawn_worker
flask_1 |     worker.init_process()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/ggevent.py", line 201, in init_process
flask_1 |     super(GeventWorker, self).init_process()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/base.py", line 122, in init_process
flask_1 |     self.load_wsgi()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/base.py", line 130, in load_wsgi
flask_1 |     self.wsgi = self.app.wsgi()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
flask_1 |     self.callable = self.load()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
flask_1 |     return self.load_wsgiapp()
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:31,028Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "version[7.16.2], pid[12], build[default/docker/2b937c44140b6559905130a8650c64dbd0879cfb/2021-12-18T19:42:46.604893745Z], OS[Linux/5.10.16.3-microsoft-standard-WSL2/amd64], JVM[Eclipse Adoptium/OpenJDK 64-Bit Server VM/17.0.1/17.0.1+12]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:31,031Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "JVM home [/usr/share/elasticsearch/jdk], using bundled JDK [true]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:31,032Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "JVM arguments [-Xshare:auto, -Des.networkaddress.cache.ttl=60, -Des.networkaddress.cache.negative.ttl=10, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -XX:-OmitStackTraceInFastThrow, -XX:+ShowCodeDetailsInExceptionMessages, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dio.netty.allocator.numDirectArenas=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Dlog4j2.formatMsgNoLookups=true, -Djava.locale.providers=SPI,COMPAT, --add-opens=java.base/java.io=ALL-UNNAMED, -XX:+UseG1GC, -Djava.io.tmpdir=/tmp/elasticsearch-17634505253307008733, -XX:+HeapDumpOnOutOfMemoryError, -XX:+ExitOnOutOfMemoryError, -XX:HeapDumpPath=data, -XX:ErrorFile=logs/hs_err_pid%p.log, -Xlog:gc*,gc+age=trace,safepoint:file=logs/gc.log:utctime,pid,tags:filecount=32,filesize=64m, -Des.cgroups.hierarchy.override=/, -Xms512m, -Xmx512m, -XX:MaxDirectMemorySize=268435456, -XX:G1HeapRegionSize=4m, -XX:InitiatingHeapOccupancyPercent=30, -XX:G1ReservePercent=15, -Des.path.home=/usr/share/elasticsearch, -Des.path.conf=/usr/share/elasticsearch/config, -Des.distribution.flavor=default, -Des.distribution.type=docker, -Des.bundled_jdk=true]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,625Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [aggs-matrix-stats]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,626Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [analysis-common]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,626Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [constant-keyword]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,626Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [frozen-indices]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,626Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [ingest-common]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,626Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [ingest-geoip]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,627Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [ingest-user-agent]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,627Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [kibana]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,627Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [lang-expression]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,627Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [lang-mustache]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,627Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [lang-painless]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,627Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [legacy-geo]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,628Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [mapper-extras]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,628Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [mapper-version]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,628Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [parent-join]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,628Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [percolator]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,628Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [rank-eval]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,629Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [reindex]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,629Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [repositories-metering-api]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,629Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [repository-encrypted]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,629Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [repository-url]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,629Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [runtime-fields-common]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,630Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [search-business-rules]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,630Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [searchable-snapshots]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,630Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [snapshot-repo-test-kit]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,630Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [spatial]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,631Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [transform]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,631Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [transport-netty4]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,631Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [unsigned-long]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,631Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [vector-tile]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,631Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [vectors]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,632Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [wildcard]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,632Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-aggregate-metric]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,632Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-analytics]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,632Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-async]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,632Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-async-search]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,632Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-autoscaling]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,632Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-ccr]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,633Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-core]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,633Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-data-streams]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,633Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-deprecation]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,633Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-enrich]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,633Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-eql]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,634Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-fleet]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,634Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-graph]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,634Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-identity-provider]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,634Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-ilm]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,634Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-logstash]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,634Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-ml]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,635Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-monitoring]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,635Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-ql]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,635Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-rollup]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,635Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-security]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,635Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-shutdown]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,635Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-sql]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,636Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-stack]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,636Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-text-structure]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,636Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-voting-only-node]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,636Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "loaded module [x-pack-watcher]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,636Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "no plugins loaded" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,672Z", "level": "INFO", "component": "o.e.e.NodeEnvironment", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "using [1] data paths, mounts [[/usr/share/elasticsearch/data (D:\\)]], net usable_space [13.4tb], net total_space [14.5tb], types [9p]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,672Z", "level": "INFO", "component": "o.e.e.NodeEnvironment", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "heap size [512mb], compressed ordinary object pointers [true]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:32,690Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "node name [es01], node ID [Ad2x3LdzT324SUpT5QclPw], cluster name [es-docker-cluster], roles [transform, data_frozen, master, remote_cluster_client, data, ml, data_content, data_hot, data_warm, data_cold, ingest]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:36,204Z", "level": "INFO", "component": "o.e.x.m.p.l.CppLogMessageHandler", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "[controller/241] [Main.cc@122] controller (64 bit): Version 7.16.2 (Build 77e5cf03d1077d) Copyright (c) 2021 Elasticsearch BV" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:36,505Z", "level": "INFO", "component": "o.e.x.s.a.s.FileRolesStore", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "parsed [0] roles from file [/usr/share/elasticsearch/config/roles.yml]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:37,239Z", "level": "INFO", "component": "o.e.i.g.ConfigDatabases", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "initialized default databases [[GeoLite2-Country.mmdb, GeoLite2-City.mmdb, GeoLite2-ASN.mmdb]], config databases [[]] and watching [/usr/share/elasticsearch/config/ingest-geoip] for changes" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:37,240Z", "level": "INFO", "component": "o.e.i.g.DatabaseNodeService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "initialized database registry, using geoip-databases directory [/tmp/elasticsearch-17634505253307008733/geoip-databases/Ad2x3LdzT324SUpT5QclPw]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:37,591Z", "level": "INFO", "component": "o.e.t.NettyAllocator", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "creating NettyAllocator with the following configs: [name=unpooled, suggested_max_allocation_size=1mb, factors={es.unsafe.use_unpooled_allocator=null, g1gc_enabled=true, g1gc_region_size=4mb, heap_size=512mb}]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:37,634Z", "level": "INFO", "component": "o.e.d.DiscoveryModule", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "using discovery type [zen] and seed hosts providers [settings]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:37,951Z", "level": "INFO", "component": "o.e.g.DanglingIndicesState", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "gateway.auto_import_dangling_indices is disabled, dangling indices will not be automatically detected or imported and must be managed manually" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:38,290Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "initialized" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:38,291Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "starting ..." }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:38,350Z", "level": "INFO", "component": "o.e.x.s.c.f.PersistentCache", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "persistent cache index loaded" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:38,351Z", "level": "INFO", "component": "o.e.x.d.l.DeprecationIndexingComponent", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "deprecation component started" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:38,424Z", "level": "INFO", "component": "o.e.t.TransportService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "publish_address {172.30.250.14:9300}, bound_addresses {0.0.0.0:9300}" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:38,658Z", "level": "INFO", "component": "o.e.b.BootstrapChecks", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "bound or publishing to a non-loopback address, enforcing bootstrap checks" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:38,665Z", "level": "INFO", "component": "o.e.c.c.Coordinator", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "setting initial configuration to VotingConfiguration{Ad2x3LdzT324SUpT5QclPw}" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:38,919Z", "level": "INFO", "component": "o.e.c.s.MasterService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "elected-as-master ([1] nodes joined)[{es01}{Ad2x3LdzT324SUpT5QclPw}{RpDY-7L4T8-um0csfknuJg}{172.30.250.14}{172.30.250.14:9300}{cdfhilmrstw} elect leader, _BECOME_MASTER_TASK_, _FINISH_ELECTION_], term: 1, version: 1, delta: master node changed {previous [], current [{es01}{Ad2x3LdzT324SUpT5QclPw}{RpDY-7L4T8-um0csfknuJg}{172.30.250.14}{172.30.250.14:9300}{cdfhilmrstw}]}" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:39,085Z", "level": "INFO", "component": "o.e.c.c.CoordinationState", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "cluster UUID set to [fhsnhA6kRb6ac6pdhgNQ0w]" }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:39,207Z", "level": "INFO", "component": "o.e.c.s.ClusterApplierService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "master node changed {previous [], current [{es01}{Ad2x3LdzT324SUpT5QclPw}{RpDY-7L4T8-um0csfknuJg}{172.30.250.14}{172.30.250.14:9300}{cdfhilmrstw}]}, term: 1, version: 1, reason: Publication{term=1, version=1}" }
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
flask_1 |     return util.import_app(self.app_uri)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/util.py", line 357, in import_app
flask_1 |     __import__(module)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/Kuiper.py", line 3, in <module>
flask_1 |     from app import app
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/__init__.py", line 176, in <module>
flask_1 |     from controllers import case_management,admin_management,API_management
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/controllers/case_management.py", line 22, in <module>
flask_1 |     import parser_management
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/controllers/parser_management.py", line 22, in <module>
flask_1 |     from app.database.dbstuff import *
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/database/dbstuff.py", line 894, in <module>
flask_1 |     db_groups   = get_db_groups()
flask_1 |   File "/app/app/database/dbstuff.py", line 120, in get_db_groups
flask_1 |     return DB_Groups()
flask_1 |   File "/app/app/database/dbstuff.py", line 64, in __init__
flask_1 |     db_m.create_collection('groups')
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 241, in create_collection
flask_1 |     return Collection(self, name, **opts)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/collection.py", line 120, in __init__
flask_1 |     self.__create(kwargs)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/collection.py", line 134, in __create
flask_1 |     read_preference=ReadPreference.PRIMARY)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 439, in command
flask_1 |     uuid_subtype, compile_re, **kwargs)[0]
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 345, in _command
flask_1 |     msg, allowable_errors)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/helpers.py", line 182, in _check_command_response
flask_1 |     raise OperationFailure(msg % errmsg, code, response)
flask_1 | OperationFailure: command SON([('create', u'groups')]) on namespace Kuiper.$cmd failed: a collection 'Kuiper.groups' already exists
flask_1 | Traceback (most recent call last):
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/arbiter.py", line 515, in spawn_worker
flask_1 |     worker.init_process()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/ggevent.py", line 201, in init_process
flask_1 |     super(GeventWorker, self).init_process()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/base.py", line 122, in init_process
flask_1 |     self.load_wsgi()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/workers/base.py", line 130, in load_wsgi
flask_1 |     self.wsgi = self.app.wsgi()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
flask_1 |     self.callable = self.load()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
flask_1 |     return self.load_wsgiapp()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
flask_1 |     return util.import_app(self.app_uri)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/util.py", line 357, in import_app
flask_1 |     __import__(module)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/Kuiper.py", line 3, in <module>
flask_1 |     from app import app
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/__init__.py", line 176, in <module>
flask_1 |     from controllers import case_management,admin_management,API_management
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/controllers/case_management.py", line 22, in <module>
flask_1 |     import parser_management
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/controllers/parser_management.py", line 22, in <module>
flask_1 |     from app.database.dbstuff import *
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gevent/builtins.py", line 96, in __import__
flask_1 |     result = _import(*args, **kwargs)
flask_1 |   File "/app/app/database/dbstuff.py", line 894, in <module>
flask_1 |     db_groups   = get_db_groups()
flask_1 |   File "/app/app/database/dbstuff.py", line 120, in get_db_groups
flask_1 |     return DB_Groups()
flask_1 |   File "/app/app/database/dbstuff.py", line 64, in __init__
flask_1 |     db_m.create_collection('groups')
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 241, in create_collection
flask_1 |     return Collection(self, name, **opts)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/collection.py", line 120, in __init__
flask_1 |     self.__create(kwargs)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/collection.py", line 134, in __create
flask_1 |     read_preference=ReadPreference.PRIMARY)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 439, in command
flask_1 |     uuid_subtype, compile_re, **kwargs)[0]
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/database.py", line 345, in _command
flask_1 |     msg, allowable_errors)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/pymongo/helpers.py", line 182, in _check_command_response
flask_1 |     raise OperationFailure(msg % errmsg, code, response)
flask_1 | OperationFailure: command SON([('create', u'groups')]) on namespace Kuiper.$cmd failed: a collection 'Kuiper.groups' already exists
flask_1 | [2022-06-08 15:37:35 +0000] [16] [INFO] Worker exiting (pid: 16)
flask_1 | Traceback (most recent call last):
flask_1 |   File "/usr/local/bin/gunicorn", line 8, in <module>
flask_1 |     sys.exit(run())
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 74, in run
flask_1 |     WSGIApplication("%(prog)s [OPTIONS] [APP_MODULE]").run()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/base.py", line 192, in run
flask_1 |     super(Application, self).run()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/app/base.py", line 72, in run
flask_1 |     Arbiter(self).run()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/arbiter.py", line 206, in run
flask_1 |     self.halt(reason=inst.reason, exit_status=inst.exit_status)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/arbiter.py", line 302, in halt
flask_1 |     self.stop()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/arbiter.py", line 347, in stop
flask_1 |     time.sleep(0.1)
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/arbiter.py", line 219, in handle_chld
flask_1 |     self.reap_workers()
flask_1 |   File "/usr/local/lib/python2.7/site-packages/gunicorn/arbiter.py", line 464, in reap_workers
flask_1 |     raise HaltServer(reason, self.WORKER_BOOT_ERROR)
flask_1 | gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>
flask_1 | [2022-06-08 15:37:37 +0000] [9] [INFO] Starting gunicorn 19.4.5
flask_1 | [2022-06-08 15:37:37 +0000] [9] [INFO] Listening at: http://0.0.0.0:5000 (9)
flask_1 | [2022-06-08 15:37:37 +0000] [9] [INFO] Using worker: gevent
flask_1 | [2022-06-08 15:37:37 +0000] [13] [INFO] Booting worker with pid: 13
flask_1 | [2022-06-08 15:37:37 +0000] [14] [INFO] Booting worker with pid: 14
flask_1 | [2022-06-08 15:37:37 +0000] [15] [INFO] Booting worker with pid: 15
flask_1 | [2022-06-08 15:37:37 +0000] [17] [INFO] Booting worker with pid: 17
redis_1 | 10:C 08 Jun 2022 15:37:29.849 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
redis_1 | 10:C 08 Jun 2022 15:37:29.849 # Redis version=7.0.0, bits=64, commit=00000000, modified=0, pid=10, just started
redis_1 | 10:C 08 Jun 2022 15:37:29.849 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
redis_1 | 10:M 08 Jun 2022 15:37:29.849 * monotonic clock: POSIX clock_gettime
redis_1 | 10:M 08 Jun 2022 15:37:29.849 * Running mode=standalone, port=6379.
redis_1 | 10:M 08 Jun 2022 15:37:29.849 # Server initialized
redis_1 | 10:M 08 Jun 2022 15:37:29.849 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
redis_1 | 10:M 08 Jun 2022 15:37:29.850 * The AOF directory appendonlydir doesn't exist
redis_1 | 10:M 08 Jun 2022 15:37:29.850 * Ready to accept connections
mongodb_1 | 2022-06-08T15:37:30.129+0000 I  CONTROL  [main] Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'
mongodb_1 | 2022-06-08T15:37:30.130+0000 W  ASIO     [main] No TransportLayer configured during NetworkInterface startup
mongodb_1 | 2022-06-08T15:37:30.130+0000 I  CONTROL  [initandlisten] MongoDB starting : pid=12 port=27017 dbpath=/data/db 64-bit host=e52b8f3794ea
mongodb_1 | 2022-06-08T15:37:30.130+0000 I  CONTROL  [initandlisten] db version v4.2.20
mongodb_1 | 2022-06-08T15:37:30.130+0000 I  CONTROL  [initandlisten] git version: 15c0712952c356cb711c13a42cb3bca8617d4ebc
mongodb_1 | 2022-06-08T15:37:30.130+0000 I  CONTROL  [initandlisten] OpenSSL version: OpenSSL 1.1.1  11 Sep 2018
mongodb_1 | 2022-06-08T15:37:30.130+0000 I  CONTROL  [initandlisten] allocator: tcmalloc
mongodb_1 | 2022-06-08T15:37:30.130+0000 I  CONTROL  [initandlisten] modules: none
mongodb_1 | 2022-06-08T15:37:30.130+0000 I  CONTROL  [initandlisten] build environment:
mongodb_1 | 2022-06-08T15:37:30.130+0000 I  CONTROL  [initandlisten]     distmod: ubuntu1804
mongodb_1 | 2022-06-08T15:37:30.130+0000 I  CONTROL  [initandlisten]     distarch: x86_64
mongodb_1 | 2022-06-08T15:37:30.130+0000 I  CONTROL  [initandlisten]     target_arch: x86_64
mongodb_1 | 2022-06-08T15:37:30.130+0000 I  CONTROL  [initandlisten] options: { net: { bindIp: "*" } }
mongodb_1 | 2022-06-08T15:37:30.133+0000 I  STORAGE  [initandlisten] wiredtiger_open config: create,cache_size=25058M,cache_overflow=(file_max=0M),session_max=33000,eviction=(threads_min=4,threads_max=4),config_base=false,statistics=(fast),log=(enabled=true,archive=true,path=journal,compressor=snappy),file_manager=(close_idle_time=100000,close_scan_interval=10,close_handle_minimum=250),statistics_log=(wait=0),verbose=[recovery_progress,checkpoint_progress],
mongodb_1 | 2022-06-08T15:37:33.701+0000 I  STORAGE  [initandlisten] WiredTiger message [1654702653:701150][12:0x7fb2942ddb00], txn-recover: Set global recovery timestamp: (0, 0)
mongodb_1 | 2022-06-08T15:37:33.723+0000 I  RECOVERY [initandlisten] WiredTiger recoveryTimestamp. Ts: Timestamp(0, 0)
mongodb_1 | 2022-06-08T15:37:33.753+0000 I  STORAGE  [initandlisten] No table logging settings modifications are required for existing WiredTiger tables. Logging enabled? 1
mongodb_1 | 2022-06-08T15:37:33.753+0000 I  STORAGE  [initandlisten] Timestamp monitor starting
mongodb_1 | 2022-06-08T15:37:33.776+0000 I  CONTROL  [initandlisten] 
mongodb_1 | 2022-06-08T15:37:33.776+0000 I  CONTROL  [initandlisten] ** WARNING: Access control is not enabled for the database.
mongodb_1 | 2022-06-08T15:37:33.776+0000 I  CONTROL  [initandlisten] **          Read and write access to data and configuration is unrestricted.
mongodb_1 | 2022-06-08T15:37:33.776+0000 I  CONTROL  [initandlisten] 
mongodb_1 | 2022-06-08T15:37:33.776+0000 I  CONTROL  [initandlisten] 
mongodb_1 | 2022-06-08T15:37:33.776+0000 I  CONTROL  [initandlisten] ** WARNING: /sys/kernel/mm/transparent_hugepage/enabled is 'always'.
mongodb_1 | 2022-06-08T15:37:33.776+0000 I  CONTROL  [initandlisten] **        We suggest setting it to 'never'
mongodb_1 | 2022-06-08T15:37:33.776+0000 I  CONTROL  [initandlisten] 
mongodb_1 | 2022-06-08T15:37:33.777+0000 I  STORAGE  [initandlisten] createCollection: admin.system.version with provided UUID: 7bc341d4-46cf-4c50-b6fa-34e5735b7c35 and options: { uuid: UUID("7bc341d4-46cf-4c50-b6fa-34e5735b7c35") }
mongodb_1 | 2022-06-08T15:37:33.802+0000 I  INDEX    [initandlisten] index build: done building index _id_ on ns admin.system.version
mongodb_1 | 2022-06-08T15:37:33.803+0000 I  COMMAND  [initandlisten] setting featureCompatibilityVersion to 4.2
mongodb_1 | 2022-06-08T15:37:33.805+0000 I  STORAGE  [initandlisten] Flow Control is enabled on this deployment.
mongodb_1 | 2022-06-08T15:37:33.805+0000 I  STORAGE  [initandlisten] createCollection: local.startup_log with generated UUID: 64aaca54-f50f-47ad-a2af-1053037ce419 and options: { capped: true, size: 10485760 }
mongodb_1 | 2022-06-08T15:37:33.857+0000 I  INDEX    [initandlisten] index build: done building index _id_ on ns local.startup_log
mongodb_1 | 2022-06-08T15:37:33.857+0000 I  FTDC     [initandlisten] Initializing full-time diagnostic data capture with directory '/data/db/diagnostic.data'
mongodb_1 | 2022-06-08T15:37:33.859+0000 I  CONTROL  [LogicalSessionCacheReap] Sessions collection is not set up; waiting until next sessions reap interval: config.system.sessions does not exist
mongodb_1 | 2022-06-08T15:37:33.859+0000 I  NETWORK  [listener] Listening on /tmp/mongodb-27017.sock
mongodb_1 | 2022-06-08T15:37:33.859+0000 I  STORAGE  [LogicalSessionCacheRefresh] createCollection: config.system.sessions with provided UUID: a34a5056-c8b4-4872-8c47-0e39a1bf0754 and options: { uuid: UUID("a34a5056-c8b4-4872-8c47-0e39a1bf0754") }
mongodb_1 | 2022-06-08T15:37:33.859+0000 I  NETWORK  [listener] Listening on 0.0.0.0
mongodb_1 | 2022-06-08T15:37:33.859+0000 I  NETWORK  [listener] waiting for connections on port 27017
mongodb_1 | 2022-06-08T15:37:33.899+0000 I  INDEX    [LogicalSessionCacheRefresh] index build: done building index _id_ on ns config.system.sessions
mongodb_1 | 2022-06-08T15:37:33.934+0000 I  INDEX    [LogicalSessionCacheRefresh] index build: starting on config.system.sessions properties: { v: 2, key: { lastUse: 1 }, name: "lsidTTLIndex", ns: "config.system.sessions", expireAfterSeconds: 1800 } using method: Hybrid
mongodb_1 | 2022-06-08T15:37:33.934+0000 I  INDEX    [LogicalSessionCacheRefresh] build may temporarily use up to 200 megabytes of RAM
mongodb_1 | 2022-06-08T15:37:33.934+0000 I  INDEX    [LogicalSessionCacheRefresh] index build: collection scan done. scanned 0 total records in 0 seconds
mongodb_1 | 2022-06-08T15:37:33.938+0000 I  INDEX    [LogicalSessionCacheRefresh] index build: inserted 0 keys from external sorter into index in 0 seconds
mongodb_1 | 2022-06-08T15:37:33.945+0000 I  INDEX    [LogicalSessionCacheRefresh] index build: done building index lsidTTLIndex on ns config.system.sessions
mongodb_1 | 2022-06-08T15:37:34.053+0000 I  NETWORK  [listener] connection accepted from 172.30.250.12:36466 #1 (1 connection now open)
mongodb_1 | 2022-06-08T15:37:34.054+0000 I  STORAGE  [conn1] createCollection: Kuiper.cases with generated UUID: a0291de8-e762-4689-8c11-bbcaf3c21e2f and options: {}
mongodb_1 | 2022-06-08T15:37:34.085+0000 I  INDEX    [conn1] index build: done building index _id_ on ns Kuiper.cases
mongodb_1 | 2022-06-08T15:37:34.086+0000 I  STORAGE  [conn1] createCollection: Kuiper.rules with generated UUID: 03b50219-7516-45c3-9a6c-fdc7ed558792 and options: {}
mongodb_1 | 2022-06-08T15:37:34.102+0000 I  NETWORK  [listener] connection accepted from 172.30.250.12:36468 #2 (2 connections now open)
mongodb_1 | 2022-06-08T15:37:34.111+0000 I  NETWORK  [listener] connection accepted from 172.30.250.12:36470 #3 (3 connections now open)
mongodb_1 | 2022-06-08T15:37:34.113+0000 I  INDEX    [conn1] index build: done building index _id_ on ns Kuiper.rules
mongodb_1 | 2022-06-08T15:37:34.115+0000 I  STORAGE  [conn1] createCollection: Kuiper.files with generated UUID: 2052597d-8f20-469a-b88e-84473939e195 and options: {}
mongodb_1 | 2022-06-08T15:37:34.140+0000 I  INDEX    [conn1] index build: done building index _id_ on ns Kuiper.files
mongodb_1 | 2022-06-08T15:37:34.141+0000 I  STORAGE  [conn1] createCollection: Kuiper.parsers with generated UUID: 64ede2fe-9cb2-4f01-8e29-c56627d4e286 and options: {}
mongodb_1 | 2022-06-08T15:37:34.160+0000 I  NETWORK  [conn2] end connection 172.30.250.12:36468 (2 connections now open)
mongodb_1 | 2022-06-08T15:37:34.160+0000 I  NETWORK  [conn3] end connection 172.30.250.12:36470 (1 connection now open)
mongodb_1 | 2022-06-08T15:37:34.170+0000 I  NETWORK  [listener] connection accepted from 172.30.250.12:36472 #4 (2 connections now open)
mongodb_1 | 2022-06-08T15:37:34.179+0000 I  INDEX    [conn1] index build: done building index _id_ on ns Kuiper.parsers
mongodb_1 | 2022-06-08T15:37:35.108+0000 I  STORAGE  [conn1] createCollection: Kuiper.groups with generated UUID: 3daaea5e-2c04-443f-84aa-951fa9ec4d0a and options: {}
mongodb_1 | 2022-06-08T15:37:35.165+0000 I  INDEX    [conn1] index build: done building index _id_ on ns Kuiper.groups
mongodb_1 | 2022-06-08T15:37:35.173+0000 I  NETWORK  [conn4] end connection 172.30.250.12:36472 (1 connection now open)
mongodb_1 | 2022-06-08T15:37:35.203+0000 I  NETWORK  [listener] connection accepted from 172.30.250.16:36682 #5 (2 connections now open)
mongodb_1 | 2022-06-08T15:37:35.221+0000 I  NETWORK  [conn1] end connection 172.30.250.12:36466 (1 connection now open)
mongodb_1 | 2022-06-08T15:37:38.197+0000 I  NETWORK  [listener] connection accepted from 172.30.250.12:36496 #6 (2 connections now open)
mongodb_1 | 2022-06-08T15:37:38.214+0000 I  NETWORK  [listener] connection accepted from 172.30.250.12:36498 #7 (3 connections now open)
mongodb_1 | 2022-06-08T15:37:38.317+0000 I  NETWORK  [listener] connection accepted from 172.30.250.12:36500 #8 (4 connections now open)
mongodb_1 | 2022-06-08T15:37:38.369+0000 I  NETWORK  [listener] connection accepted from 172.30.250.12:36502 #9 (5 connections now open)
mongodb_1 | 2022-06-08T15:38:01.230+0000 I  NETWORK  [listener] connection accepted from 127.0.0.1:42414 #10 (6 connections now open)
mongodb_1 | 2022-06-08T15:38:01.235+0000 I  NETWORK  [conn10] end connection 127.0.0.1:42414 (5 connections now open)
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:39,233Z", "level": "INFO", "component": "o.e.h.AbstractHttpServerTransport", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "publish_address {172.30.250.14:9200}, bound_addresses {0.0.0.0:9200}", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:39,234Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "started", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:39,323Z", "level": "INFO", "component": "o.e.g.GatewayService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "recovered [0] indices into cluster_state", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:39,445Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index template [.ml-notifications-000002] for index patterns [.ml-notifications-000002]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:39,575Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index template [.ml-state] for index patterns [.ml-state*]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:39,724Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index template [.ml-anomalies-] for index patterns [.ml-anomalies-*]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:39,897Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index template [.ml-stats] for index patterns [.ml-stats-*]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:40,048Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding component template [logs-settings]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:40,217Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding component template [synthetics-mappings]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:40,399Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding component template [metrics-settings]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:40,603Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding component template [synthetics-settings]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:40,778Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding component template [data-streams-mappings]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:40,912Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding component template [metrics-mappings]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:41,102Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding component template [logs-mappings]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:41,333Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index template [ilm-history] for index patterns [ilm-history-5*]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:41,568Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index template [.watch-history-13] for index patterns [.watcher-history-13*]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:41,757Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index template [.slm-history] for index patterns [.slm-history-5*]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:41,895Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding component template [.deprecation-indexing-settings]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:42,037Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding component template [.deprecation-indexing-mappings]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:42,177Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding template [.monitoring-alerts-7] for index patterns [.monitoring-alerts-7]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:42,325Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding template [.monitoring-es] for index patterns [.monitoring-es-7-*]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:42,476Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding template [.monitoring-kibana] for index patterns [.monitoring-kibana-7-*]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:42,607Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding template [.monitoring-logstash] for index patterns [.monitoring-logstash-7-*]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:42,778Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding template [.monitoring-beats] for index patterns [.monitoring-beats-7-*]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:42,911Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index template [synthetics] for index patterns [synthetics-*-*]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:43,037Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index template [metrics] for index patterns [metrics-*-*]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:43,191Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index template [logs] for index patterns [logs-*-*]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:43,305Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index template [.deprecation-indexing-template] for index patterns [.logs-deprecation.*]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:43,447Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index lifecycle policy [ml-size-based-ilm-policy]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:43,603Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index lifecycle policy [logs]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:43,732Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index lifecycle policy [synthetics]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:43,868Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index lifecycle policy [metrics]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:44,021Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index lifecycle policy [7-days-default]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:44,148Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index lifecycle policy [90-days-default]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:44,311Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index lifecycle policy [30-days-default]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:44,450Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index lifecycle policy [180-days-default]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:44,581Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index lifecycle policy [365-days-default]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:44,720Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index lifecycle policy [watch-history-ilm-policy]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:44,838Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index lifecycle policy [ilm-history-ilm-policy]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:44,947Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index lifecycle policy [slm-history-ilm-policy]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:45,063Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index lifecycle policy [.deprecation-indexing-ilm-policy]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:45,179Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding index lifecycle policy [.fleet-actions-results-ilm-policy]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:45,445Z", "level": "INFO", "component": "o.e.i.g.GeoIpDownloader", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "updating geoip databases", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:45,445Z", "level": "INFO", "component": "o.e.i.g.GeoIpDownloader", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "fetching geoip databases overview from [https://geoip.elastic.co/v1/database?elastic_geoip_service_tos=agree]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:45,643Z", "level": "INFO", "component": "o.e.l.LicenseService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "license [a835f492-a0af-459a-8e42-185567da4c34] mode [basic] - valid", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:45,644Z", "level": "INFO", "component": "o.e.x.s.s.SecurityStatusChangeListener", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "Active license is now [BASIC]; Security is disabled", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:45,645Z", "level": "WARN", "component": "o.e.x.s.s.SecurityStatusChangeListener", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "Elasticsearch built-in security features are not enabled. Without authentication, your cluster could be accessible to anyone. See https://www.elastic.co/guide/en/elasticsearch/reference/7.16/security-minimal-setup.html to enable security.", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "deprecation.elasticsearch", "timestamp": "2022-06-08T15:37:45,645Z", "level": "CRITICAL", "component": "o.e.d.x.s.s.SecurityStatusChangeListener", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "The default behavior of disabling security on basic licenses is deprecated. In a later version of Elasticsearch, the value of [xpack.security.enabled] will default to \"true\" , regardless of the license level. See https://www.elastic.co/guide/en/elasticsearch/reference/7.16/security-minimal-setup.html to enable security, or explicitly disable security by setting [xpack.security.enabled] to false in elasticsearch.yml", "key": "security_implicitly_disabled", "category": "security", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:47,245Z", "level": "INFO", "component": "o.e.c.m.MetadataCreateIndexService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "[.ds-.logs-deprecation.elasticsearch-default-2022.06.08-000001] creating index, cause [initialize_data_stream], templates [.deprecation-indexing-template], shards [1]/[1]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:47,250Z", "level": "INFO", "component": "o.e.c.r.a.AllocationService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "updating number_of_replicas to [0] for indices [.ds-.logs-deprecation.elasticsearch-default-2022.06.08-000001]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:47,257Z", "level": "INFO", "component": "o.e.c.m.MetadataCreateDataStreamService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding data stream [.logs-deprecation.elasticsearch-default] with write index [.ds-.logs-deprecation.elasticsearch-default-2022.06.08-000001], backing indices [], and aliases []", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:47,516Z", "level": "INFO", "component": "o.e.x.i.IndexLifecycleTransition", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "moving index [.ds-.logs-deprecation.elasticsearch-default-2022.06.08-000001] from [null] to [{\"phase\":\"new\",\"action\":\"complete\",\"name\":\"complete\"}] in policy [.deprecation-indexing-ilm-policy]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:47,676Z", "level": "INFO", "component": "o.e.x.i.IndexLifecycleTransition", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "moving index [.ds-.logs-deprecation.elasticsearch-default-2022.06.08-000001] from [{\"phase\":\"new\",\"action\":\"complete\",\"name\":\"complete\"}] to [{\"phase\":\"hot\",\"action\":\"unfollow\",\"name\":\"branch-check-unfollow-prerequisites\"}] in policy [.deprecation-indexing-ilm-policy]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:47,785Z", "level": "INFO", "component": "o.e.x.i.IndexLifecycleTransition", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "moving index [.ds-.logs-deprecation.elasticsearch-default-2022.06.08-000001] from [{\"phase\":\"hot\",\"action\":\"unfollow\",\"name\":\"branch-check-unfollow-prerequisites\"}] to [{\"phase\":\"hot\",\"action\":\"rollover\",\"name\":\"check-rollover-ready\"}] in policy [.deprecation-indexing-ilm-policy]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:47,930Z", "level": "INFO", "component": "o.e.c.r.a.AllocationService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.ds-.logs-deprecation.elasticsearch-default-2022.06.08-000001][0]]]).", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:48,136Z", "level": "INFO", "component": "o.e.c.m.MetadataMappingService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "[.ds-.logs-deprecation.elasticsearch-default-2022.06.08-000001/5SCW4B44SMyD4vTy5QnpZA] update_mapping [_doc]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:52,230Z", "level": "INFO", "component": "o.e.c.m.MetadataCreateIndexService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "[.ds-ilm-history-5-2022.06.08-000001] creating index, cause [initialize_data_stream], templates [ilm-history], shards [1]/[0]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:52,231Z", "level": "INFO", "component": "o.e.c.m.MetadataCreateDataStreamService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "adding data stream [ilm-history-5] with write index [.ds-ilm-history-5-2022.06.08-000001], backing indices [], and aliases []", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:52,526Z", "level": "INFO", "component": "o.e.x.i.IndexLifecycleTransition", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "moving index [.ds-ilm-history-5-2022.06.08-000001] from [null] to [{\"phase\":\"new\",\"action\":\"complete\",\"name\":\"complete\"}] in policy [ilm-history-ilm-policy]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:52,706Z", "level": "INFO", "component": "o.e.x.i.IndexLifecycleTransition", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "moving index [.ds-ilm-history-5-2022.06.08-000001] from [{\"phase\":\"new\",\"action\":\"complete\",\"name\":\"complete\"}] to [{\"phase\":\"hot\",\"action\":\"unfollow\",\"name\":\"branch-check-unfollow-prerequisites\"}] in policy [ilm-history-ilm-policy]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:52,872Z", "level": "INFO", "component": "o.e.x.i.IndexLifecycleTransition", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "moving index [.ds-ilm-history-5-2022.06.08-000001] from [{\"phase\":\"hot\",\"action\":\"unfollow\",\"name\":\"branch-check-unfollow-prerequisites\"}] to [{\"phase\":\"hot\",\"action\":\"rollover\",\"name\":\"check-rollover-ready\"}] in policy [ilm-history-ilm-policy]", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:52,993Z", "level": "INFO", "component": "o.e.c.r.a.AllocationService", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.ds-ilm-history-5-2022.06.08-000001][0]]]).", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw"  }
es01_1 | {"type": "server", "timestamp": "2022-06-08T15:37:55,463Z", "level": "ERROR", "component": "o.e.i.g.GeoIpDownloader", "cluster.name": "es-docker-cluster", "node.name": "es01", "message": "exception during geoip databases update", "cluster.uuid": "fhsnhA6kRb6ac6pdhgNQ0w", "node.id": "Ad2x3LdzT324SUpT5QclPw" , 
es01_1 | "stacktrace": ["java.net.UnknownHostException: geoip.elastic.co",
es01_1 | "at sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:567) ~[?:?]",
es01_1 | "at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) ~[?:?]",
es01_1 | "at java.net.Socket.connect(Socket.java:633) ~[?:?]",
es01_1 | "at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:299) ~[?:?]",
es01_1 | "at sun.net.NetworkClient.doConnect(NetworkClient.java:178) ~[?:?]",
es01_1 | "at sun.net.www.http.HttpClient.openServer(HttpClient.java:498) ~[?:?]",
es01_1 | "at sun.net.www.http.HttpClient.openServer(HttpClient.java:603) ~[?:?]",
es01_1 | "at sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:266) ~[?:?]",
es01_1 | "at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:380) ~[?:?]",
es01_1 | "at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:189) ~[?:?]",
es01_1 | "at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242) ~[?:?]",
es01_1 | "at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128) ~[?:?]",
es01_1 | "at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:175) ~[?:?]",
es01_1 | "at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1665) ~[?:?]",
es01_1 | "at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) ~[?:?]",
es01_1 | "at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) ~[?:?]",
es01_1 | "at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:308) ~[?:?]",
es01_1 | "at org.elasticsearch.ingest.geoip.HttpClient.lambda$get$0(HttpClient.java:55) ~[ingest-geoip-7.16.2.jar:7.16.2]",
es01_1 | "at java.security.AccessController.doPrivileged(AccessController.java:569) ~[?:?]",
es01_1 | "at org.elasticsearch.ingest.geoip.HttpClient.doPrivileged(HttpClient.java:97) ~[ingest-geoip-7.16.2.jar:7.16.2]",
es01_1 | "at org.elasticsearch.ingest.geoip.HttpClient.get(HttpClient.java:49) ~[ingest-geoip-7.16.2.jar:7.16.2]",
es01_1 | "at org.elasticsearch.ingest.geoip.HttpClient.getBytes(HttpClient.java:40) ~[ingest-geoip-7.16.2.jar:7.16.2]",
es01_1 | "at org.elasticsearch.ingest.geoip.GeoIpDownloader.fetchDatabasesOverview(GeoIpDownloader.java:135) ~[ingest-geoip-7.16.2.jar:7.16.2]",
es01_1 | "at org.elasticsearch.ingest.geoip.GeoIpDownloader.updateDatabases(GeoIpDownloader.java:123) ~[ingest-geoip-7.16.2.jar:7.16.2]",
es01_1 | "at org.elasticsearch.ingest.geoip.GeoIpDownloader.runDownloader(GeoIpDownloader.java:260) [ingest-geoip-7.16.2.jar:7.16.2]",
es01_1 | "at org.elasticsearch.ingest.geoip.GeoIpDownloaderTaskExecutor.nodeOperation(GeoIpDownloaderTaskExecutor.java:97) [ingest-geoip-7.16.2.jar:7.16.2]",
es01_1 | "at org.elasticsearch.ingest.geoip.GeoIpDownloaderTaskExecutor.nodeOperation(GeoIpDownloaderTaskExecutor.java:43) [ingest-geoip-7.16.2.jar:7.16.2]",
es01_1 | "at org.elasticsearch.persistent.NodePersistentTasksExecutor$1.doRun(NodePersistentTasksExecutor.java:42) [elasticsearch-7.16.2.jar:7.16.2]",
es01_1 | "at org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun(ThreadContext.java:777) [elasticsearch-7.16.2.jar:7.16.2]",
es01_1 | "at org.elasticsearch.common.util.concurrent.AbstractRunnable.run(AbstractRunnable.java:26) [elasticsearch-7.16.2.jar:7.16.2]",
es01_1 | "at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?]",
es01_1 | "at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?]",
es01_1 | "at java.lang.Thread.run(Thread.java:833) [?:?]"] }
nginx_1 | /docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
nginx_1 | /docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
nginx_1 | /docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
nginx_1 | 10-listen-on-ipv6-by-default.sh: info: Getting the checksum of /etc/nginx/conf.d/default.conf
nginx_1 | 10-listen-on-ipv6-by-default.sh: info: Enabled listen on IPv6 in /etc/nginx/conf.d/default.conf
nginx_1 | /docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
nginx_1 | 20-envsubst-on-templates.sh: Running envsubst on /etc/nginx/templates/default.conf.template to /etc/nginx/conf.d/default.conf
nginx_1 | /docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
nginx_1 | /docker-entrypoint.sh: Configuration complete; ready for start up
nginx_1 | 2022/06/08 15:37:35 [warn] 1#1: could not build optimal proxy_headers_hash, you should increase either proxy_headers_hash_max_size: 512 or proxy_headers_hash_bucket_size: 64; ignoring proxy_headers_hash_bucket_size
nginx_1 | nginx: [warn] could not build optimal proxy_headers_hash, you should increase either proxy_headers_hash_max_size: 512 or proxy_headers_hash_bucket_size: 64; ignoring proxy_headers_hash_bucket_size
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: using the "epoll" event method
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: nginx/1.21.6
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: built by gcc 10.2.1 20210110 (Debian 10.2.1-6) 
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: OS: Linux 5.10.16.3-microsoft-standard-WSL2
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: getrlimit(RLIMIT_NOFILE): 1048576:1048576
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: start worker processes
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: start worker process 36
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: start worker process 37
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: start worker process 38
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: start worker process 39
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: start worker process 40
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: start worker process 41
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: start worker process 42
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: start worker process 43
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: start worker process 44
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: start worker process 45
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: start worker process 46
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: start worker process 47
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: start worker process 48
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: start worker process 49
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: start worker process 50
nginx_1 | 2022/06/08 15:37:35 [notice] 1#1: start worker process 51
mongodb_1 | 2022-06-08T15:39:01.414+0000 I  NETWORK  [listener] connection accepted from 127.0.0.1:42446 #11 (6 connections now open)
mongodb_1 | 2022-06-08T15:39:01.436+0000 I  NETWORK  [conn11] end connection 127.0.0.1:42446 (5 connections now open)
mongodb_1 | 2022-06-08T15:40:01.589+0000 I  NETWORK  [listener] connection accepted from 127.0.0.1:42466 #12 (6 connections now open)
mongodb_1 | 2022-06-08T15:40:01.598+0000 I  NETWORK  [conn12] end connection 127.0.0.1:42466 (5 connections now open)
mongodb_1 | 2022-06-08T15:41:01.752+0000 I  NETWORK  [listener] connection accepted from 127.0.0.1:42500 #13 (6 connections now open)
mongodb_1 | 2022-06-08T15:41:01.759+0000 I  NETWORK  [conn13] end connection 127.0.0.1:42500 (5 connections now open)
mongodb_1 | 2022-06-08T15:42:01.907+0000 I  NETWORK  [listener] connection accepted from 127.0.0.1:42524 #14 (6 connections now open)
mongodb_1 | 2022-06-08T15:42:01.914+0000 I  NETWORK  [conn14] end connection 127.0.0.1:42524 (5 connections now open)
mongodb_1 | 2022-06-08T15:43:02.065+0000 I  NETWORK  [listener] connection accepted from 127.0.0.1:42550 #15 (6 connections now open)
mongodb_1 | 2022-06-08T15:43:02.072+0000 I  NETWORK  [conn15] end connection 127.0.0.1:42550 (5 connections now open)
mongodb_1 | 2022-06-08T15:44:01.224+0000 I  NETWORK  [listener] connection accepted from 127.0.0.1:42558 #16 (6 connections now open)
mongodb_1 | 2022-06-08T15:44:01.231+0000 I  NETWORK  [conn16] end connection 127.0.0.1:42558 (5 connections now open)
redis_1 | 10:M 08 Jun 2022 15:44:02.596 * 100 changes in 300 seconds. Saving...
redis_1 | 10:M 08 Jun 2022 15:44:02.596 * Background saving started by pid 87
redis_1 | 87:C 08 Jun 2022 15:44:02.612 * DB saved on disk
redis_1 | 87:C 08 Jun 2022 15:44:02.612 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 10:M 08 Jun 2022 15:44:02.697 * Background saving terminated with success
mongodb_1 | 2022-06-08T15:45:01.377+0000 I  NETWORK  [listener] connection accepted from 127.0.0.1:42590 #17 (6 connections now open)
mongodb_1 | 2022-06-08T15:45:01.387+0000 I  NETWORK  [conn17] end connection 127.0.0.1:42590 (5 connections now open)
salehmuhaysin commented 2 years ago

hi, what is the output of sudo docker-compose ps -a and did you modified any configuration ?