Installing FusionAuth 1.47.1 in Docker
-
Hi,
I am trying to install FusionAuth into Docker but it keep reporting that the Search container is unhealthy when running docker-compose. When viewed under docker ps is indicated as healthy. Any ideal what is going on here.
under ps is healthy
-
@cwkoh are you able to share the
docker-compose.yml
that you are using?Is it our default download example?
curl -fsSL https://raw.githubusercontent.com/FusionAuth/fusionauth-containers/master/docker/fusionauth/docker-compose.yml > docker-compose.yml &&
curl -fsSL https://raw.githubusercontent.com/FusionAuth/fusionauth-containers/master/docker/fusionauth/.env > .env &&
docker-compose up -
@alex-patterson Yes, same just that I change the tag for FusionAuth to 1.47.1.
version: '3' services: db: image: postgres:12.9 environment: PGDATA: /var/lib/postgresql/data/pgdata POSTGRES_USER: ${POSTGRES_USER} POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} healthcheck: test: [ "CMD-SHELL", "pg_isready -U postgres" ] interval: 5s timeout: 5s retries: 5 networks: - db_net restart: unless-stopped volumes: - db_data:/var/lib/postgresql/data search: image: docker.elastic.co/elasticsearch/elasticsearch:7.17.0 environment: cluster.name: fusionauth bootstrap.memory_lock: "true" discovery.type: single-node ES_JAVA_OPTS: ${ES_JAVA_OPTS} healthcheck: test: [ "CMD", "curl", "--fail" ,"--write-out", "'HTTP %{http_code}'", "--silent", "--output", "/dev/null", "http://localhost:9200/" ] interval: 5s timeout: 5s retries: 5 networks: - search_net restart: unless-stopped ulimits: memlock: soft: -1 hard: -1 volumes: - search_data:/usr/share/elasticsearch/data fusionauth: image: fusionauth/fusionauth-app:1.47.1 depends_on: db: condition: service_healthy search: condition: service_healthy environment: DATABASE_URL: jdbc:postgresql://db:5432/fusionauth DATABASE_ROOT_USERNAME: ${POSTGRES_USER} DATABASE_ROOT_PASSWORD: ${POSTGRES_PASSWORD} DATABASE_USERNAME: ${DATABASE_USERNAME} DATABASE_PASSWORD: ${DATABASE_PASSWORD} FUSIONAUTH_APP_MEMORY: ${FUSIONAUTH_APP_MEMORY} FUSIONAUTH_APP_RUNTIME_MODE: development FUSIONAUTH_APP_URL: http://fusionauth:9011 SEARCH_SERVERS: http://search:9200 SEARCH_TYPE: elasticsearch networks: - db_net - search_net restart: unless-stopped ports: - 9011:9011 volumes: - fusionauth_config:/usr/local/fusionauth/config networks: db_net: driver: bridge search_net: driver: bridge volumes: db_data: fusionauth_config: search_data:
-
@alex-patterson said in Installing FusionAuth 1.47.1 in Docker:
@cwkoh are you able to share the
docker-compose.yml
that you are using?Is it our default download example?
curl -fsSL https://raw.githubusercontent.com/FusionAuth/fusionauth-containers/master/docker/fusionauth/docker-compose.yml > docker-compose.yml &&
curl -fsSL https://raw.githubusercontent.com/FusionAuth/fusionauth-containers/master/docker/fusionauth/.env > .env &&
docker-compose upHi Alex,
It is the same, just that I changed the tag from latest to 1.47.1
version: '3' services: db: image: postgres:12.9 environment: PGDATA: /var/lib/postgresql/data/pgdata POSTGRES_USER: ${POSTGRES_USER} POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} healthcheck: test: [ "CMD-SHELL", "pg_isready -U postgres" ] interval: 5s timeout: 5s retries: 5 networks: - db_net restart: unless-stopped volumes: - db_data:/var/lib/postgresql/data search: image: docker.elastic.co/elasticsearch/elasticsearch:7.17.0 environment: cluster.name: fusionauth bootstrap.memory_lock: "true" discovery.type: single-node ES_JAVA_OPTS: ${ES_JAVA_OPTS} healthcheck: test: [ "CMD", "curl", "--fail" ,"--write-out", "'HTTP %{http_code}'", "--silent", "--output", "/dev/null", "http://localhost:9200/" ] interval: 5s timeout: 5s retries: 5 networks: - search_net restart: unless-stopped ulimits: memlock: soft: -1 hard: -1 volumes: - search_data:/usr/share/elasticsearch/data fusionauth: image: fusionauth/fusionauth-app:1.47.1 depends_on: db: condition: service_healthy search: condition: service_healthy environment: DATABASE_URL: jdbc:postgresql://db:5432/fusionauth DATABASE_ROOT_USERNAME: ${POSTGRES_USER} DATABASE_ROOT_PASSWORD: ${POSTGRES_PASSWORD} DATABASE_USERNAME: ${DATABASE_USERNAME} DATABASE_PASSWORD: ${DATABASE_PASSWORD} FUSIONAUTH_APP_MEMORY: ${FUSIONAUTH_APP_MEMORY} FUSIONAUTH_APP_RUNTIME_MODE: development FUSIONAUTH_APP_URL: http://fusionauth:9011 SEARCH_SERVERS: http://search:9200 SEARCH_TYPE: elasticsearch networks: - db_net - search_net restart: unless-stopped ports: - 9011:9011 volumes: - fusionauth_config:/usr/local/fusionauth/config networks: db_net: driver: bridge search_net: driver: bridge volumes: db_data: fusionauth_config: search_data:
-
@cwkoh can you do
docker logs e0133c4b9340
and send it over? -
@alex-patterson Here is the log part1
root@ctlmisubuntu:~# docker logs e0133c4b9340 {"type": "server", "timestamp": "2023-10-11T08:07:45,653Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "version[7.17.0], pid[6], build[default/docker/bee86328705acaa9a6daede7140defd4d9ec56bd/2022-01-28T08:36:04.875279988Z], OS[Linux/5.15.0-86-generic/amd64], JVM[Eclipse Adoptium/OpenJDK 64-Bit Server VM/17.0.1/17.0.1+12]" } {"type": "server", "timestamp": "2023-10-11T08:07:45,663Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "JVM home [/usr/share/elasticsearch/jdk], using bundled JDK [true]" } {"type": "server", "timestamp": "2023-10-11T08:07:45,664Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "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-16341700169936797484, -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]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,362Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [aggs-matrix-stats]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,363Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [analysis-common]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,363Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [constant-keyword]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,365Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [frozen-indices]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,365Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [ingest-common]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,373Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [ingest-geoip]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,374Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [ingest-user-agent]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,374Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [kibana]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,378Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [lang-expression]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,384Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [lang-mustache]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,384Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [lang-painless]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,385Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [legacy-geo]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,386Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [mapper-extras]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,386Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [mapper-version]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,387Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [parent-join]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,387Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [percolator]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,389Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [rank-eval]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,389Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [reindex]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,390Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [repositories-metering-api]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,391Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [repository-encrypted]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,391Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [repository-url]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,393Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [runtime-fields-common]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,393Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [search-business-rules]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,395Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [searchable-snapshots]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,395Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [snapshot-repo-test-kit]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,396Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [spatial]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,397Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [transform]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,398Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [transport-netty4]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,398Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [unsigned-long]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,399Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [vector-tile]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,399Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [vectors]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,400Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [wildcard]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,400Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-aggregate-metric]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,401Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-analytics]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,401Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-async]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,402Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-async-search]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,402Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-autoscaling]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,403Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-ccr]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,403Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-core]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,404Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-data-streams]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,405Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-deprecation]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,406Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-enrich]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,407Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-eql]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,407Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-fleet]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,408Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-graph]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,408Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-identity-provider]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,408Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-ilm]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,409Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-logstash]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,410Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-ml]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,410Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-monitoring]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,411Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-ql]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,411Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-rollup]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,413Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-security]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,414Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-shutdown]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,414Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-sql]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,414Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-stack]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,415Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-text-structure]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,416Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-voting-only-node]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,416Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "loaded module [x-pack-watcher]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,418Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "no plugins loaded" } {"type": "server", "timestamp": "2023-10-11T08:07:52,578Z", "level": "INFO", "component": "o.e.e.NodeEnvironment", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "using [1] data paths, mounts [[/usr/share/elasticsearch/data (/dev/mapper/ubuntu--vg-ubuntu--lv)]], net usable_space [16.4gb], net total_space [27.4gb], types [ext4]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,580Z", "level": "INFO", "component": "o.e.e.NodeEnvironment", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "heap size [512mb], compressed ordinary object pointers [true]" } {"type": "server", "timestamp": "2023-10-11T08:07:52,643Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "node name [e0133c4b9340], node ID [Q4a4YDxcSgae5ca1IR5GSg], cluster name [fusionauth], roles [transform, data_frozen, master, remote_cluster_client, data, ml, data_content, data_hot, data_warm, data_cold, ingest]" } {"type": "server", "timestamp": "2023-10-11T08:08:10,149Z", "level": "INFO", "component": "o.e.x.m.p.l.CppLogMessageHandler", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "[controller/216] [Main.cc@122] controller (64 bit): Version 7.17.0 (Build 447aed7cba032c) Copyright (c) 2022 Elasticsearch BV" } {"type": "server", "timestamp": "2023-10-11T08:08:12,459Z", "level": "INFO", "component": "o.e.x.s.a.s.FileRolesStore", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "parsed [0] roles from file [/usr/share/elasticsearch/config/roles.yml]" } {"type": "server", "timestamp": "2023-10-11T08:08:13,998Z", "level": "INFO", "component": "o.e.i.g.ConfigDatabases", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "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" } {"type": "server", "timestamp": "2023-10-11T08:08:14,001Z", "level": "INFO", "component": "o.e.i.g.DatabaseNodeService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "initialized database registry, using geoip-databases directory [/tmp/elasticsearch-16341700169936797484/geoip-databases/Q4a4YDxcSgae5ca1IR5GSg]" } {"type": "server", "timestamp": "2023-10-11T08:08:15,984Z", "level": "INFO", "component": "o.e.t.NettyAllocator", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "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}]" } {"type": "server", "timestamp": "2023-10-11T08:08:16,332Z", "level": "INFO", "component": "o.e.d.DiscoveryModule", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "using discovery type [single-node] and seed hosts providers [settings]" } {"type": "server", "timestamp": "2023-10-11T08:08:17,639Z", "level": "INFO", "component": "o.e.g.DanglingIndicesState", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "gateway.auto_import_dangling_indices is disabled, dangling indices will not be automatically detected or imported and must be managed manually" } {"type": "server", "timestamp": "2023-10-11T08:08:19,214Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "initialized" } {"type": "server", "timestamp": "2023-10-11T08:08:19,215Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "starting ..." } {"type": "server", "timestamp": "2023-10-11T08:08:19,735Z", "level": "INFO", "component": "o.e.x.s.c.f.PersistentCache", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "persistent cache index loaded" } {"type": "server", "timestamp": "2023-10-11T08:08:19,738Z", "level": "INFO", "component": "o.e.x.d.l.DeprecationIndexingComponent", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "deprecation component started" } {"type": "server", "timestamp": "2023-10-11T08:08:20,027Z", "level": "INFO", "component": "o.e.t.TransportService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "publish_address {192.168.48.2:9300}, bound_addresses {0.0.0.0:9300}" } {"type": "server", "timestamp": "2023-10-11T08:08:20,144Z", "level": "INFO", "component": "o.e.x.m.Monitoring", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "creating template [.monitoring-alerts-7] with version [7]" } {"type": "server", "timestamp": "2023-10-11T08:08:20,183Z", "level": "INFO", "component": "o.e.x.m.Monitoring", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "creating template [.monitoring-es] with version [7]" } {"type": "server", "timestamp": "2023-10-11T08:08:20,190Z", "level": "INFO", "component": "o.e.x.m.Monitoring", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "creating template [.monitoring-kibana] with version [7]" } {"type": "server", "timestamp": "2023-10-11T08:08:20,203Z", "level": "INFO", "component": "o.e.x.m.Monitoring", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "creating template [.monitoring-logstash] with version [7]" } {"type": "server", "timestamp": "2023-10-11T08:08:20,213Z", "level": "INFO", "component": "o.e.x.m.Monitoring", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "creating template [.monitoring-beats] with version [7]" } {"type": "server", "timestamp": "2023-10-11T08:08:22,355Z", "level": "WARN", "component": "o.e.b.BootstrapChecks", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]" } {"type": "server", "timestamp": "2023-10-11T08:08:22,379Z", "level": "INFO", "component": "o.e.c.c.Coordinator", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "setting initial configuration to VotingConfiguration{Q4a4YDxcSgae5ca1IR5GSg}" } {"type": "server", "timestamp": "2023-10-11T08:08:23,804Z", "level": "INFO", "component": "o.e.c.s.MasterService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "elected-as-master ([1] nodes joined)[{e0133c4b9340}{Q4a4YDxcSgae5ca1IR5GSg}{_rvIwe7cQPGSz0ZE8FjIsw}{192.168.48.2}{192.168.48.2:9300}{cdfhilmrstw} elect leader, _BECOME_MASTER_TASK_, _FINISH_ELECTION_], term: 1, version: 1, delta: master node changed {previous [], current [{e0133c4b9340}{Q4a4YDxcSgae5ca1IR5GSg}{_rvIwe7cQPGSz0ZE8FjIsw}{192.168.48.2}{192.168.48.2:9300}{cdfhilmrstw}]}" } {"type": "server", "timestamp": "2023-10-11T08:08:24,340Z", "level": "INFO", "component": "o.e.c.c.CoordinationState", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "cluster UUID set to [2kPj1lwhR1mgPCP-86aABQ]" } {"type": "server", "timestamp": "2023-10-11T08:08:25,227Z", "level": "INFO", "component": "o.e.c.s.ClusterApplierService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "master node changed {previous [], current [{e0133c4b9340}{Q4a4YDxcSgae5ca1IR5GSg}{_rvIwe7cQPGSz0ZE8FjIsw}{192.168.48.2}{192.168.48.2:9300}{cdfhilmrstw}]}, term: 1, version: 1, reason: Publication{term=1, version=1}" } {"type": "server", "timestamp": "2023-10-11T08:08:25,388Z", "level": "INFO", "component": "o.e.h.AbstractHttpServerTransport", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "publish_address {192.168.48.2:9200}, bound_addresses {0.0.0.0:9200}", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:25,390Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "started", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:25,903Z", "level": "INFO", "component": "o.e.g.GatewayService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "recovered [0] indices into cluster_state", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:26,566Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index template [.ml-state] for index patterns [.ml-state*]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:27,838Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index template [.ml-anomalies-] for index patterns [.ml-anomalies-*]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:28,446Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index template [.ml-notifications-000002] for index patterns [.ml-notifications-000002]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:29,489Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index template [.ml-stats] for index patterns [.ml-stats-*]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:30,417Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding component template [data-streams-mappings]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:31,222Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding component template [logs-mappings]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:31,897Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding component template [logs-settings]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:32,443Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding component template [metrics-mappings]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:33,475Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding component template [synthetics-mappings]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:34,737Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding component template [metrics-settings]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:35,672Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding component template [synthetics-settings]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:36,890Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index template [.watch-history-13] for index patterns [.watcher-history-13*]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:37,618Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index template [ilm-history] for index patterns [ilm-history-5*]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:38,444Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index template [.slm-history] for index patterns [.slm-history-5*]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:39,193Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding component template [.deprecation-indexing-mappings]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:40,408Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding component template [.deprecation-indexing-settings]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:41,190Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index template [logs] for index patterns [logs-*-*]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:41,764Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index template [metrics] for index patterns [metrics-*-*]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:42,283Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index template [synthetics] for index patterns [synthetics-*-*]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" }
-
@alex-patterson Log part2
{"type": "server", "timestamp": "2023-10-11T08:08:42,871Z", "level": "INFO", "component": "o.e.c.m.MetadataIndexTemplateService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index template [.deprecation-indexing-template] for index patterns [.logs-deprecation.*]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:44,694Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index lifecycle policy [ml-size-based-ilm-policy]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:45,678Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index lifecycle policy [logs]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:46,445Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index lifecycle policy [metrics]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:47,022Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index lifecycle policy [synthetics]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:47,906Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index lifecycle policy [7-days-default]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:48,546Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index lifecycle policy [30-days-default]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:49,538Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index lifecycle policy [90-days-default]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:50,357Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index lifecycle policy [180-days-default]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:51,858Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index lifecycle policy [365-days-default]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:52,501Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index lifecycle policy [watch-history-ilm-policy]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:53,276Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index lifecycle policy [ilm-history-ilm-policy]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:53,988Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index lifecycle policy [slm-history-ilm-policy]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:54,899Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index lifecycle policy [.deprecation-indexing-ilm-policy]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:55,772Z", "level": "INFO", "component": "o.e.x.i.a.TransportPutLifecycleAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding index lifecycle policy [.fleet-actions-results-ilm-policy]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:55,892Z", "level": "ERROR", "component": "o.e.x.m.e.l.LocalExporter", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "failed to set monitoring pipeline [xpack_monitoring_7]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" , "stacktrace": ["org.elasticsearch.cluster.metadata.ProcessClusterEventTimeoutException: failed to process cluster event (put-pipeline-xpack_monitoring_7) within 30s", "at org.elasticsearch.cluster.service.MasterService$Batcher.lambda$onTimeout$0(MasterService.java:158) [elasticsearch-7.17.0.jar:7.17.0]", "at java.util.ArrayList.forEach(ArrayList.java:1511) [?:?]", "at org.elasticsearch.cluster.service.MasterService$Batcher.lambda$onTimeout$1(MasterService.java:157) [elasticsearch-7.17.0.jar:7.17.0]", "at org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run(ThreadContext.java:718) [elasticsearch-7.17.0.jar:7.17.0]", "at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?]", "at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?]", "at java.lang.Thread.run(Thread.java:833) [?:?]"] } {"type": "server", "timestamp": "2023-10-11T08:08:56,473Z", "level": "ERROR", "component": "o.e.x.m.e.l.LocalExporter", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "failed to set monitoring pipeline [xpack_monitoring_6]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" , "stacktrace": ["org.elasticsearch.cluster.metadata.ProcessClusterEventTimeoutException: failed to process cluster event (put-pipeline-xpack_monitoring_6) within 30s", "at org.elasticsearch.cluster.service.MasterService$Batcher.lambda$onTimeout$0(MasterService.java:158) [elasticsearch-7.17.0.jar:7.17.0]", "at java.util.ArrayList.forEach(ArrayList.java:1511) [?:?]", "at org.elasticsearch.cluster.service.MasterService$Batcher.lambda$onTimeout$1(MasterService.java:157) [elasticsearch-7.17.0.jar:7.17.0]", "at org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run(ThreadContext.java:718) [elasticsearch-7.17.0.jar:7.17.0]", "at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?]", "at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?]", "at java.lang.Thread.run(Thread.java:833) [?:?]"] } {"type": "server", "timestamp": "2023-10-11T08:08:57,451Z", "level": "INFO", "component": "o.e.i.g.GeoIpDownloader", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "updating geoip databases", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:57,453Z", "level": "INFO", "component": "o.e.i.g.GeoIpDownloader", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "fetching geoip databases overview from [https://geoip.elastic.co/v1/database?elastic_geoip_service_tos=agree]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:58,477Z", "level": "INFO", "component": "o.e.i.g.GeoIpDownloader", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "updating geoip database [GeoLite2-ASN.mmdb]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:58,759Z", "level": "INFO", "component": "o.e.l.LicenseService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "license [3b4390f1-b722-4e2f-b41c-260773480f89] mode [basic] - valid", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:58,763Z", "level": "INFO", "component": "o.e.x.s.s.SecurityStatusChangeListener", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "Active license is now [BASIC]; Security is disabled", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:58,764Z", "level": "WARN", "component": "o.e.x.s.s.SecurityStatusChangeListener", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "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.17/security-minimal-setup.html to enable security.", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "deprecation.elasticsearch", "timestamp": "2023-10-11T08:08:58,768Z", "level": "CRITICAL", "component": "o.e.d.x.s.s.SecurityStatusChangeListener", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "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.17/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": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:59,061Z", "level": "INFO", "component": "o.e.c.m.MetadataCreateIndexService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "[.ds-.logs-deprecation.elasticsearch-default-2023.10.11-000001] creating index, cause [initialize_data_stream], templates [.deprecation-indexing-template], shards [1]/[1]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:59,092Z", "level": "INFO", "component": "o.e.c.r.a.AllocationService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "updating number_of_replicas to [0] for indices [.ds-.logs-deprecation.elasticsearch-default-2023.10.11-000001]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:08:59,128Z", "level": "INFO", "component": "o.e.c.m.MetadataCreateDataStreamService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding data stream [.logs-deprecation.elasticsearch-default] with write index [.ds-.logs-deprecation.elasticsearch-default-2023.10.11-000001], backing indices [], and aliases []", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:00,728Z", "level": "INFO", "component": "o.e.c.m.MetadataCreateIndexService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "[.geoip_databases] creating index, cause [auto(bulk api)], templates [], shards [1]/[0]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:02,901Z", "level": "INFO", "component": "o.e.x.i.IndexLifecycleTransition", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "moving index [.ds-.logs-deprecation.elasticsearch-default-2023.10.11-000001] from [null] to [{\"phase\":\"new\",\"action\":\"complete\",\"name\":\"complete\"}] in policy [.deprecation-indexing-ilm-policy]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:06,112Z", "level": "INFO", "component": "o.e.c.r.a.AllocationService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.geoip_databases][0]]]).", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:07,366Z", "level": "INFO", "component": "o.e.c.m.MetadataMappingService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "[.ds-.logs-deprecation.elasticsearch-default-2023.10.11-000001/lobHyJpQTvuMBmY8iHwfGQ] update_mapping [_doc]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:08,256Z", "level": "INFO", "component": "o.e.x.i.IndexLifecycleTransition", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "moving index [.ds-.logs-deprecation.elasticsearch-default-2023.10.11-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": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:09,090Z", "level": "INFO", "component": "o.e.c.m.MetadataCreateIndexService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "[.ds-ilm-history-5-2023.10.11-000001] creating index, cause [initialize_data_stream], templates [ilm-history], shards [1]/[0]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:09,095Z", "level": "INFO", "component": "o.e.c.m.MetadataCreateDataStreamService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "adding data stream [ilm-history-5] with write index [.ds-ilm-history-5-2023.10.11-000001], backing indices [], and aliases []", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:10,598Z", "level": "INFO", "component": "o.e.x.i.IndexLifecycleTransition", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "moving index [.ds-.logs-deprecation.elasticsearch-default-2023.10.11-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": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:10,604Z", "level": "INFO", "component": "o.e.x.i.IndexLifecycleTransition", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "moving index [.ds-ilm-history-5-2023.10.11-000001] from [null] to [{\"phase\":\"new\",\"action\":\"complete\",\"name\":\"complete\"}] in policy [ilm-history-ilm-policy]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:11,939Z", "level": "INFO", "component": "o.e.x.i.IndexLifecycleTransition", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "moving index [.ds-ilm-history-5-2023.10.11-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": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:13,343Z", "level": "INFO", "component": "o.e.c.r.a.AllocationService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.ds-ilm-history-5-2023.10.11-000001][0]]]).", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:15,039Z", "level": "INFO", "component": "o.e.i.g.DatabaseNodeService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "downloading geoip database [GeoLite2-ASN.mmdb] to [/tmp/elasticsearch-16341700169936797484/geoip-databases/Q4a4YDxcSgae5ca1IR5GSg/GeoLite2-ASN.mmdb.tmp.gz]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:15,103Z", "level": "INFO", "component": "o.e.i.g.GeoIpDownloader", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "updated geoip database [GeoLite2-ASN.mmdb]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:15,104Z", "level": "INFO", "component": "o.e.x.i.IndexLifecycleTransition", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "moving index [.ds-ilm-history-5-2023.10.11-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": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:15,201Z", "level": "INFO", "component": "o.e.i.g.GeoIpDownloader", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "updating geoip database [GeoLite2-City.mmdb]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:15,820Z", "level": "INFO", "component": "o.e.i.g.DatabaseNodeService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "successfully reloaded changed geoip database file [/tmp/elasticsearch-16341700169936797484/geoip-databases/Q4a4YDxcSgae5ca1IR5GSg/GeoLite2-ASN.mmdb]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:41,264Z", "level": "INFO", "component": "o.e.i.g.DatabaseNodeService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "downloading geoip database [GeoLite2-City.mmdb] to [/tmp/elasticsearch-16341700169936797484/geoip-databases/Q4a4YDxcSgae5ca1IR5GSg/GeoLite2-City.mmdb.tmp.gz]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:41,315Z", "level": "INFO", "component": "o.e.i.g.GeoIpDownloader", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "updated geoip database [GeoLite2-City.mmdb]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:41,318Z", "level": "INFO", "component": "o.e.i.g.GeoIpDownloader", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "updating geoip database [GeoLite2-Country.mmdb]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:43,841Z", "level": "INFO", "component": "o.e.i.g.DatabaseNodeService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "successfully reloaded changed geoip database file [/tmp/elasticsearch-16341700169936797484/geoip-databases/Q4a4YDxcSgae5ca1IR5GSg/GeoLite2-City.mmdb]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:47,235Z", "level": "INFO", "component": "o.e.i.g.DatabaseNodeService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "downloading geoip database [GeoLite2-Country.mmdb] to [/tmp/elasticsearch-16341700169936797484/geoip-databases/Q4a4YDxcSgae5ca1IR5GSg/GeoLite2-Country.mmdb.tmp.gz]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:47,336Z", "level": "INFO", "component": "o.e.i.g.GeoIpDownloader", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "updated geoip database [GeoLite2-Country.mmdb]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-11T08:09:47,596Z", "level": "INFO", "component": "o.e.i.g.DatabaseNodeService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "successfully reloaded changed geoip database file [/tmp/elasticsearch-16341700169936797484/geoip-databases/Q4a4YDxcSgae5ca1IR5GSg/GeoLite2-Country.mmdb]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-12T00:59:00,002Z", "level": "INFO", "component": "o.e.x.m.MlDailyMaintenanceService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "triggering scheduled [ML] maintenance tasks", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-12T00:59:00,069Z", "level": "INFO", "component": "o.e.x.m.a.TransportDeleteExpiredDataAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "Deleting expired data", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-12T00:59:00,141Z", "level": "INFO", "component": "o.e.x.m.j.r.UnusedStatsRemover", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "Successfully deleted [0] unused stats documents", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-12T00:59:00,143Z", "level": "INFO", "component": "o.e.x.m.a.TransportDeleteExpiredDataAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "Completed deletion of expired ML data", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-12T00:59:00,146Z", "level": "INFO", "component": "o.e.x.m.MlDailyMaintenanceService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "Successfully completed [ML] maintenance task: triggerDeleteExpiredDataTask", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-12T01:30:00,012Z", "level": "INFO", "component": "o.e.x.s.SnapshotRetentionTask", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "starting SLM retention snapshot cleanup task", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-12T01:30:00,015Z", "level": "INFO", "component": "o.e.x.s.SnapshotRetentionTask", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "there are no repositories to fetch, SLM retention snapshot cleanup task complete", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-13T00:59:00,001Z", "level": "INFO", "component": "o.e.x.m.MlDailyMaintenanceService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "triggering scheduled [ML] maintenance tasks", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-13T00:59:00,009Z", "level": "INFO", "component": "o.e.x.m.a.TransportDeleteExpiredDataAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "Deleting expired data", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-13T00:59:00,016Z", "level": "INFO", "component": "o.e.x.m.j.r.UnusedStatsRemover", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "Successfully deleted [0] unused stats documents", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-13T00:59:00,018Z", "level": "INFO", "component": "o.e.x.m.a.TransportDeleteExpiredDataAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "Completed deletion of expired ML data", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-13T00:59:00,018Z", "level": "INFO", "component": "o.e.x.m.MlDailyMaintenanceService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "Successfully completed [ML] maintenance task: triggerDeleteExpiredDataTask", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-13T01:30:00,001Z", "level": "INFO", "component": "o.e.x.s.SnapshotRetentionTask", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "starting SLM retention snapshot cleanup task", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-13T01:30:00,001Z", "level": "INFO", "component": "o.e.x.s.SnapshotRetentionTask", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "there are no repositories to fetch, SLM retention snapshot cleanup task complete", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-14T00:59:00,000Z", "level": "INFO", "component": "o.e.x.m.MlDailyMaintenanceService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "triggering scheduled [ML] maintenance tasks", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-14T00:59:00,002Z", "level": "INFO", "component": "o.e.x.m.a.TransportDeleteExpiredDataAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "Deleting expired data", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-14T00:59:00,009Z", "level": "INFO", "component": "o.e.x.m.j.r.UnusedStatsRemover", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "Successfully deleted [0] unused stats documents", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-14T00:59:00,011Z", "level": "INFO", "component": "o.e.x.m.a.TransportDeleteExpiredDataAction", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "Completed deletion of expired ML data", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-14T00:59:00,011Z", "level": "INFO", "component": "o.e.x.m.MlDailyMaintenanceService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "Successfully completed [ML] maintenance task: triggerDeleteExpiredDataTask", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-14T01:30:00,001Z", "level": "INFO", "component": "o.e.x.s.SnapshotRetentionTask", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "starting SLM retention snapshot cleanup task", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-14T01:30:00,001Z", "level": "INFO", "component": "o.e.x.s.SnapshotRetentionTask", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "there are no repositories to fetch, SLM retention snapshot cleanup task complete", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-14T02:37:36,406Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "stopping ...", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" } {"type": "server", "timestamp": "2023-10-14T02:37:36,438Z", "level": "INFO", "component": "o.e.x.w.WatcherService", "cluster.name": "fusionauth", "node.name": "e0133c4b9340", "message": "stopping watch service, reason [shutdown initiated]", "cluster.uuid": "2kPj1lwhR1mgPCP-86aABQ", "node.id": "Q4a4YDxcSgae5ca1IR5GSg" }
-
@alex-patterson Hi Alex I can attached the whole log here due to the length limitation, it there a better way to send this over?
-
@cwkoh sorry about the limitations, could you jump on our slack and attach the whole thing? Even as a compressed file?
https://fusionauth.io/community
Then Join Our Slack link.