OpenCTI-Platform / connectors

OpenCTI Connectors
https://www.opencti.io
Apache License 2.0
376 stars 411 forks source link

Data not displayed [Mitre-Atlas Connector] and Elasticsearch error #2443

Open pesquisa1234 opened 3 months ago

pesquisa1234 commented 3 months ago

Prerequisites

Description

I have create the Mitre-Atlas connector with the docker configuration given below.

connector-mitre-atlas:
    image: opencti/connector-mitre-atlas:6.2.11
    environment:
      - OPENCTI_URL=http://opencti:8080
      - OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
      - CONNECTOR_ID=70e60ebe-5b5b-4899-8a70-cdd573a0087c
      - "CONNECTOR_NAME=MITRE ATLAS"
      - CONNECTOR_SCOPE=identity,attack-pattern,course-of-action,relationship,x-mitre-collection,x-mitre-matrix,x-mitre-tactic
      - CONNECTOR_CONFIDENCE_LEVEL=75 # From 0 (Unknown) to 100 (Fully trusted)
      - CONNECTOR_RUN_AND_TERMINATE=false
      - CONNECTOR_LOG_LEVEL=error
      - MITRE_ATLAS_URL=https://raw.githubusercontent.com/mitre-atlas/atlas-navigator-data/main/dist/stix-atlas.json
      - MITRE_ATLAS_INTERVAL=7 # In days, must be strictly greater than 1
    restart: always

And Docker compose file:

`version: '3'
services:
  redis:
    image: redis:7.2.5
    restart: always
    volumes:
      - redisdata:/data
  elasticsearch:
    image: docker.elastic.co/elasticsearch/elasticsearch:8.13.4
    volumes:
      - esdata:/usr/share/elasticsearch/data
    environment:
      # Comment-out the line below for a cluster of multiple nodes
      - discovery.type=single-node
      # Uncomment the line below below for a cluster of multiple nodes
      # - cluster.name=docker-cluster
      - xpack.ml.enabled=false
      - xpack.security.enabled=false
      - thread_pool.search.queue_size=5000
      - logger.org.elasticsearch.discovery="ERROR"
      - "ES_JAVA_OPTS=-Xms${ELASTIC_MEMORY_SIZE} -Xmx${ELASTIC_MEMORY_SIZE}"
    restart: always
    ulimits:
      memlock:
        soft: -1
        hard: -1
      nofile:
        soft: 65536
        hard: 65536
  minio:
    image: minio/minio:RELEASE.2024-05-28T17-19-04Z # Use "minio/minio:RELEASE.2024-05-28T17-19-04Z-cpuv1" to troubleshoot compatibility issues with CPU
    volumes:
      - s3data:/data
    ports:
      - "9000:9000"
    environment:
      MINIO_ROOT_USER: ${MINIO_ROOT_USER}
      MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}    
    command: server /data
    restart: always
  rabbitmq:
    image: rabbitmq:3.13-management
    environment:
      - RABBITMQ_DEFAULT_USER=${RABBITMQ_DEFAULT_USER}
      - RABBITMQ_DEFAULT_PASS=${RABBITMQ_DEFAULT_PASS}
      - RABBITMQ_NODENAME=rabbit01@localhost
    volumes:
      - amqpdata:/var/lib/rabbitmq
    restart: always
  opencti:
    image: opencti/platform:6.2.11
    environment:
      - NODE_OPTIONS=--max-old-space-size=8096
      - APP__PORT=8080
      - APP__BASE_URL=${OPENCTI_BASE_URL}
      - APP__ADMIN__EMAIL=${OPENCTI_ADMIN_EMAIL}
      - APP__ADMIN__PASSWORD=${OPENCTI_ADMIN_PASSWORD}
      - APP__ADMIN__TOKEN=${OPENCTI_ADMIN_TOKEN}
      - APP__APP_LOGS__LOGS_LEVEL=error
      - REDIS__HOSTNAME=redis
      - REDIS__PORT=6379
      - ELASTICSEARCH__URL=http://elasticsearch:9200
      - MINIO__ENDPOINT=minio
      - MINIO__PORT=9000
      - MINIO__USE_SSL=false
      - MINIO__ACCESS_KEY=${MINIO_ROOT_USER}
      - MINIO__SECRET_KEY=${MINIO_ROOT_PASSWORD}
      - RABBITMQ__HOSTNAME=rabbitmq
      - RABBITMQ__PORT=5672
      - RABBITMQ__PORT_MANAGEMENT=15672
      - RABBITMQ__MANAGEMENT_SSL=false
      - RABBITMQ__USERNAME=${RABBITMQ_DEFAULT_USER}
      - RABBITMQ__PASSWORD=${RABBITMQ_DEFAULT_PASS}
      - SMTP__HOSTNAME=${SMTP_HOSTNAME}
      - SMTP__PORT=25
      - PROVIDERS__LOCAL__STRATEGY=LocalStrategy
    ports:
      - "8080:8080"
    depends_on:
      - redis
      - elasticsearch
      - minio
      - rabbitmq
    restart: always
  worker:
    image: opencti/worker:6.2.11
    environment:
      - OPENCTI_URL=http://opencti:8080
      - OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
      - WORKER_LOG_LEVEL=info
    depends_on:
      - opencti
    deploy:
      mode: replicated
      replicas: 3
    restart: always
  connector-export-file-stix:
    image: opencti/connector-export-file-stix:6.2.11
    environment:
      - OPENCTI_URL=http://opencti:8080
      - OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
      - CONNECTOR_ID=${CONNECTOR_EXPORT_FILE_STIX_ID} # Valid UUIDv4
      - CONNECTOR_TYPE=INTERNAL_EXPORT_FILE
      - CONNECTOR_NAME=ExportFileStix2
      - CONNECTOR_SCOPE=application/json
      - CONNECTOR_LOG_LEVEL=info
    restart: always
    depends_on:
      - opencti
  connector-export-file-csv:
    image: opencti/connector-export-file-csv:6.2.11
    environment:
      - OPENCTI_URL=http://opencti:8080
      - OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
      - CONNECTOR_ID=${CONNECTOR_EXPORT_FILE_CSV_ID} # Valid UUIDv4
      - CONNECTOR_TYPE=INTERNAL_EXPORT_FILE
      - CONNECTOR_NAME=ExportFileCsv
      - CONNECTOR_SCOPE=text/csv
      - CONNECTOR_LOG_LEVEL=info
    restart: always
    depends_on:
      - opencti
  connector-export-file-txt:
    image: opencti/connector-export-file-txt:6.2.11
    environment:
      - OPENCTI_URL=http://opencti:8080
      - OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
      - CONNECTOR_ID=${CONNECTOR_EXPORT_FILE_TXT_ID} # Valid UUIDv4
      - CONNECTOR_TYPE=INTERNAL_EXPORT_FILE
      - CONNECTOR_NAME=ExportFileTxt
      - CONNECTOR_SCOPE=text/plain
      - CONNECTOR_LOG_LEVEL=info
    restart: always
    depends_on:
      - opencti
  connector-import-file-stix:
    image: opencti/connector-import-file-stix:6.2.11
    environment:
      - OPENCTI_URL=http://opencti:8080
      - OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
      - CONNECTOR_ID=${CONNECTOR_IMPORT_FILE_STIX_ID} # Valid UUIDv4
      - CONNECTOR_TYPE=INTERNAL_IMPORT_FILE
      - CONNECTOR_NAME=ImportFileStix
      - CONNECTOR_VALIDATE_BEFORE_IMPORT=true # Validate any bundle before import
      - CONNECTOR_SCOPE=application/json,text/xml
      - CONNECTOR_AUTO=true # Enable/disable auto-import of file
      - CONNECTOR_LOG_LEVEL=info
    restart: always
    depends_on:
      - opencti
  connector-import-document:
    image: opencti/connector-import-document:6.2.11
    environment:
      - OPENCTI_URL=http://opencti:8080
      - OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
      - CONNECTOR_ID=${CONNECTOR_IMPORT_DOCUMENT_ID} # Valid UUIDv4
      - CONNECTOR_TYPE=INTERNAL_IMPORT_FILE
      - CONNECTOR_NAME=ImportDocument
      - CONNECTOR_VALIDATE_BEFORE_IMPORT=true # Validate any bundle before import
      - CONNECTOR_SCOPE=application/pdf,text/plain,text/html
      - CONNECTOR_AUTO=true # Enable/disable auto-import of file
      - CONNECTOR_ONLY_CONTEXTUAL=false # Only extract data related to an entity (a report, a threat actor, etc.)
      - CONNECTOR_CONFIDENCE_LEVEL=15 # From 0 (Unknown) to 100 (Fully trusted)
      - CONNECTOR_LOG_LEVEL=info
      - IMPORT_DOCUMENT_CREATE_INDICATOR=true
    restart: always
    depends_on:
      - opencti
  connector-analysis:
    image: opencti/connector-import-document:6.2.11
    environment:
      - OPENCTI_URL=http://opencti:8080
      - OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
      - CONNECTOR_ID=${CONNECTOR_ANALYSIS_ID} # Valid UUIDv4
      - CONNECTOR_TYPE=INTERNAL_ANALYSIS
      - CONNECTOR_NAME=ImportDocumentAnalysis
      - CONNECTOR_VALIDATE_BEFORE_IMPORT=false # Validate any bundle before import
      - CONNECTOR_SCOPE=application/pdf,text/plain,text/html
      - CONNECTOR_AUTO=true # Enable/disable auto-import of file
      - CONNECTOR_ONLY_CONTEXTUAL=false # Only extract data related to an entity (a report, a threat actor, etc.)
      - CONNECTOR_CONFIDENCE_LEVEL=15 # From 0 (Unknown) to 100 (Fully trusted)
      - CONNECTOR_LOG_LEVEL=info
    restart: always
    depends_on:
      - opencti

volumes:
  esdata:
  s3data:
  redisdata:
  amqpdata:

My env file:

OPENCTI_ADMIN_EMAIL=XXXX
OPENCTI_ADMIN_PASSWORD=XXXX
OPENCTI_ADMIN_TOKEN=1ebdf94d-f6b5-4a2a-8479-fa5a7a0111c8
OPENCTI_BASE_URL=http://localhost:8080
MINIO_ROOT_USER=admin
MINIO_ROOT_PASSWORD=XXXXX
RABBITMQ_DEFAULT_USER=opencti
RABBITMQ_DEFAULT_PASS=XXXXXXXX
CONNECTOR_EXPORT_FILE_STIX_ID=06852473-08b6-4852-bbd5-0b14a666fc57
CONNECTOR_EXPORT_FILE_CSV_ID=116af52b-6899-418b-9d69-f0e6266ff683
CONNECTOR_EXPORT_FILE_TXT_ID=dc6f5a89-99c9-4b93-84eb-e752ebca8a84
CONNECTOR_IMPORT_FILE_STIX_ID=ef27300b-87a4-44fc-9d8e-39f5aaf76150
CONNECTOR_IMPORT_DOCUMENT_ID=4b3dc4d2-0ca8-452b-ab54-eaca2bdfe434
CONNECTOR_ANALYSIS_ID=922c4165-6beb-492b-b17f-5d661424dde2
SMTP_HOSTNAME=localhost
ELASTIC_MEMORY_SIZE=4G

I just can't connect any connectors, the OpenCTI is UP but I don't get any connector information or graphs. I get Elastic Search container error and the openCTI container error too.

Environment

  1. OS Ubuntu server 22.04.4 LTS
  2. OpenCTI version: 2.2.11
  3. OpenCTI client: { e.g. frontend or python }
  4. Other environment details: I am using a VM given by the company I work

Reproducible Steps

My elastic Search log:

{"@timestamp":"2024-08-02T12:53:43.092Z", "log.level": "INFO", "message":"Using [jdk] native provider and native methods for [Linux]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.nativeaccess.NativeAccess","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:44.644Z", "log.level": "INFO", "message":"Java vector incubator API enabled; uses preferredBitSize=256; FMA enabled", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.apache.lucene.internal.vectorization.PanamaVectorizationProvider","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:47.135Z", "log.level": "INFO", "message":"version[8.13.4], pid[69], build[docker/da95df118650b55a500dcc181889ac35c6d8da7c/2024-05-06T22:04:45.107454559Z], OS[Linux/5.15.0-94-generic/amd64], JVM[Oracle Corporation/OpenJDK 64-Bit Server VM/21.0.2/21.0.2+13-58]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.node.Node","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:47.137Z", "log.level": "INFO", "message":"JVM home [/usr/share/elasticsearch/jdk], using bundled JDK [true]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.node.Node","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:47.137Z", "log.level": "INFO", "message":"JVM arguments [-Des.networkaddress.cache.ttl=60, -Des.networkaddress.cache.negative.ttl=10, -Djava.security.manager=allow, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -XX:-OmitStackTraceInFastThrow, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Dlog4j2.formatMsgNoLookups=true, -Djava.locale.providers=SPI,COMPAT, --add-opens=java.base/java.io=org.elasticsearch.preallocate, --enable-native-access=org.elasticsearch.nativeaccess, -Des.cgroups.hierarchy.override=/, -XX:ReplayDataFile=logs/replay_pid%p.log, -Des.distribution.type=docker, -XX:+UseG1GC, -Djava.io.tmpdir=/tmp/elasticsearch-11643726610604085132, --add-modules=jdk.incubator.vector, -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,level,pid,tags:filecount=32,filesize=64m, -Xms4G, -Xmx4G, -XX:MaxDirectMemorySize=2147483648, -XX:G1HeapRegionSize=4m, -XX:InitiatingHeapOccupancyPercent=30, -XX:G1ReservePercent=15, --module-path=/usr/share/elasticsearch/lib, --add-modules=jdk.net, --add-modules=ALL-MODULE-PATH, -Djdk.module.main=org.elasticsearch.server]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.node.Node","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:47.138Z", "log.level": "INFO", "message":"Default Locale [en_US]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.node.Node","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.052Z", "log.level": "INFO", "message":"loaded module [repository-url]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.053Z", "log.level": "INFO", "message":"loaded module [rest-root]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.053Z", "log.level": "INFO", "message":"loaded module [x-pack-core]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.053Z", "log.level": "INFO", "message":"loaded module [x-pack-redact]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.053Z", "log.level": "INFO", "message":"loaded module [ingest-user-agent]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.053Z", "log.level": "INFO", "message":"loaded module [x-pack-async-search]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.053Z", "log.level": "INFO", "message":"loaded module [x-pack-monitoring]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.053Z", "log.level": "INFO", "message":"loaded module [repository-s3]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.053Z", "log.level": "INFO", "message":"loaded module [x-pack-analytics]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.074Z", "log.level": "INFO", "message":"loaded module [x-pack-ent-search]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.074Z", "log.level": "INFO", "message":"loaded module [x-pack-autoscaling]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.074Z", "log.level": "INFO", "message":"loaded module [lang-painless]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.074Z", "log.level": "INFO", "message":"loaded module [x-pack-ml]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.074Z", "log.level": "INFO", "message":"loaded module [lang-mustache]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.074Z", "log.level": "INFO", "message":"loaded module [legacy-geo]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.075Z", "log.level": "INFO", "message":"loaded module [x-pack-ql]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.075Z", "log.level": "INFO", "message":"loaded module [rank-rrf]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.075Z", "log.level": "INFO", "message":"loaded module [analysis-common]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.075Z", "log.level": "INFO", "message":"loaded module [health-shards-availability]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.075Z", "log.level": "INFO", "message":"loaded module [transport-netty4]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.075Z", "log.level": "INFO", "message":"loaded module [aggregations]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.075Z", "log.level": "INFO", "message":"loaded module [ingest-common]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.075Z", "log.level": "INFO", "message":"loaded module [frozen-indices]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.075Z", "log.level": "INFO", "message":"loaded module [x-pack-identity-provider]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.076Z", "log.level": "INFO", "message":"loaded module [x-pack-text-structure]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.076Z", "log.level": "INFO", "message":"loaded module [x-pack-shutdown]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.076Z", "log.level": "INFO", "message":"loaded module [snapshot-repo-test-kit]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.076Z", "log.level": "INFO", "message":"loaded module [ml-package-loader]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.076Z", "log.level": "INFO", "message":"loaded module [kibana]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.076Z", "log.level": "INFO", "message":"loaded module [constant-keyword]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.076Z", "log.level": "INFO", "message":"loaded module [x-pack-logstash]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.076Z", "log.level": "INFO", "message":"loaded module [x-pack-ccr]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.076Z", "log.level": "INFO", "message":"loaded module [x-pack-graph]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.077Z", "log.level": "INFO", "message":"loaded module [x-pack-esql]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.077Z", "log.level": "INFO", "message":"loaded module [parent-join]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.077Z", "log.level": "INFO", "message":"loaded module [counted-keyword]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.077Z", "log.level": "INFO", "message":"loaded module [x-pack-enrich]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.077Z", "log.level": "INFO", "message":"loaded module [repositories-metering-api]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.077Z", "log.level": "INFO", "message":"loaded module [transform]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.077Z", "log.level": "INFO", "message":"loaded module [repository-azure]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.077Z", "log.level": "INFO", "message":"loaded module [repository-gcs]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.102Z", "log.level": "INFO", "message":"loaded module [spatial]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.103Z", "log.level": "INFO", "message":"loaded module [mapper-extras]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.103Z", "log.level": "INFO", "message":"loaded module [apm]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.103Z", "log.level": "INFO", "message":"loaded module [mapper-version]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.103Z", "log.level": "INFO", "message":"loaded module [x-pack-rollup]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.103Z", "log.level": "INFO", "message":"loaded module [percolator]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.103Z", "log.level": "INFO", "message":"loaded module [x-pack-stack]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.103Z", "log.level": "INFO", "message":"loaded module [data-streams]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.103Z", "log.level": "INFO", "message":"loaded module [rank-eval]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.103Z", "log.level": "INFO", "message":"loaded module [reindex]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.104Z", "log.level": "INFO", "message":"loaded module [x-pack-security]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.104Z", "log.level": "INFO", "message":"loaded module [blob-cache]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.104Z", "log.level": "INFO", "message":"loaded module [searchable-snapshots]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.104Z", "log.level": "INFO", "message":"loaded module [x-pack-slm]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.104Z", "log.level": "INFO", "message":"loaded module [snapshot-based-recoveries]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.104Z", "log.level": "INFO", "message":"loaded module [x-pack-watcher]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.104Z", "log.level": "INFO", "message":"loaded module [old-lucene-versions]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.104Z", "log.level": "INFO", "message":"loaded module [x-pack-ilm]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.104Z", "log.level": "INFO", "message":"loaded module [x-pack-inference]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.104Z", "log.level": "INFO", "message":"loaded module [x-pack-voting-only-node]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.105Z", "log.level": "INFO", "message":"loaded module [x-pack-deprecation]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.105Z", "log.level": "INFO", "message":"loaded module [x-pack-fleet]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.105Z", "log.level": "INFO", "message":"loaded module [x-pack-aggregate-metric]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.105Z", "log.level": "INFO", "message":"loaded module [x-pack-downsample]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.105Z", "log.level": "INFO", "message":"loaded module [x-pack-profiling]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.105Z", "log.level": "INFO", "message":"loaded module [ingest-geoip]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.105Z", "log.level": "INFO", "message":"loaded module [x-pack-write-load-forecaster]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.105Z", "log.level": "INFO", "message":"loaded module [search-business-rules]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.105Z", "log.level": "INFO", "message":"loaded module [wildcard]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.105Z", "log.level": "INFO", "message":"loaded module [ingest-attachment]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.110Z", "log.level": "INFO", "message":"loaded module [x-pack-apm-data]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.110Z", "log.level": "INFO", "message":"loaded module [x-pack-sql]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.110Z", "log.level": "INFO", "message":"loaded module [unsigned-long]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.110Z", "log.level": "INFO", "message":"loaded module [x-pack-async]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.110Z", "log.level": "INFO", "message":"loaded module [runtime-fields-common]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.110Z", "log.level": "INFO", "message":"loaded module [vector-tile]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.110Z", "log.level": "INFO", "message":"loaded module [lang-expression]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:58.110Z", "log.level": "INFO", "message":"loaded module [x-pack-eql]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:59.579Z", "log.level": "INFO", "message":"using [1] data paths, mounts [[/usr/share/elasticsearch/data (/dev/mapper/ubuntu--vg-ubuntu--lv)]], net usable_space [45.6gb], net total_space [61.7gb], types [ext4]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.env.NodeEnvironment","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:59.580Z", "log.level": "INFO", "message":"heap size [4gb], compressed ordinary object pointers [true]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.env.NodeEnvironment","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:53:59.644Z", "log.level": "INFO", "message":"node name [fec0bcace92e], node ID [vV1I-zM8TziWlMW-vSUdgQ], cluster name [docker-cluster], roles [data_frozen, ingest, data_cold, data, remote_cluster_client, master, data_warm, data_content, transform, data_hot, ml]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.node.Node","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:07.489Z", "log.level": "INFO", "message":"Registered local node features [data_stream.rollover.lazy, desired_node.version_deprecated, features_supported, health.dsl.info, health.extended_repository_indicator, usage.data_tiers.precalculate_stats]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.features.FeatureService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:08.079Z", "log.level": "INFO", "message":"Sending apm metrics is disabled", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.telemetry.apm.APM","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:08.082Z", "log.level": "INFO", "message":"Sending apm tracing is disabled", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.telemetry.apm.APM","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:08.158Z", "log.level": "INFO", "message":"Security is disabled", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.xpack.security.Security","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:08.449Z", "log.level": "INFO", "message":"Watcher initialized components at 2024-08-02T12:54:08.449Z", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.xpack.watcher.Watcher","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:08.508Z", "log.level": "INFO", "message":"Profiling is enabled", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.xpack.profiling.ProfilingPlugin","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:08.526Z", "log.level": "INFO", "message":"profiling index templates will not be installed or reinstalled", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.xpack.profiling.ProfilingPlugin","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:08.532Z", "log.level": "INFO", "message":"APM ingest plugin is disabled", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.xpack.apmdata.APMPlugin","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:08.944Z", "log.level": "INFO", "message":"creating NettyAllocator with the following configs: [name=elasticsearch_configured, chunk_size=1mb, suggested_max_allocation_size=1mb, factors={es.unsafe.use_netty_default_chunk_and_page_size=false, g1gc_enabled=true, g1gc_region_size=4mb}]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.transport.netty4.NettyAllocator","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:08.968Z", "log.level": "INFO", "message":"using rate limit [40mb] with [default=40mb, read=0b, write=0b, max=0b]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.indices.recovery.RecoverySettings","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:10.439Z", "log.level": "INFO", "message":"initialized", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.node.Node","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:10.440Z", "log.level": "INFO", "message":"starting ...", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.node.Node","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:10.463Z", "log.level": "INFO", "message":"persistent cache index loaded", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.xpack.searchablesnapshots.cache.full.PersistentCache","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:10.464Z", "log.level": "INFO", "message":"deprecation component started", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.xpack.deprecation.logging.DeprecationIndexingComponent","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:10.545Z", "log.level": "INFO", "message":"publish_address {172.18.0.4:9300}, bound_addresses {[::]:9300}", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.transport.TransportService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:12.078Z", "log.level": "WARN", "message":"max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]; for more information see [https://www.elastic.co/guide/en/elasticsearch/reference/8.13/_maximum_map_count_check.html]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.bootstrap.BootstrapChecks","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:12.079Z", "log.level": "INFO", "message":"this node is locked into cluster UUID [mjJnqNH_Q2-jxQ7tAUF1og] and will not attempt further cluster bootstrapping", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.cluster.coordination.ClusterBootstrapService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:12.369Z", "log.level": "INFO", "message":"elected-as-master ([1] nodes joined in term 3)[_FINISH_ELECTION_, {fec0bcace92e}{vV1I-zM8TziWlMW-vSUdgQ}{3_URy1fcQCe2-e2ZGP337A}{fec0bcace92e}{172.18.0.4}{172.18.0.4:9300}{cdfhilmrstw}{8.13.4}{7000099-8503000} completing election], term: 3, version: 158, delta: master node changed {previous [], current [{fec0bcace92e}{vV1I-zM8TziWlMW-vSUdgQ}{3_URy1fcQCe2-e2ZGP337A}{fec0bcace92e}{172.18.0.4}{172.18.0.4:9300}{cdfhilmrstw}{8.13.4}{7000099-8503000}]}", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[fec0bcace92e][masterService#updateTask][T#1]","log.logger":"org.elasticsearch.cluster.service.MasterService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:12.606Z", "log.level": "INFO", "message":"master node changed {previous [], current [{fec0bcace92e}{vV1I-zM8TziWlMW-vSUdgQ}{3_URy1fcQCe2-e2ZGP337A}{fec0bcace92e}{172.18.0.4}{172.18.0.4:9300}{cdfhilmrstw}{8.13.4}{7000099-8503000}]}, term: 3, version: 158, reason: Publication{term=3, version=158}", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[fec0bcace92e][clusterApplierService#updateTask][T#1]","log.logger":"org.elasticsearch.cluster.service.ClusterApplierService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:12.645Z", "log.level": "INFO", "message":"starting file watcher ...", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[fec0bcace92e][clusterApplierService#updateTask][T#1]","log.logger":"org.elasticsearch.common.file.AbstractFileWatchingService","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:12.722Z", "log.level": "INFO", "message":"file settings service up and running [tid=48]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[file-watcher[/usr/share/elasticsearch/config/operator/settings.json]]","log.logger":"org.elasticsearch.common.file.AbstractFileWatchingService","elasticsearch.cluster.uuid":"mjJnqNH_Q2-jxQ7tAUF1og","elasticsearch.node.id":"vV1I-zM8TziWlMW-vSUdgQ","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:12.767Z", "log.level": "INFO", "message":"node-join: [{fec0bcace92e}{vV1I-zM8TziWlMW-vSUdgQ}{3_URy1fcQCe2-e2ZGP337A}{fec0bcace92e}{172.18.0.4}{172.18.0.4:9300}{cdfhilmrstw}{8.13.4}{7000099-8503000}] with reason [completing election]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[fec0bcace92e][masterService#updateTask][T#1]","log.logger":"org.elasticsearch.cluster.coordination.NodeJoinExecutor","elasticsearch.cluster.uuid":"mjJnqNH_Q2-jxQ7tAUF1og","elasticsearch.node.id":"vV1I-zM8TziWlMW-vSUdgQ","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:12.770Z", "log.level": "INFO", "message":"publish_address {172.18.0.4:9200}, bound_addresses {[::]:9200}", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.http.AbstractHttpServerTransport","elasticsearch.cluster.uuid":"mjJnqNH_Q2-jxQ7tAUF1og","elasticsearch.node.id":"vV1I-zM8TziWlMW-vSUdgQ","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:12.885Z", "log.level": "INFO", "message":"started {fec0bcace92e}{vV1I-zM8TziWlMW-vSUdgQ}{3_URy1fcQCe2-e2ZGP337A}{fec0bcace92e}{172.18.0.4}{172.18.0.4:9300}{cdfhilmrstw}{8.13.4}{7000099-8503000}{ml.config_version=12.0.0, transform.config_version=10.0.0, xpack.installed=true}", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.node.Node","elasticsearch.cluster.uuid":"mjJnqNH_Q2-jxQ7tAUF1og","elasticsearch.node.id":"vV1I-zM8TziWlMW-vSUdgQ","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:14.026Z", "log.level": "INFO", "message":"license [5b95e9b8-dff5-469b-93d2-cdff266f7fb2] mode [basic] - valid", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[fec0bcace92e][clusterApplierService#updateTask][T#1]","log.logger":"org.elasticsearch.license.ClusterStateLicenseService","elasticsearch.cluster.uuid":"mjJnqNH_Q2-jxQ7tAUF1og","elasticsearch.node.id":"vV1I-zM8TziWlMW-vSUdgQ","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:14.029Z", "log.level": "INFO", "message":"recovered [14] indices into cluster_state", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[fec0bcace92e][masterService#updateTask][T#1]","log.logger":"org.elasticsearch.gateway.GatewayService","elasticsearch.cluster.uuid":"mjJnqNH_Q2-jxQ7tAUF1og","elasticsearch.node.id":"vV1I-zM8TziWlMW-vSUdgQ","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:14.786Z", "log.level": "INFO", "message":"Node [{fec0bcace92e}{vV1I-zM8TziWlMW-vSUdgQ}] is selected as the current health node.", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[fec0bcace92e][management][T#4]","log.logger":"org.elasticsearch.health.node.selection.HealthNodeTaskExecutor","elasticsearch.cluster.uuid":"mjJnqNH_Q2-jxQ7tAUF1og","elasticsearch.node.id":"vV1I-zM8TziWlMW-vSUdgQ","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-02T12:54:15.544Z", "log.level": "INFO", "current.health":"YELLOW","message":"Cluster health status changed from [RED] to [YELLOW] (reason: [shards started [[opencti_deleted_objects-000001][0]]]).","previous.health":"RED","reason":"shards started [[opencti_deleted_objects-000001][0]]" , "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[fec0bcace92e][masterService#updateTask][T#1]","log.logger":"org.elasticsearch.cluster.routing.allocation.AllocationService","elasticsearch.cluster.uuid":"mjJnqNH_Q2-jxQ7tAUF1og","elasticsearch.node.id":"vV1I-zM8TziWlMW-vSUdgQ","elasticsearch.node.name":"fec0bcace92e","elasticsearch.cluster.name":"docker-cluster"}

My OPenCTI logs

{"category":"APP","cause":{"_error":{},"_showLocations":false,"_showPath":false,"data":{"cause":{"meta":{"body":null,"headers":null,"meta":{"aborted":false,"attempts":3,"connection":{"_openRequests":0,"deadCount":4,"headers":{},"id":"http://elasticsearch:9200/","resurrectTimeout":1722603706573,"roles":{"data":true,"ingest":true},"status":"dead","url":"http://elasticsearch:9200/"},"context":null,"name":"opensearch-js","request":{"id":1,"options":{},"params":{"body":null,"headers":{"user-agent":"opensearch-js/2.11.0 (linux 5.15.0-94-generic-x64; Node.js v20.16.0)"},"method":"GET","path":"/","querystring":"","timeout":30000}}},"statusCode":null},"name":"ConnectionError"},"genre":"TECHNICAL","http_status":500},"internalData":{},"name":"CONFIGURATION_ERROR","time_thrown":"2024-08-02T12:53:46.574Z"},"level":"error","message":"[OPENCTI] System dependencies check failed","source":"backend","timestamp":"2024-08-02T12:53:46.574Z","version":"6.2.11"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500},"message":"Search engine seems down","name":"CONFIGURATION_ERROR","stack":"CONFIGURATION_ERROR: Search engine seems down\n at error (/opt/opencti/build/src/config/errors.js:8:10)\n at ConfigurationError (/opt/opencti/build/src/config/errors.js:76:53)\n at /opt/opencti/build/src/database/engine.js:240:15\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at searchEngineVersion (/opt/opencti/build/src/database/engine.js:236:22)\n at searchEngineInit (/opt/opencti/build/src/database/engine.js:322:27)\n at checkSystemDependencies (/opt/opencti/build/src/initialization.js:32:3)\n at platformStart (/opt/opencti/build/src/boot.js:14:7)"},{"message":"connect ECONNREFUSED 172.18.0.4:9200","name":"ConnectionError","stack":"ConnectionError: connect ECONNREFUSED 172.18.0.4:9200\n at ClientRequest.onError (/opt/opencti/build/node_modules/@opensearch-project/opensearch/lib/Connection.js:129:16)\n at ClientRequest.emit (node:events:519:28)\n at Socket.socketErrorListener (node:_http_client:500:9)\n at Socket.emit (node:events:519:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at processTicksAndRejections (node:internal/process/task_queues:82:21)"}],"level":"error","message":"Search engine seems down","source":"backend","timestamp":"2024-08-02T12:53:46.583Z","version":"6.2.11"} {"category":"APP","cause":{"_error":{},"_showLocations":false,"_showPath":false,"data":{"cause":{"meta":{"body":null,"headers":null,"meta":{"aborted":false,"attempts":3,"connection":{"_openRequests":0,"deadCount":4,"headers":{},"id":"http://elasticsearch:9200/","resurrectTimeout":1722603720054,"roles":{"data":true,"ingest":true},"status":"dead","url":"http://elasticsearch:9200/"},"context":null,"name":"opensearch-js","request":{"id":1,"options":{},"params":{"body":null,"headers":{"user-agent":"opensearch-js/2.11.0 (linux 5.15.0-94-generic-x64; Node.js v20.16.0)"},"method":"GET","path":"/","querystring":"","timeout":30000}}},"statusCode":null},"name":"ConnectionError"},"genre":"TECHNICAL","http_status":500},"internalData":{},"name":"CONFIGURATION_ERROR","time_thrown":"2024-08-02T12:54:00.055Z"},"level":"error","message":"[OPENCTI] System dependencies check failed","source":"backend","timestamp":"2024-08-02T12:54:00.055Z","version":"6.2.11"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500},"message":"Search engine seems down","name":"CONFIGURATION_ERROR","stack":"CONFIGURATION_ERROR: Search engine seems down\n at error (/opt/opencti/build/src/config/errors.js:8:10)\n at ConfigurationError (/opt/opencti/build/src/config/errors.js:76:53)\n at /opt/opencti/build/src/database/engine.js:240:15\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at searchEngineVersion (/opt/opencti/build/src/database/engine.js:236:22)\n at searchEngineInit (/opt/opencti/build/src/database/engine.js:322:27)\n at checkSystemDependencies (/opt/opencti/build/src/initialization.js:32:3)\n at platformStart (/opt/opencti/build/src/boot.js:14:7)"},{"message":"connect ECONNREFUSED 172.18.0.4:9200","name":"ConnectionError","stack":"ConnectionError: connect ECONNREFUSED 172.18.0.4:9200\n at ClientRequest.onError (/opt/opencti/build/node_modules/@opensearch-project/opensearch/lib/Connection.js:129:16)\n at ClientRequest.emit (node:events:519:28)\n at Socket.socketErrorListener (node:_http_client:500:9)\n at Socket.emit (node:events:519:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at processTicksAndRejections (node:internal/process/task_queues:82:21)"}],"level":"error","message":"Search engine seems down","source":"backend","timestamp":"2024-08-02T12:54:00.058Z","version":"6.2.11"} {"category":"APP","cause":{"_error":{},"_showLocations":false,"_showPath":false,"data":{"cause":{"meta":{"body":null,"headers":null,"meta":{"aborted":false,"attempts":3,"connection":{"_openRequests":0,"deadCount":4,"headers":{},"id":"http://elasticsearch:9200/","resurrectTimeout":1722603730754,"roles":{"data":true,"ingest":true},"status":"dead","url":"http://elasticsearch:9200/"},"context":null,"name":"opensearch-js","request":{"id":1,"options":{},"params":{"body":null,"headers":{"user-agent":"opensearch-js/2.11.0 (linux 5.15.0-94-generic-x64; Node.js v20.16.0)"},"method":"GET","path":"/","querystring":"","timeout":30000}}},"statusCode":null},"name":"ConnectionError"},"genre":"TECHNICAL","http_status":500},"internalData":{},"name":"CONFIGURATION_ERROR","time_thrown":"2024-08-02T12:54:10.754Z"},"level":"error","message":"[OPENCTI] System dependencies check failed","source":"backend","timestamp":"2024-08-02T12:54:10.754Z","version":"6.2.11"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500},"message":"Search engine seems down","name":"CONFIGURATION_ERROR","stack":"CONFIGURATION_ERROR: Search engine seems down\n at error (/opt/opencti/build/src/config/errors.js:8:10)\n at ConfigurationError (/opt/opencti/build/src/config/errors.js:76:53)\n at /opt/opencti/build/src/database/engine.js:240:15\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at searchEngineVersion (/opt/opencti/build/src/database/engine.js:236:22)\n at searchEngineInit (/opt/opencti/build/src/database/engine.js:322:27)\n at checkSystemDependencies (/opt/opencti/build/src/initialization.js:32:3)\n at platformStart (/opt/opencti/build/src/boot.js:14:7)"},{"message":"connect ECONNREFUSED 172.18.0.4:9200","name":"ConnectionError","stack":"ConnectionError: connect ECONNREFUSED 172.18.0.4:9200\n at ClientRequest.onError (/opt/opencti/build/node_modules/@opensearch-project/opensearch/lib/Connection.js:129:16)\n at ClientRequest.emit (node:events:519:28)\n at Socket.socketErrorListener (node:_http_client:500:9)\n at Socket.emit (node:events:519:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at processTicksAndRejections (node:internal/process/task_queues:82:21)"}],"level":"error","message":"Search engine seems down","source":"backend","timestamp":"2024-08-02T12:54:10.758Z","version":"6.2.11"}

Additional information

image

Megafredo commented 2 months ago

It seems that your error is due to the fact that OpenCTI is unable to communicate with Elasticsearch. One possible solution is to create a custom network and connect each service to it. Can you try this ?

For each service in your docker-compose.yml, add the network configuration like this :

    restart: always
    depends_on:
      - opencti
    networks:
      - opencti

At the end of your docker-compose.yml, define the network:

networks:
  opencti:
    driver: bridge

volumes:
  esdata:
  s3data:
  redisdata:
  amqpdata:
pesquisa1234 commented 2 months ago

@Megafredo Now:


version: '3'
services:
  redis:
    networks:
      - opencti
    image: redis:7.2.5
    restart: always
    volumes:
      - redisdata:/data
  elasticsearch:
    networks:
      - opencti
    image: docker.elastic.co/elasticsearch/elasticsearch:8.13.4
    volumes:
      - esdata:/usr/share/elasticsearch/data
    environment:
      # Comment-out the line below for a cluster of multiple nodes
      - discovery.type=single-node
      # Uncomment the line below below for a cluster of multiple nodes
      # - cluster.name=docker-cluster
      - xpack.ml.enabled=false
      - xpack.security.enabled=false
      - thread_pool.search.queue_size=5000
      - logger.org.elasticsearch.discovery="ERROR"
      - "ES_JAVA_OPTS=-Xms${ELASTIC_MEMORY_SIZE} -Xmx${ELASTIC_MEMORY_SIZE}"
    restart: always
    ulimits:
      memlock:
        soft: -1
        hard: -1
      nofile:
        soft: 65536
        hard: 65536
  minio:
    networks:
      - opencti
    image: minio/minio:RELEASE.2024-05-28T17-19-04Z # Use "minio/minio:RELEASE.2024-05-28T17-19-04Z-cpuv1" to troubleshoot compatibility issues with CPU
    volumes:
      - s3data:/data
    ports:
      - "9000:9000"
    environment:
      MINIO_ROOT_USER: ${MINIO_ROOT_USER}
      MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}
    command: server /data
    restart: always
  rabbitmq:
    networks:
      - opencti
    image: rabbitmq:3.13-management
    environment:
      - RABBITMQ_DEFAULT_USER=${RABBITMQ_DEFAULT_USER}
      - RABBITMQ_DEFAULT_PASS=${RABBITMQ_DEFAULT_PASS}
      - RABBITMQ_NODENAME=rabbit01@localhost
    volumes:
      - amqpdata:/var/lib/rabbitmq
    restart: always
  opencti:
    networks:
      - opencti
    image: opencti/platform:6.2.11
    environment:
      - NODE_OPTIONS=--max-old-space-size=8096
      - APP__PORT=8080
      - APP__BASE_URL=${OPENCTI_BASE_URL}
      - APP__ADMIN__EMAIL=${OPENCTI_ADMIN_EMAIL}
      - APP__ADMIN__PASSWORD=${OPENCTI_ADMIN_PASSWORD}
      - APP__ADMIN__TOKEN=${OPENCTI_ADMIN_TOKEN}
      - APP__APP_LOGS__LOGS_LEVEL=error
      - REDIS__HOSTNAME=redis
      - REDIS__PORT=6379
      - ELASTICSEARCH__URL=http://elasticsearch:9200
      - MINIO__ENDPOINT=minio
      - MINIO__PORT=9000
      - MINIO__USE_SSL=false
      - MINIO__ACCESS_KEY=${MINIO_ROOT_USER}
      - MINIO__SECRET_KEY=${MINIO_ROOT_PASSWORD}
      - RABBITMQ__HOSTNAME=rabbitmq
      - RABBITMQ__PORT=5672
      - RABBITMQ__PORT_MANAGEMENT=15672
      - RABBITMQ__MANAGEMENT_SSL=false
      - RABBITMQ__USERNAME=${RABBITMQ_DEFAULT_USER}
      - RABBITMQ__PASSWORD=${RABBITMQ_DEFAULT_PASS}
      - SMTP__HOSTNAME=${SMTP_HOSTNAME}
      - SMTP__PORT=25
      - PROVIDERS__LOCAL__STRATEGY=LocalStrategy
    ports:
      - "8080:8080"
    depends_on:
      - redis
      - elasticsearch
      - minio
      - rabbitmq
    restart: always
  worker:
    networks:
      - opencti
    image: opencti/worker:6.2.11
    environment:
      - OPENCTI_URL=http://opencti:8080
      - OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
      - WORKER_LOG_LEVEL=info
    depends_on:
      - opencti
    deploy:
      mode: replicated
      replicas: 3
    restart: always
  connector-export-file-stix:
    networks:
      - opencti
    image: opencti/connector-export-file-stix:6.2.11
    environment:
      - OPENCTI_URL=http://opencti:8080
      - OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
      - CONNECTOR_ID=${CONNECTOR_EXPORT_FILE_STIX_ID} # Valid UUIDv4
      - CONNECTOR_TYPE=INTERNAL_EXPORT_FILE
      - CONNECTOR_NAME=ExportFileStix2
      - CONNECTOR_SCOPE=application/json
      - CONNECTOR_LOG_LEVEL=info
    restart: always
    depends_on:
      - opencti
  connector-export-file-csv:
    networks:
      - opencti
    image: opencti/connector-export-file-csv:6.2.11
    environment:
      - OPENCTI_URL=http://opencti:8080
      - OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
      - CONNECTOR_ID=${CONNECTOR_EXPORT_FILE_CSV_ID} # Valid UUIDv4
      - CONNECTOR_TYPE=INTERNAL_EXPORT_FILE
      - CONNECTOR_NAME=ExportFileCsv
      - CONNECTOR_SCOPE=text/csv
      - CONNECTOR_LOG_LEVEL=info
    restart: always
    depends_on:
      - opencti
  connector-export-file-txt:
    networks:
      - opencti
    image: opencti/connector-export-file-txt:6.2.11
    environment:
      - OPENCTI_URL=http://opencti:8080
      - OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
      - CONNECTOR_ID=${CONNECTOR_EXPORT_FILE_TXT_ID} # Valid UUIDv4
      - CONNECTOR_TYPE=INTERNAL_EXPORT_FILE
      - CONNECTOR_NAME=ExportFileTxt
      - CONNECTOR_SCOPE=text/plain
      - CONNECTOR_LOG_LEVEL=info
    restart: always
    depends_on:
      - opencti
  connector-import-file-stix:
    networks:
      - opencti
    image: opencti/connector-import-file-stix:6.2.11
    environment:
      - OPENCTI_URL=http://opencti:8080
      - OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
      - CONNECTOR_ID=${CONNECTOR_IMPORT_FILE_STIX_ID} # Valid UUIDv4
      - CONNECTOR_TYPE=INTERNAL_IMPORT_FILE
      - CONNECTOR_NAME=ImportFileStix
      - CONNECTOR_VALIDATE_BEFORE_IMPORT=true # Validate any bundle before import
      - CONNECTOR_SCOPE=application/json,text/xml
      - CONNECTOR_AUTO=true # Enable/disable auto-import of file
      - CONNECTOR_LOG_LEVEL=info
    restart: always
    depends_on:
      - opencti
  connector-import-document:
    networks:
      - opencti
    image: opencti/connector-import-document:6.2.11
    environment:
      - OPENCTI_URL=http://opencti:8080
      - OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
      - CONNECTOR_ID=${CONNECTOR_IMPORT_DOCUMENT_ID} # Valid UUIDv4
      - CONNECTOR_TYPE=INTERNAL_IMPORT_FILE
      - CONNECTOR_NAME=ImportDocument
      - CONNECTOR_VALIDATE_BEFORE_IMPORT=true # Validate any bundle before import
      - CONNECTOR_SCOPE=application/pdf,text/plain,text/html
      - CONNECTOR_AUTO=true # Enable/disable auto-import of file
      - CONNECTOR_ONLY_CONTEXTUAL=false # Only extract data related to an entity (a report, a threat actor, etc.)
      - CONNECTOR_CONFIDENCE_LEVEL=15 # From 0 (Unknown) to 100 (Fully trusted)
      - CONNECTOR_LOG_LEVEL=info
      - IMPORT_DOCUMENT_CREATE_INDICATOR=true
    restart: always
    depends_on:
      - opencti
  connector-analysis:
    networks:
      - opencti
    image: opencti/connector-import-document:6.2.11
    environment:
      - OPENCTI_URL=http://opencti:8080
      - OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
      - CONNECTOR_ID=${CONNECTOR_ANALYSIS_ID} # Valid UUIDv4
      - CONNECTOR_TYPE=INTERNAL_ANALYSIS
      - CONNECTOR_NAME=ImportDocumentAnalysis
      - CONNECTOR_VALIDATE_BEFORE_IMPORT=false # Validate any bundle before import
      - CONNECTOR_SCOPE=application/pdf,text/plain,text/html
      - CONNECTOR_AUTO=true # Enable/disable auto-import of file
      - CONNECTOR_ONLY_CONTEXTUAL=false # Only extract data related to an entity (a report, a threat actor, etc.)
      - CONNECTOR_CONFIDENCE_LEVEL=15 # From 0 (Unknown) to 100 (Fully trusted)
      - CONNECTOR_LOG_LEVEL=info
    restart: always
    depends_on:
      - opencti
  connector-mitre-atlas:
    networks:
      - opencti
    image: opencti/connector-mitre-atlas:6.2.11
    environment:
      - OPENCTI_URL=http://opencti:8080
      - OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
      - CONNECTOR_ID=70e60ebe-5b5b-4899-8a70-cdd573a0087c
      - "CONNECTOR_NAME=MITRE ATLAS"
      - CONNECTOR_SCOPE=identity,attack-pattern,course-of-action,relationship,x-mitre-collection,x-mitre-matrix,x-mitre-tactic
      - CONNECTOR_CONFIDENCE_LEVEL=75 # From 0 (Unknown) to 100 (Fully trusted)
      - CONNECTOR_RUN_AND_TERMINATE=false
      - CONNECTOR_LOG_LEVEL=error
      - MITRE_ATLAS_URL=https://raw.githubusercontent.com/mitre-atlas/atlas-navigator-data/main/dist/stix-atlas.json
      - MITRE_ATLAS_INTERVAL=7 # In days, must be strictly greater than 1
    restart: always
    depends_on:
      - opencti
networks:
  opencti:
    driver: bridge

volumes:
  esdata:
  s3data:
  redisdata:
  amqpdata:

And I see this in OpenCTI connectors now:

image

What can I do?

Megafredo commented 2 months ago

Hello @pesquisa1234, i need more information to help you, if you can provide me with the error logs ?

pesquisa1234 commented 2 months ago

Hello @Megafredo the Elastic Search logs:

Aug 16, 2024 6:16:23 PM sun.util.locale.provider.LocaleProviderAdapter <clinit> WARNING: COMPAT locale provider will be removed in a future release {"@timestamp":"2024-08-16T18:16:26.159Z", "log.level": "INFO", "message":"Using [jdk] native provider and native methods for [Linux]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.nativeaccess.NativeAccess","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:27.999Z", "log.level": "INFO", "message":"Java vector incubator API enabled; uses preferredBitSize=256; FMA enabled", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.apache.lucene.internal.vectorization.PanamaVectorizationProvider","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:29.966Z", "log.level": "INFO", "message":"version[8.13.4], pid[71], build[docker/da95df118650b55a500dcc181889ac35c6d8da7c/2024-05-06T22:04:45.107454559Z], OS[Linux/5.15.0-94-generic/amd64], JVM[Oracle Corporation/OpenJDK 64-Bit Server VM/21.0.2/21.0.2+13-58]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.node.Node","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:29.968Z", "log.level": "INFO", "message":"JVM home [/usr/share/elasticsearch/jdk], using bundled JDK [true]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.node.Node","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:29.968Z", "log.level": "INFO", "message":"JVM arguments [-Des.networkaddress.cache.ttl=60, -Des.networkaddress.cache.negative.ttl=10, -Djava.security.manager=allow, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -XX:-OmitStackTraceInFastThrow, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Dlog4j2.formatMsgNoLookups=true, -Djava.locale.providers=SPI,COMPAT, --add-opens=java.base/java.io=org.elasticsearch.preallocate, --enable-native-access=org.elasticsearch.nativeaccess, -Des.cgroups.hierarchy.override=/, -XX:ReplayDataFile=logs/replay_pid%p.log, -Des.distribution.type=docker, -XX:+UseG1GC, -Djava.io.tmpdir=/tmp/elasticsearch-4956612813136870974, --add-modules=jdk.incubator.vector, -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,level,pid,tags:filecount=32,filesize=64m, -Xms4G, -Xmx4G, -XX:MaxDirectMemorySize=2147483648, -XX:G1HeapRegionSize=4m, -XX:InitiatingHeapOccupancyPercent=30, -XX:G1ReservePercent=15, --module-path=/usr/share/elasticsearch/lib, --add-modules=jdk.net, --add-modules=ALL-MODULE-PATH, -Djdk.module.main=org.elasticsearch.server]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.node.Node","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:29.969Z", "log.level": "INFO", "message":"Default Locale [en_US]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.node.Node","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.548Z", "log.level": "INFO", "message":"loaded module [repository-url]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.549Z", "log.level": "INFO", "message":"loaded module [rest-root]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.549Z", "log.level": "INFO", "message":"loaded module [x-pack-core]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.549Z", "log.level": "INFO", "message":"loaded module [x-pack-redact]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.549Z", "log.level": "INFO", "message":"loaded module [ingest-user-agent]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.549Z", "log.level": "INFO", "message":"loaded module [x-pack-async-search]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.551Z", "log.level": "INFO", "message":"loaded module [x-pack-monitoring]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.552Z", "log.level": "INFO", "message":"loaded module [repository-s3]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.552Z", "log.level": "INFO", "message":"loaded module [x-pack-analytics]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.552Z", "log.level": "INFO", "message":"loaded module [x-pack-ent-search]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.553Z", "log.level": "INFO", "message":"loaded module [x-pack-autoscaling]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.553Z", "log.level": "INFO", "message":"loaded module [lang-painless]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.553Z", "log.level": "INFO", "message":"loaded module [x-pack-ml]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.553Z", "log.level": "INFO", "message":"loaded module [lang-mustache]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.554Z", "log.level": "INFO", "message":"loaded module [legacy-geo]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.554Z", "log.level": "INFO", "message":"loaded module [x-pack-ql]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.554Z", "log.level": "INFO", "message":"loaded module [rank-rrf]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.555Z", "log.level": "INFO", "message":"loaded module [analysis-common]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.555Z", "log.level": "INFO", "message":"loaded module [health-shards-availability]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.555Z", "log.level": "INFO", "message":"loaded module [transport-netty4]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.555Z", "log.level": "INFO", "message":"loaded module [aggregations]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.555Z", "log.level": "INFO", "message":"loaded module [ingest-common]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.556Z", "log.level": "INFO", "message":"loaded module [frozen-indices]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.556Z", "log.level": "INFO", "message":"loaded module [x-pack-identity-provider]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.556Z", "log.level": "INFO", "message":"loaded module [x-pack-text-structure]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.556Z", "log.level": "INFO", "message":"loaded module [x-pack-shutdown]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.557Z", "log.level": "INFO", "message":"loaded module [snapshot-repo-test-kit]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.557Z", "log.level": "INFO", "message":"loaded module [ml-package-loader]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.557Z", "log.level": "INFO", "message":"loaded module [kibana]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.557Z", "log.level": "INFO", "message":"loaded module [constant-keyword]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.557Z", "log.level": "INFO", "message":"loaded module [x-pack-logstash]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.558Z", "log.level": "INFO", "message":"loaded module [x-pack-ccr]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.558Z", "log.level": "INFO", "message":"loaded module [x-pack-graph]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.558Z", "log.level": "INFO", "message":"loaded module [x-pack-esql]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.558Z", "log.level": "INFO", "message":"loaded module [parent-join]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.559Z", "log.level": "INFO", "message":"loaded module [counted-keyword]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.559Z", "log.level": "INFO", "message":"loaded module [x-pack-enrich]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.559Z", "log.level": "INFO", "message":"loaded module [repositories-metering-api]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.559Z", "log.level": "INFO", "message":"loaded module [transform]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.559Z", "log.level": "INFO", "message":"loaded module [repository-azure]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.560Z", "log.level": "INFO", "message":"loaded module [repository-gcs]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.560Z", "log.level": "INFO", "message":"loaded module [spatial]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.560Z", "log.level": "INFO", "message":"loaded module [mapper-extras]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.560Z", "log.level": "INFO", "message":"loaded module [apm]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.560Z", "log.level": "INFO", "message":"loaded module [mapper-version]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.560Z", "log.level": "INFO", "message":"loaded module [x-pack-rollup]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.560Z", "log.level": "INFO", "message":"loaded module [percolator]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.561Z", "log.level": "INFO", "message":"loaded module [x-pack-stack]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.561Z", "log.level": "INFO", "message":"loaded module [data-streams]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.561Z", "log.level": "INFO", "message":"loaded module [rank-eval]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.561Z", "log.level": "INFO", "message":"loaded module [reindex]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.561Z", "log.level": "INFO", "message":"loaded module [x-pack-security]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.561Z", "log.level": "INFO", "message":"loaded module [blob-cache]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.561Z", "log.level": "INFO", "message":"loaded module [searchable-snapshots]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.562Z", "log.level": "INFO", "message":"loaded module [x-pack-slm]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.562Z", "log.level": "INFO", "message":"loaded module [snapshot-based-recoveries]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.562Z", "log.level": "INFO", "message":"loaded module [x-pack-watcher]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.562Z", "log.level": "INFO", "message":"loaded module [old-lucene-versions]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.562Z", "log.level": "INFO", "message":"loaded module [x-pack-ilm]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.562Z", "log.level": "INFO", "message":"loaded module [x-pack-inference]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.562Z", "log.level": "INFO", "message":"loaded module [x-pack-voting-only-node]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.562Z", "log.level": "INFO", "message":"loaded module [x-pack-deprecation]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.563Z", "log.level": "INFO", "message":"loaded module [x-pack-fleet]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.563Z", "log.level": "INFO", "message":"loaded module [x-pack-aggregate-metric]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.563Z", "log.level": "INFO", "message":"loaded module [x-pack-downsample]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.563Z", "log.level": "INFO", "message":"loaded module [x-pack-profiling]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.563Z", "log.level": "INFO", "message":"loaded module [ingest-geoip]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.563Z", "log.level": "INFO", "message":"loaded module [x-pack-write-load-forecaster]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.563Z", "log.level": "INFO", "message":"loaded module [search-business-rules]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.563Z", "log.level": "INFO", "message":"loaded module [wildcard]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.564Z", "log.level": "INFO", "message":"loaded module [ingest-attachment]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.565Z", "log.level": "INFO", "message":"loaded module [x-pack-apm-data]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.565Z", "log.level": "INFO", "message":"loaded module [x-pack-sql]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.565Z", "log.level": "INFO", "message":"loaded module [unsigned-long]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.565Z", "log.level": "INFO", "message":"loaded module [x-pack-async]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.565Z", "log.level": "INFO", "message":"loaded module [runtime-fields-common]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.566Z", "log.level": "INFO", "message":"loaded module [vector-tile]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.566Z", "log.level": "INFO", "message":"loaded module [lang-expression]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:41.566Z", "log.level": "INFO", "message":"loaded module [x-pack-eql]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.plugins.PluginsService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:42.398Z", "log.level": "INFO", "message":"using [1] data paths, mounts [[/usr/share/elasticsearch/data (/dev/mapper/ubuntu--vg-ubuntu--lv)]], net usable_space [38gb], net total_space [61.7gb], types [ext4]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.env.NodeEnvironment","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:42.399Z", "log.level": "INFO", "message":"heap size [4gb], compressed ordinary object pointers [true]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.env.NodeEnvironment","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:42.471Z", "log.level": "INFO", "message":"node name [9571426550b4], node ID [vV1I-zM8TziWlMW-vSUdgQ], cluster name [docker-cluster], roles [ingest, data_frozen, ml, data_hot, transform, data_content, data_warm, master, remote_cluster_client, data, data_cold]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.node.Node","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:50.190Z", "log.level": "INFO", "message":"Registered local node features [data_stream.rollover.lazy, desired_node.version_deprecated, features_supported, health.dsl.info, health.extended_repository_indicator, usage.data_tiers.precalculate_stats]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.features.FeatureService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:50.591Z", "log.level": "INFO", "message":"Sending apm metrics is disabled", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.telemetry.apm.APM","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:50.591Z", "log.level": "INFO", "message":"Sending apm tracing is disabled", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.telemetry.apm.APM","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:50.619Z", "log.level": "INFO", "message":"Security is disabled", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.xpack.security.Security","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:50.856Z", "log.level": "INFO", "message":"Watcher initialized components at 2024-08-16T18:16:50.855Z", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.xpack.watcher.Watcher","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:50.913Z", "log.level": "INFO", "message":"Profiling is enabled", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.xpack.profiling.ProfilingPlugin","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:50.934Z", "log.level": "INFO", "message":"profiling index templates will not be installed or reinstalled", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.xpack.profiling.ProfilingPlugin","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:50.940Z", "log.level": "INFO", "message":"APM ingest plugin is disabled", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.xpack.apmdata.APMPlugin","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:51.483Z", "log.level": "INFO", "message":"creating NettyAllocator with the following configs: [name=elasticsearch_configured, chunk_size=1mb, suggested_max_allocation_size=1mb, factors={es.unsafe.use_netty_default_chunk_and_page_size=false, g1gc_enabled=true, g1gc_region_size=4mb}]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.transport.netty4.NettyAllocator","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:51.513Z", "log.level": "INFO", "message":"using rate limit [40mb] with [default=40mb, read=0b, write=0b, max=0b]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.indices.recovery.RecoverySettings","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:53.500Z", "log.level": "INFO", "message":"initialized", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.node.Node","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:53.502Z", "log.level": "INFO", "message":"starting ...", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.node.Node","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:53.560Z", "log.level": "INFO", "message":"persistent cache index loaded", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.xpack.searchablesnapshots.cache.full.PersistentCache","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:53.561Z", "log.level": "INFO", "message":"deprecation component started", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.xpack.deprecation.logging.DeprecationIndexingComponent","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:53.696Z", "log.level": "INFO", "message":"publish_address {172.20.0.3:9300}, bound_addresses {[::]:9300}", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.transport.TransportService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:56.081Z", "log.level": "INFO", "message":"this node is locked into cluster UUID [mjJnqNH_Q2-jxQ7tAUF1og] and will not attempt further cluster bootstrapping", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.cluster.coordination.ClusterBootstrapService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:56.306Z", "log.level": "INFO", "message":"elected-as-master ([1] nodes joined in term 10)[_FINISH_ELECTION_, {9571426550b4}{vV1I-zM8TziWlMW-vSUdgQ}{MYNXvnGfRPKuiMhBgVNzPg}{9571426550b4}{172.20.0.3}{172.20.0.3:9300}{cdfhilmrstw}{8.13.4}{7000099-8503000} completing election], term: 10, version: 279, delta: master node changed {previous [], current [{9571426550b4}{vV1I-zM8TziWlMW-vSUdgQ}{MYNXvnGfRPKuiMhBgVNzPg}{9571426550b4}{172.20.0.3}{172.20.0.3:9300}{cdfhilmrstw}{8.13.4}{7000099-8503000}]}", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[9571426550b4][masterService#updateTask][T#1]","log.logger":"org.elasticsearch.cluster.service.MasterService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:56.450Z", "log.level": "INFO", "message":"master node changed {previous [], current [{9571426550b4}{vV1I-zM8TziWlMW-vSUdgQ}{MYNXvnGfRPKuiMhBgVNzPg}{9571426550b4}{172.20.0.3}{172.20.0.3:9300}{cdfhilmrstw}{8.13.4}{7000099-8503000}]}, term: 10, version: 279, reason: Publication{term=10, version=279}", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[9571426550b4][clusterApplierService#updateTask][T#1]","log.logger":"org.elasticsearch.cluster.service.ClusterApplierService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:56.639Z", "log.level": "INFO", "message":"starting file watcher ...", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[9571426550b4][clusterApplierService#updateTask][T#1]","log.logger":"org.elasticsearch.common.file.AbstractFileWatchingService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:56.679Z", "log.level": "INFO", "message":"file settings service up and running [tid=47]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[file-watcher[/usr/share/elasticsearch/config/operator/settings.json]]","log.logger":"org.elasticsearch.common.file.AbstractFileWatchingService","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:56.690Z", "log.level": "INFO", "message":"publish_address {172.20.0.3:9200}, bound_addresses {[::]:9200}", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.http.AbstractHttpServerTransport","elasticsearch.cluster.uuid":"mjJnqNH_Q2-jxQ7tAUF1og","elasticsearch.node.id":"vV1I-zM8TziWlMW-vSUdgQ","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:56.704Z", "log.level": "INFO", "message":"node-join: [{9571426550b4}{vV1I-zM8TziWlMW-vSUdgQ}{MYNXvnGfRPKuiMhBgVNzPg}{9571426550b4}{172.20.0.3}{172.20.0.3:9300}{cdfhilmrstw}{8.13.4}{7000099-8503000}] with reason [completing election]", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[9571426550b4][masterService#updateTask][T#1]","log.logger":"org.elasticsearch.cluster.coordination.NodeJoinExecutor","elasticsearch.cluster.uuid":"mjJnqNH_Q2-jxQ7tAUF1og","elasticsearch.node.id":"vV1I-zM8TziWlMW-vSUdgQ","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:56.756Z", "log.level": "INFO", "message":"started {9571426550b4}{vV1I-zM8TziWlMW-vSUdgQ}{MYNXvnGfRPKuiMhBgVNzPg}{9571426550b4}{172.20.0.3}{172.20.0.3:9300}{cdfhilmrstw}{8.13.4}{7000099-8503000}{ml.config_version=12.0.0, xpack.installed=true, transform.config_version=10.0.0}", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.node.Node","elasticsearch.cluster.uuid":"mjJnqNH_Q2-jxQ7tAUF1og","elasticsearch.node.id":"vV1I-zM8TziWlMW-vSUdgQ","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:57.382Z", "log.level": "INFO", "message":"license [5b95e9b8-dff5-469b-93d2-cdff266f7fb2] mode [basic] - valid", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[9571426550b4][clusterApplierService#updateTask][T#1]","log.logger":"org.elasticsearch.license.ClusterStateLicenseService","elasticsearch.cluster.uuid":"mjJnqNH_Q2-jxQ7tAUF1og","elasticsearch.node.id":"vV1I-zM8TziWlMW-vSUdgQ","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:57.385Z", "log.level": "INFO", "message":"recovered [15] indices into cluster_state", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[9571426550b4][masterService#updateTask][T#1]","log.logger":"org.elasticsearch.gateway.GatewayService","elasticsearch.cluster.uuid":"mjJnqNH_Q2-jxQ7tAUF1og","elasticsearch.node.id":"vV1I-zM8TziWlMW-vSUdgQ","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:58.373Z", "log.level": "INFO", "message":"Node [{9571426550b4}{vV1I-zM8TziWlMW-vSUdgQ}] is selected as the current health node.", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[9571426550b4][management][T#1]","log.logger":"org.elasticsearch.health.node.selection.HealthNodeTaskExecutor","elasticsearch.cluster.uuid":"mjJnqNH_Q2-jxQ7tAUF1og","elasticsearch.node.id":"vV1I-zM8TziWlMW-vSUdgQ","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"} {"@timestamp":"2024-08-16T18:16:59.090Z", "log.level": "INFO", "current.health":"YELLOW","message":"Cluster health status changed from [RED] to [YELLOW] (reason: [shards started [[opencti_deleted_objects-000001][0]]]).","previous.health":"RED","reason":"shards started [[opencti_deleted_objects-000001][0]]" , "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"elasticsearch[9571426550b4][masterService#updateTask][T#1]","log.logger":"org.elasticsearch.cluster.routing.allocation.AllocationService","elasticsearch.cluster.uuid":"mjJnqNH_Q2-jxQ7tAUF1og","elasticsearch.node.id":"vV1I-zM8TziWlMW-vSUdgQ","elasticsearch.node.name":"9571426550b4","elasticsearch.cluster.name":"docker-cluster"}

Megafredo commented 2 months ago

Hi @pesquisa1234, and your opencti logs ?

pesquisa1234 commented 2 months ago

@Megafredo Hi, my opencti logs:

{"category":"APP","cause":{"_error":{},"_showLocations":false,"_showPath":false,"data":{"cause":{"meta":{"body":null,"headers":null,"meta":{"aborted":false,"attempts":3,"connection":{"_openRequests":0,"deadCount":4,"headers":{},"id":"http://elasticsearch:9200/","resurrectTimeout":1724070751961,"roles":{"data":true,"ingest":true},"status":"dead","url":"http://elasticsearch:9200/"},"context":null,"name":"opensearch-js","request":{"id":1,"options":{},"params":{"body":null,"headers":{"user-agent":"opensearch-js/2.11.0 (linux 5.15.0-118-generic-x64; Node.js v20.16.0)"},"method":"GET","path":"/","querystring":"","timeout":30000}}},"statusCode":null},"name":"ConnectionError"},"genre":"TECHNICAL","http_status":500},"internalData":{},"name":"CONFIGURATION_ERROR","time_thrown":"2024-08-19T12:24:31.962Z"},"level":"error","message":"[OPENCTI] System dependencies check failed","source":"backend","timestamp":"2024-08-19T12:24:31.962Z","version":"6.2.11"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500},"message":"Search engine seems down","name":"CONFIGURATION_ERROR","stack":"CONFIGURATION_ERROR: Search engine seems down\n at error (/opt/opencti/build/src/config/errors.js:8:10)\n at ConfigurationError (/opt/opencti/build/src/config/errors.js:76:53)\n at /opt/opencti/build/src/database/engine.js:240:15\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at searchEngineVersion (/opt/opencti/build/src/database/engine.js:236:22)\n at searchEngineInit (/opt/opencti/build/src/database/engine.js:322:27)\n at checkSystemDependencies (/opt/opencti/build/src/initialization.js:32:3)\n at platformStart (/opt/opencti/build/src/boot.js:14:7)"},{"message":"connect ECONNREFUSED 172.20.0.2:9200","name":"ConnectionError","stack":"ConnectionError: connect ECONNREFUSED 172.20.0.2:9200\n at ClientRequest.onError (/opt/opencti/build/node_modules/@opensearch-project/opensearch/lib/Connection.js:129:16)\n at ClientRequest.emit (node:events:519:28)\n at Socket.socketErrorListener (node:_http_client:500:9)\n at Socket.emit (node:events:519:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at processTicksAndRejections (node:internal/process/task_queues:82:21)"}],"level":"error","message":"Search engine seems down","source":"backend","timestamp":"2024-08-19T12:24:31.971Z","version":"6.2.11"} {"category":"APP","cause":{"_error":{},"_showLocations":false,"_showPath":false,"data":{"cause":{"meta":{"body":null,"headers":null,"meta":{"aborted":false,"attempts":3,"connection":{"_openRequests":0,"deadCount":4,"headers":{},"id":"http://elasticsearch:9200/","resurrectTimeout":1724070763756,"roles":{"data":true,"ingest":true},"status":"dead","url":"http://elasticsearch:9200/"},"context":null,"name":"opensearch-js","request":{"id":1,"options":{},"params":{"body":null,"headers":{"user-agent":"opensearch-js/2.11.0 (linux 5.15.0-118-generic-x64; Node.js v20.16.0)"},"method":"GET","path":"/","querystring":"","timeout":30000}}},"statusCode":null},"name":"ConnectionError"},"genre":"TECHNICAL","http_status":500},"internalData":{},"name":"CONFIGURATION_ERROR","time_thrown":"2024-08-19T12:24:43.756Z"},"level":"error","message":"[OPENCTI] System dependencies check failed","source":"backend","timestamp":"2024-08-19T12:24:43.757Z","version":"6.2.11"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500},"message":"Search engine seems down","name":"CONFIGURATION_ERROR","stack":"CONFIGURATION_ERROR: Search engine seems down\n at error (/opt/opencti/build/src/config/errors.js:8:10)\n at ConfigurationError (/opt/opencti/build/src/config/errors.js:76:53)\n at /opt/opencti/build/src/database/engine.js:240:15\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at searchEngineVersion (/opt/opencti/build/src/database/engine.js:236:22)\n at searchEngineInit (/opt/opencti/build/src/database/engine.js:322:27)\n at checkSystemDependencies (/opt/opencti/build/src/initialization.js:32:3)\n at platformStart (/opt/opencti/build/src/boot.js:14:7)"},{"message":"connect ECONNREFUSED 172.20.0.2:9200","name":"ConnectionError","stack":"ConnectionError: connect ECONNREFUSED 172.20.0.2:9200\n at ClientRequest.onError (/opt/opencti/build/node_modules/@opensearch-project/opensearch/lib/Connection.js:129:16)\n at ClientRequest.emit (node:events:519:28)\n at Socket.socketErrorListener (node:_http_client:500:9)\n at Socket.emit (node:events:519:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at processTicksAndRejections (node:internal/process/task_queues:82:21)"}],"level":"error","message":"Search engine seems down","source":"backend","timestamp":"2024-08-19T12:24:43.760Z","version":"6.2.11"}

pesquisa1234 commented 2 months ago

And the Mitre Atlas connector logs: @Megafredo

{"timestamp": "2024-08-19T12:24:23.140830Z", "level": "ERROR", "name": "api", "message": "HTTPConnectionPool(host='opencti', port=8080): Max retries exceeded with url: /graphql (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fca1cda4250>: Failed to establish a new connection: [Errno 111] Connection refused'))", "exc_info": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connection.py\", line 196, in _new_conn\n sock = connection.create_connection(\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/urllib3/util/connection.py\", line 85, in create_connection\n raise err\n File \"/usr/local/lib/python3.11/site-packages/urllib3/util/connection.py\", line 73, in create_connection\n sock.connect(sa)\nConnectionRefusedError: [Errno 111] Connection refused\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py\", line 789, in urlopen\n response = self._make_request(\n ^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py\", line 495, in _make_request\n conn.request(\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connection.py\", line 398, in request\n self.endheaders()\n File \"/usr/local/lib/python3.11/http/client.py\", line 1298, in endheaders\n self._send_output(message_body, encode_chunked=encode_chunked)\n File \"/usr/local/lib/python3.11/http/client.py\", line 1058, in _send_output\n self.send(msg)\n File \"/usr/local/lib/python3.11/http/client.py\", line 996, in send\n self.connect()\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connection.py\", line 236, in connect\n self.sock = self._new_conn()\n ^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connection.py\", line 211, in _new_conn\n raise NewConnectionError(\nurllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fca1cda4250>: Failed to establish a new connection: [Errno 111] Connection refused\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.11/site-packages/requests/adapters.py\", line 667, in send\n resp = conn.urlopen(\n ^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py\", line 843, in urlopen\n retries = retries.increment(\n ^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/urllib3/util/retry.py\", line 519, in increment\n raise MaxRetryError(_pool, url, reason) from reason # type: ignore[arg-type]\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nurllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='opencti', port=8080): Max retries exceeded with url: /graphql (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fca1cda4250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.11/site-packages/pycti/api/opencti_api_client.py\", line 403, in health_check\n test = self.query(\n ^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/pycti/api/opencti_api_client.py\", line 336, in query\n r = self.session.post(\n ^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/requests/sessions.py\", line 637, in post\n return self.request(\"POST\", url, data=data, json=json, **kwargs)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/requests/sessions.py\", line 589, in request\n resp = self.send(prep, **send_kwargs)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/requests/sessions.py\", line 703, in send\n r = adapter.send(request, **kwargs)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/requests/adapters.py\", line 700, in send\n raise ConnectionError(e, request=request)\nrequests.exceptions.ConnectionError: HTTPConnectionPool(host='opencti', port=8080): Max retries exceeded with url: /graphql (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fca1cda4250>: Failed to establish a new connection: [Errno 111] Connection refused'))"} OpenCTI API is not reachable. Waiting for OpenCTI API to start or check your configuration... {"timestamp": "2024-08-19T12:24:36.185643Z", "level": "ERROR", "name": "api", "message": "HTTPConnectionPool(host='opencti', port=8080): Max retries exceeded with url: /graphql (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fad1f28f010>: Failed to establish a new connection: [Errno 111] Connection refused'))", "exc_info": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connection.py\", line 196, in _new_conn\n sock = connection.create_connection(\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/urllib3/util/connection.py\", line 85, in create_connection\n raise err\n File \"/usr/local/lib/python3.11/site-packages/urllib3/util/connection.py\", line 73, in create_connection\n sock.connect(sa)\nConnectionRefusedError: [Errno 111] Connection refused\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py\", line 789, in urlopen\n response = self._make_request(\n ^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py\", line 495, in _make_request\n conn.request(\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connection.py\", line 398, in request\n self.endheaders()\n File \"/usr/local/lib/python3.11/http/client.py\", line 1298, in endheaders\n self._send_output(message_body, encode_chunked=encode_chunked)\n File \"/usr/local/lib/python3.11/http/client.py\", line 1058, in _send_output\n self.send(msg)\n File \"/usr/local/lib/python3.11/http/client.py\", line 996, in send\n self.connect()\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connection.py\", line 236, in connect\n self.sock = self._new_conn()\n ^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connection.py\", line 211, in _new_conn\n raise NewConnectionError(\nurllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fad1f28f010>: Failed to establish a new connection: [Errno 111] Connection refused\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.11/site-packages/requests/adapters.py\", line 667, in send\n resp = conn.urlopen(\n ^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py\", line 843, in urlopen\n retries = retries.increment(\n ^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/urllib3/util/retry.py\", line 519, in increment\n raise MaxRetryError(_pool, url, reason) from reason # type: ignore[arg-type]\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nurllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='opencti', port=8080): Max retries exceeded with url: /graphql (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fad1f28f010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.11/site-packages/pycti/api/opencti_api_client.py\", line 403, in health_check\n test = self.query(\n ^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/pycti/api/opencti_api_client.py\", line 336, in query\n r = self.session.post(\n ^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/requests/sessions.py\", line 637, in post\n return self.request(\"POST\", url, data=data, json=json, **kwargs)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/requests/sessions.py\", line 589, in request\n resp = self.send(prep, **send_kwargs)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/requests/sessions.py\", line 703, in send\n r = adapter.send(request, **kwargs)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/requests/adapters.py\", line 700, in send\n raise ConnectionError(e, request=request)\nrequests.exceptions.ConnectionError: HTTPConnectionPool(host='opencti', port=8080): Max retries exceeded with url: /graphql (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fad1f28f010>: Failed to establish a new connection: [Errno 111] Connection refused'))"} OpenCTI API is not reachable. Waiting for OpenCTI API to start or check your configuration... {"timestamp": "2024-08-19T12:24:47.784978Z", "level": "ERROR", "name": "api", "message": "HTTPConnectionPool(host='opencti', port=8080): Max retries exceeded with url: /graphql (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f7106bab010>: Failed to establish a new connection: [Errno 111] Connection refused'))", "exc_info": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connection.py\", line 196, in _new_conn\n sock = connection.create_connection(\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/urllib3/util/connection.py\", line 85, in create_connection\n raise err\n File \"/usr/local/lib/python3.11/site-packages/urllib3/util/connection.py\", line 73, in create_connection\n sock.connect(sa)\nConnectionRefusedError: [Errno 111] Connection refused\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py\", line 789, in urlopen\n response = self._make_request(\n ^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py\", line 495, in _make_request\n conn.request(\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connection.py\", line 398, in request\n self.endheaders()\n File \"/usr/local/lib/python3.11/http/client.py\", line 1298, in endheaders\n self._send_output(message_body, encode_chunked=encode_chunked)\n File \"/usr/local/lib/python3.11/http/client.py\", line 1058, in _send_output\n self.send(msg)\n File \"/usr/local/lib/python3.11/http/client.py\", line 996, in send\n self.connect()\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connection.py\", line 236, in connect\n self.sock = self._new_conn()\n ^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connection.py\", line 211, in _new_conn\n raise NewConnectionError(\nurllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f7106bab010>: Failed to establish a new connection: [Errno 111] Connection refused\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.11/site-packages/requests/adapters.py\", line 667, in send\n resp = conn.urlopen(\n ^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py\", line 843, in urlopen\n retries = retries.increment(\n ^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/urllib3/util/retry.py\", line 519, in increment\n raise MaxRetryError(_pool, url, reason) from reason # type: ignore[arg-type]\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nurllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='opencti', port=8080): Max retries exceeded with url: /graphql (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f7106bab010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.11/site-packages/pycti/api/opencti_api_client.py\", line 403, in health_check\n test = self.query(\n ^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/pycti/api/opencti_api_client.py\", line 336, in query\n r = self.session.post(\n ^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/requests/sessions.py\", line 637, in post\n return self.request(\"POST\", url, data=data, json=json, **kwargs)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/requests/sessions.py\", line 589, in request\n resp = self.send(prep, **send_kwargs)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/requests/sessions.py\", line 703, in send\n r = adapter.send(request, **kwargs)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/local/lib/python3.11/site-packages/requests/adapters.py\", line 700, in send\n raise ConnectionError(e, request=request)\nrequests.exceptions.ConnectionError: HTTPConnectionPool(host='opencti', port=8080): Max retries exceeded with url: /graphql (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f7106bab010>: Failed to establish a new connection: [Errno 111] Connection refused'))"} OpenCTI API is not reachable. Waiting for OpenCTI API to start or check your configuration...

Megafredo commented 2 months ago

Hi @pesquisa1234, The error you get for the "OpenCTI API is not reachable" connector is due to starting too fast and opencti has not yet completed its startup. Recently, there's been an improvment to docker compose that allows for startup prioritization using "healthcheck". You can see the changes here: https://github.com/OpenCTI-Platform/docker/pull/310/files

pesquisa1234 commented 1 month ago

@Megafredo Now it seems there is an error in Redis. my OpenCTI logs:

{"category":"APP","cause":{"extensions":{"code":"CONFIGURATION_ERROR","data":{"cause":{"meta":{"body":null,"headers":null,"meta":{"aborted":false,"attempts":3,"connection":{"_openRequests":0,"deadCount":4,"headers":{},"id":"http://elasticsearch:9200/","resurrectTimeout":1727104164088,"roles":{"data":true,"ingest":true},"status":"dead","url":"http://elasticsearch:9200/"},"context":null,"name":"opensearch-js","request":{"id":1,"options":{},"params":{"body":null,"headers":{"user-agent":"opensearch-js/2.12.0 (linux 5.15.0-118-generic-x64; Node.js v20.17.0)"},"method":"GET","path":"/","querystring":"","timeout":30000}}},"statusCode":null},"name":"ConnectionError"},"genre":"TECHNICAL","http_status":500}},"message":"Search engine seems down"},"level":"error","message":"[OPENCTI] System dependencies check failed","source":"backend","timestamp":"2024-09-23T15:01:24.089Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500},"message":"Search engine seems down","name":"CONFIGURATION_ERROR","stack":"GraphQLError: Search engine seems down\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at ConfigurationError (/opt/opencti/build/src/config/errors.js:75:53)\n at /opt/opencti/build/src/database/engine.js:239:15\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at searchEngineVersion (/opt/opencti/build/src/database/engine.js:235:22)\n at searchEngineInit (/opt/opencti/build/src/database/engine.js:321:27)\n at checkSystemDependencies (/opt/opencti/build/src/initialization.js:38:3)\n at platformStart (/opt/opencti/build/src/boot.js:15:7)"},{"message":"connect ECONNREFUSED 172.18.0.9:9200","name":"ConnectionError","stack":"ConnectionError: connect ECONNREFUSED 172.18.0.9:9200\n at ClientRequest.onError (/opt/opencti/build/node_modules/@opensearch-project/opensearch/lib/Connection.js:129:16)\n at ClientRequest.emit (node:events:519:28)\n at emitErrorEvent (node:_http_client:108:11)\n at Socket.socketErrorListener (node:_http_client:511:5)\n at Socket.emit (node:events:519:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at processTicksAndRejections (node:internal/process/task_queues:82:21)"}],"level":"error","message":"Search engine seems down","source":"backend","timestamp":"2024-09-23T15:01:24.094Z","version":"6.3.1"} {"category":"APP","cause":{"extensions":{"code":"CONFIGURATION_ERROR","data":{"cause":{"meta":{"body":null,"headers":null,"meta":{"aborted":false,"attempts":3,"connection":{"_openRequests":0,"deadCount":4,"headers":{},"id":"http://elasticsearch:9200/","resurrectTimeout":1727104175356,"roles":{"data":true,"ingest":true},"status":"dead","url":"http://elasticsearch:9200/"},"context":null,"name":"opensearch-js","request":{"id":1,"options":{},"params":{"body":null,"headers":{"user-agent":"opensearch-js/2.12.0 (linux 5.15.0-118-generic-x64; Node.js v20.17.0)"},"method":"GET","path":"/","querystring":"","timeout":30000}}},"statusCode":null},"name":"ConnectionError"},"genre":"TECHNICAL","http_status":500}},"message":"Search engine seems down"},"level":"error","message":"[OPENCTI] System dependencies check failed","source":"backend","timestamp":"2024-09-23T15:01:35.357Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500},"message":"Search engine seems down","name":"CONFIGURATION_ERROR","stack":"GraphQLError: Search engine seems down\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at ConfigurationError (/opt/opencti/build/src/config/errors.js:75:53)\n at /opt/opencti/build/src/database/engine.js:239:15\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at searchEngineVersion (/opt/opencti/build/src/database/engine.js:235:22)\n at searchEngineInit (/opt/opencti/build/src/database/engine.js:321:27)\n at checkSystemDependencies (/opt/opencti/build/src/initialization.js:38:3)\n at platformStart (/opt/opencti/build/src/boot.js:15:7)"},{"message":"connect ECONNREFUSED 172.18.0.9:9200","name":"ConnectionError","stack":"ConnectionError: connect ECONNREFUSED 172.18.0.9:9200\n at ClientRequest.onError (/opt/opencti/build/node_modules/@opensearch-project/opensearch/lib/Connection.js:129:16)\n at ClientRequest.emit (node:events:519:28)\n at emitErrorEvent (node:_http_client:108:11)\n at Socket.socketErrorListener (node:_http_client:511:5)\n at Socket.emit (node:events:519:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at processTicksAndRejections (node:internal/process/task_queues:82:21)"}],"level":"error","message":"Search engine seems down","source":"backend","timestamp":"2024-09-23T15:01:35.367Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"errors":[{"reason":"index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","type":"cluster_block_exception"}],"genre":"TECHNICAL","http_status":500},"message":"Bulk indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Bulk indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3200:13\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at elIndexElementsFn (/opt/opencti/build/src/database/engine.js:3609:7)\n at eventsApplyHandler (/opt/opencti/build/src/manager/historyManager.ts:132:3)\n at historyStreamHandler (/opt/opencti/build/src/manager/historyManager.ts:149:7)\n at processStreamResult (/opt/opencti/build/src/database/redis.ts:646:3)\n at processStep (/opt/opencti/build/src/database/redis.ts:700:31)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"}],"level":"error","manager":"HISTORY_MANAGER","message":"Bulk indexing fail","source":"backend","timestamp":"2024-09-23T15:10:53.383Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"errors":[{"reason":"index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","type":"cluster_block_exception"}],"genre":"TECHNICAL","http_status":500},"message":"Bulk indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Bulk indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3200:13\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at elIndexElementsFn (/opt/opencti/build/src/database/engine.js:3609:7)\n at eventsApplyHandler (/opt/opencti/build/src/manager/historyManager.ts:132:3)\n at historyStreamHandler (/opt/opencti/build/src/manager/historyManager.ts:149:7)\n at processStreamResult (/opt/opencti/build/src/database/redis.ts:646:3)\n at processStep (/opt/opencti/build/src/database/redis.ts:700:31)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"}],"level":"error","manager":"HISTORY_MANAGER","message":"Bulk indexing fail","source":"backend","timestamp":"2024-09-23T15:10:53.517Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"errors":[{"reason":"index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","type":"cluster_block_exception"}],"genre":"TECHNICAL","http_status":500},"message":"Bulk indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Bulk indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3200:13\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at elIndexElementsFn (/opt/opencti/build/src/database/engine.js:3609:7)\n at eventsApplyHandler (/opt/opencti/build/src/manager/historyManager.ts:132:3)\n at historyStreamHandler (/opt/opencti/build/src/manager/historyManager.ts:149:7)\n at processStreamResult (/opt/opencti/build/src/database/redis.ts:646:3)\n at processStep (/opt/opencti/build/src/database/redis.ts:700:31)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"}],"level":"error","manager":"HISTORY_MANAGER","message":"Bulk indexing fail","source":"backend","timestamp":"2024-09-23T15:10:53.557Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"provider":"Rule manager"},"message":"Redis stream consume fail","name":"DATABASE_ERROR","stack":"GraphQLError: Redis stream consume fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at processStep (/opt/opencti/build/src/database/redis.ts:706:20)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"},{"attributes":{"documentId":"rule_engine_settings","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at ruleStreamHandler (/opt/opencti/build/src/manager/ruleManager.ts:267:3)\n at processStreamResult (/opt/opencti/build/src/database/redis.ts:646:3)\n at processStep (/opt/opencti/build/src/database/redis.ts:700:31)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at ruleStreamHandler (/opt/opencti/build/src/manager/ruleManager.ts:267:3)\n at processStreamResult (/opt/opencti/build/src/database/redis.ts:646:3)\n at processStep (/opt/opencti/build/src/database/redis.ts:700:31)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"}],"level":"error","message":"Redis stream consume fail","source":"backend","timestamp":"2024-09-23T15:10:53.564Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"work_83213e33-b0ca-4fee-943d-850777d42006_2024-09-23T15:10:38.189Z","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateReceivedTime (/opt/opencti/build/src/domain/work.js:246:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at updateReceivedTime (/opt/opencti/build/src/domain/work.js:246:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"message","type":"Variable"}]],"name":"toReceived"}]],"size":128,"source":"backend","time":16,"timestamp":"2024-09-23T15:10:54.231Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.3","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"work_83213e33-b0ca-4fee-943d-850777d42006_2024-09-23T15:10:38.189Z","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateProcessedTime (/opt/opencti/build/src/domain/work.js:269:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at updateProcessedTime (/opt/opencti/build/src/domain/work.js:269:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"message","type":"Variable"}],[{"is_empty":true,"name":"inError","type":"Variable"}]],"name":"toProcessed"}]],"size":170,"source":"backend","time":19,"timestamp":"2024-09-23T15:10:54.372Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.3","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"work_83213e33-b0ca-4fee-943d-850777d42006_2024-09-23T15:10:39.025Z","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateReceivedTime (/opt/opencti/build/src/domain/work.js:246:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at updateReceivedTime (/opt/opencti/build/src/domain/work.js:246:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"message","type":"Variable"}]],"name":"toReceived"}]],"size":128,"source":"backend","time":7,"timestamp":"2024-09-23T15:10:55.281Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.3","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"work_83213e33-b0ca-4fee-943d-850777d42006_2024-09-23T15:10:39.025Z","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateProcessedTime (/opt/opencti/build/src/domain/work.js:269:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at updateProcessedTime (/opt/opencti/build/src/domain/work.js:269:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"message","type":"Variable"}],[{"is_empty":true,"name":"inError","type":"Variable"}]],"name":"toProcessed"}]],"size":170,"source":"backend","time":29,"timestamp":"2024-09-23T15:10:55.320Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.3","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"work_83213e33-b0ca-4fee-943d-850777d42006_2024-09-23T15:10:39.026Z","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateReceivedTime (/opt/opencti/build/src/domain/work.js:246:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at updateReceivedTime (/opt/opencti/build/src/domain/work.js:246:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"message","type":"Variable"}]],"name":"toReceived"}]],"size":128,"source":"backend","time":10,"timestamp":"2024-09-23T15:10:56.364Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.3","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"work_83213e33-b0ca-4fee-943d-850777d42006_2024-09-23T15:10:39.026Z","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateProcessedTime (/opt/opencti/build/src/domain/work.js:269:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at updateProcessedTime (/opt/opencti/build/src/domain/work.js:269:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"message","type":"Variable"}],[{"is_empty":true,"name":"inError","type":"Variable"}]],"name":"toProcessed"}]],"size":170,"source":"backend","time":22,"timestamp":"2024-09-23T15:10:56.399Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.3","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"3eef4b62-fc75-45bc-a93f-4778bdf04446","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":360,"timestamp":"2024-09-23T15:10:56.644Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.13","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"501a14f2-4399-4339-ad7e-9908b619f381","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":157,"timestamp":"2024-09-23T15:10:56.805Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.14","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"work_406e8c4e-7c7f-404d-bac0-c94954710ff1_2024-09-23T15:08:07.226Z","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateExpectationsNumber (/opt/opencti/build/src/domain/work.js:233:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at updateExpectationsNumber (/opt/opencti/build/src/domain/work.js:233:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"expectations","type":"Variable"}]],"name":"addExpectations"}]],"size":95,"source":"backend","time":5,"timestamp":"2024-09-23T15:10:56.985Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.8","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"b9e28f88-dbc2-4148-b7ac-2c724a903a53","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":344,"source":"backend","time":146,"timestamp":"2024-09-23T15:10:59.115Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.15","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"provider":"Rule manager"},"message":"Redis stream consume fail","name":"DATABASE_ERROR","stack":"GraphQLError: Redis stream consume fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at processStep (/opt/opencti/build/src/database/redis.ts:706:20)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"},{"attributes":{"documentId":"rule_engine_settings","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at ruleStreamHandler (/opt/opencti/build/src/manager/ruleManager.ts:267:3)\n at processStreamResult (/opt/opencti/build/src/database/redis.ts:646:3)\n at processStep (/opt/opencti/build/src/database/redis.ts:700:31)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at ruleStreamHandler (/opt/opencti/build/src/manager/ruleManager.ts:267:3)\n at processStreamResult (/opt/opencti/build/src/database/redis.ts:646:3)\n at processStep (/opt/opencti/build/src/database/redis.ts:700:31)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"}],"level":"error","message":"Redis stream consume fail","source":"backend","timestamp":"2024-09-23T15:11:04.726Z","version":"6.3.1"} {"category":"APP","errors_count":124,"indicators_count":425,"level":"error","message":"[OPENCTI-MODULE] Indicator decay manager got errors. Please have a look to previous warning.","source":"backend","timestamp":"2024-09-23T15:11:05.256Z","version":"6.3.1"} {"category":"APP","error":{"extensions":{"code":"DATABASE_ERROR","data":{"cause":{"meta":{"body":{"error":{"reason":"index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","root_cause":[{"reason":"index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","type":"cluster_block_exception"}],"type":"cluster_block_exception"},"status":429},"headers":{"content-length":"427","content-type":"application/vnd.elasticsearch+json;compatible-with=8","x-elastic-product":"Elasticsearch"},"meta":{"aborted":false,"attempts":0,"connection":{"_openRequests":0,"deadCount":0,"headers":{"user-agent":"elasticsearch-js/8.15.0 (linux 5.15.0-118-generic-x64; Node.js 20.17.0; Transport 8.7.0)","x-elastic-client-meta":"es=8.15.0,js=20.17.0,t=8.7.0,hc=20.17.0"},"id":"http://elasticsearch:9200/","maxEventListeners":100,"pool":{"_events":{},"_eventsCount":0},"resurrectTimeout":0,"timeout":30000,"tls":{"ca":null,"rejectUnauthorized":true},"url":"http://elasticsearch:9200/","weight":1000},"context":null,"name":"elasticsearch-js","request":{"id":32461,"options":{},"params":{"body":"{\"script\":{\"source\":\"ctx._source['status'] = \\\"complete\\\";\\n ctx._source['completed_time'] = params.completed_time;\\n ctx._source['completed_number'] = params.completed_number;\",\"lang\":\"painless\",\"params\":{\"completed_time\":\"2024-09-23T15:11:11.442Z\",\"completed_number\":62}}}","headers":{"accept":"application/vnd.elasticsearch+json; compatible-with=8","content-length":"308","content-type":"application/vnd.elasticsearch+json; compatible-with=8","user-agent":"elasticsearch-js/8.15.0 (linux 5.15.0-118-generic-x64; Node.js 20.17.0; Transport 8.7.0)","x-elastic-client-meta":"es=8.15.0,js=20.17.0,t=8.7.0,hc=20.17.0"},"method":"POST","path":"/opencti_history-000001/_update/work_50eb4b85-3683-4598-8bb9-524f1b3f15f0_2024-09-18T14%3A10%3A06.254Z","querystring":"retry_on_conflict=5&timeout=5m&refresh=true"}}},"statusCode":429,"warnings":null},"name":"ResponseError","options":{"redaction":{"additionalKeys":[],"type":"replace"}}},"documentId":"work_50eb4b85-3683-4598-8bb9-524f1b3f15f0_2024-09-18T14:10:06.254Z","entityType":"","genre":"TECHNICAL","http_status":500}},"message":"Update indexing fail"},"level":"error","message":"[OPENCTI-MODULE] Connector manager error processing work closing","source":"backend","timestamp":"2024-09-23T15:11:11.451Z","version":"6.3.1"} {"category":"APP","error":{"extensions":{"code":"DATABASE_ERROR","data":{"cause":{"meta":{"body":{"error":{"reason":"index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","root_cause":[{"reason":"index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","type":"cluster_block_exception"}],"type":"cluster_block_exception"},"status":429},"headers":{"content-length":"427","content-type":"application/vnd.elasticsearch+json;compatible-with=8","x-elastic-product":"Elasticsearch"},"meta":{"aborted":false,"attempts":0,"connection":{"_openRequests":0,"deadCount":0,"headers":{"user-agent":"elasticsearch-js/8.15.0 (linux 5.15.0-118-generic-x64; Node.js 20.17.0; Transport 8.7.0)","x-elastic-client-meta":"es=8.15.0,js=20.17.0,t=8.7.0,hc=20.17.0"},"id":"http://elasticsearch:9200/","maxEventListeners":100,"pool":{"_events":{},"_eventsCount":0},"resurrectTimeout":0,"timeout":30000,"tls":{"ca":null,"rejectUnauthorized":true},"url":"http://elasticsearch:9200/","weight":1000},"context":null,"name":"elasticsearch-js","request":{"id":32465,"options":{},"params":{"body":"{\"script\":{\"source\":\"ctx._source['status'] = \\\"complete\\\";\\n ctx._source['completed_time'] = params.completed_time;\\n ctx._source['completed_number'] = params.completed_number;\",\"lang\":\"painless\",\"params\":{\"completed_time\":\"2024-09-23T15:11:11.462Z\",\"completed_number\":62}}}","headers":{"accept":"application/vnd.elasticsearch+json; compatible-with=8","content-length":"308","content-type":"application/vnd.elasticsearch+json; compatible-with=8","user-agent":"elasticsearch-js/8.15.0 (linux 5.15.0-118-generic-x64; Node.js 20.17.0; Transport 8.7.0)","x-elastic-client-meta":"es=8.15.0,js=20.17.0,t=8.7.0,hc=20.17.0"},"method":"POST","path":"/opencti_history-000001/_update/work_50eb4b85-3683-4598-8bb9-524f1b3f15f0_2024-09-18T14%3A52%3A08.089Z","querystring":"retry_on_conflict=5&timeout=5m&refresh=true"}}},"statusCode":429,"warnings":null},"name":"ResponseError","options":{"redaction":{"additionalKeys":[],"type":"replace"}}},"documentId":"work_50eb4b85-3683-4598-8bb9-524f1b3f15f0_2024-09-18T14:52:08.089Z","entityType":"","genre":"TECHNICAL","http_status":500}},"message":"Update indexing fail"},"level":"error","message":"[OPENCTI-MODULE] Connector manager error processing work closing","source":"backend","timestamp":"2024-09-23T15:11:11.470Z","version":"6.3.1"} {"category":"APP","error":{"extensions":{"code":"DATABASE_ERROR","data":{"cause":{"meta":{"body":{"error":{"reason":"index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","root_cause":[{"reason":"index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","type":"cluster_block_exception"}],"type":"cluster_block_exception"},"status":429},"headers":{"content-length":"427","content-type":"application/vnd.elasticsearch+json;compatible-with=8","x-elastic-product":"Elasticsearch"},"meta":{"aborted":false,"attempts":0,"connection":{"_openRequests":0,"deadCount":0,"headers":{"user-agent":"elasticsearch-js/8.15.0 (linux 5.15.0-118-generic-x64; Node.js 20.17.0; Transport 8.7.0)","x-elastic-client-meta":"es=8.15.0,js=20.17.0,t=8.7.0,hc=20.17.0"},"id":"http://elasticsearch:9200/","maxEventListeners":100,"pool":{"_events":{},"_eventsCount":0},"resurrectTimeout":0,"timeout":30000,"tls":{"ca":null,"rejectUnauthorized":true},"url":"http://elasticsearch:9200/","weight":1000},"context":null,"name":"elasticsearch-js","request":{"id":32470,"options":{},"params":{"body":"{\"script\":{\"source\":\"ctx._source['status'] = \\\"complete\\\";\\n ctx._source['completed_time'] = params.completed_time;\\n ctx._source['completed_number'] = params.completed_number;\",\"lang\":\"painless\",\"params\":{\"completed_time\":\"2024-09-23T15:11:11.472Z\",\"completed_number\":62}}}","headers":{"accept":"application/vnd.elasticsearch+json; compatible-with=8","content-length":"308","content-type":"application/vnd.elasticsearch+json; compatible-with=8","user-agent":"elasticsearch-js/8.15.0 (linux 5.15.0-118-generic-x64; Node.js 20.17.0; Transport 8.7.0)","x-elastic-client-meta":"es=8.15.0,js=20.17.0,t=8.7.0,hc=20.17.0"},"method":"POST","path":"/opencti_history-000001/_update/work_50eb4b85-3683-4598-8bb9-524f1b3f15f0_2024-09-19T01%3A22%3A10.072Z","querystring":"retry_on_conflict=5&timeout=5m&refresh=true"}}},"statusCode":429,"warnings":null},"name":"ResponseError","options":{"redaction":{"additionalKeys":[],"type":"replace"}}},"documentId":"work_50eb4b85-3683-4598-8bb9-524f1b3f15f0_2024-09-19T01:22:10.072Z","entityType":"","genre":"TECHNICAL","http_status":500}},"message":"Update indexing fail"},"level":"error","message":"[OPENCTI-MODULE] Connector manager error processing work closing","source":"backend","timestamp":"2024-09-23T15:11:11.479Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"work_406e8c4e-7c7f-404d-bac0-c94954710ff1_2024-09-23T15:08:07.226Z","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateExpectationsNumber (/opt/opencti/build/src/domain/work.js:233:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at updateExpectationsNumber (/opt/opencti/build/src/domain/work.js:233:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"expectations","type":"Variable"}]],"name":"addExpectations"}]],"size":95,"source":"backend","time":10,"timestamp":"2024-09-23T15:11:12.997Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.8","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"provider":"Rule manager"},"message":"Redis stream consume fail","name":"DATABASE_ERROR","stack":"GraphQLError: Redis stream consume fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at processStep (/opt/opencti/build/src/database/redis.ts:706:20)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"},{"attributes":{"documentId":"rule_engine_settings","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at ruleStreamHandler (/opt/opencti/build/src/manager/ruleManager.ts:267:3)\n at processStreamResult (/opt/opencti/build/src/database/redis.ts:646:3)\n at processStep (/opt/opencti/build/src/database/redis.ts:700:31)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at ruleStreamHandler (/opt/opencti/build/src/manager/ruleManager.ts:267:3)\n at processStreamResult (/opt/opencti/build/src/database/redis.ts:646:3)\n at processStep (/opt/opencti/build/src/database/redis.ts:700:31)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"}],"level":"error","message":"Redis stream consume fail","source":"backend","timestamp":"2024-09-23T15:11:16.714Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"bc97d8dc-1efc-4c4f-93b7-29bbfb8646bf","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":183,"timestamp":"2024-09-23T15:11:27.478Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.6","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"dd3d68ef-e5a3-4232-bb72-acccbe418098","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":137,"timestamp":"2024-09-23T15:11:27.526Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.20","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"fc6e94b9-a6f9-4c8a-8de4-cc0866b69a12","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":173,"timestamp":"2024-09-23T15:11:27.723Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.19","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"provider":"Rule manager"},"message":"Redis stream consume fail","name":"DATABASE_ERROR","stack":"GraphQLError: Redis stream consume fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at processStep (/opt/opencti/build/src/database/redis.ts:706:20)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"},{"attributes":{"documentId":"rule_engine_settings","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at ruleStreamHandler (/opt/opencti/build/src/manager/ruleManager.ts:267:3)\n at processStreamResult (/opt/opencti/build/src/database/redis.ts:646:3)\n at processStep (/opt/opencti/build/src/database/redis.ts:700:31)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at ruleStreamHandler (/opt/opencti/build/src/manager/ruleManager.ts:267:3)\n at processStreamResult (/opt/opencti/build/src/database/redis.ts:646:3)\n at processStep (/opt/opencti/build/src/database/redis.ts:700:31)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"}],"level":"error","message":"Redis stream consume fail","source":"backend","timestamp":"2024-09-23T15:11:28.827Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"83213e33-b0ca-4fee-943d-850777d42006","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":212,"timestamp":"2024-09-23T15:11:28.828Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.3","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"3507dfb1-dfe3-404d-95f5-ca82539d745c","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":240,"source":"backend","time":237,"timestamp":"2024-09-23T15:11:29.546Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.2","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"408ab64d-b49e-4010-97cd-a431ea7a8b7f","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":225,"timestamp":"2024-09-23T15:11:29.680Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.10","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"work_406e8c4e-7c7f-404d-bac0-c94954710ff1_2024-09-23T15:08:07.226Z","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateProcessedTime (/opt/opencti/build/src/domain/work.js:269:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_history-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at updateProcessedTime (/opt/opencti/build/src/domain/work.js:269:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"message","type":"Variable"}],[{"is_empty":true,"name":"inError","type":"Variable"}]],"name":"toProcessed"}]],"size":171,"source":"backend","time":36,"timestamp":"2024-09-23T15:11:30.723Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.8","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"1275aa87-407a-487a-ae7a-3d34ae114a6a","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":210,"timestamp":"2024-09-23T15:11:30.969Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.11","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"406e8c4e-7c7f-404d-bac0-c94954710ff1","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":240,"source":"backend","time":208,"timestamp":"2024-09-23T15:11:30.970Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.8","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"c5c4898b-b76d-4980-a9ce-38f5d9dbde65","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":193,"timestamp":"2024-09-23T15:11:31.001Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.7","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"3eef4b62-fc75-45bc-a93f-4778bdf04446","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":123,"timestamp":"2024-09-23T15:11:36.781Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.13","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"501a14f2-4399-4339-ad7e-9908b619f381","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":93,"timestamp":"2024-09-23T15:11:37.022Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.14","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"documentId":"b9e28f88-dbc2-4148-b7ac-2c724a903a53","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Update indexing fail","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":344,"source":"backend","time":185,"timestamp":"2024-09-23T15:11:39.484Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.15","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"provider":"Rule manager"},"message":"Redis stream consume fail","name":"DATABASE_ERROR","stack":"GraphQLError: Redis stream consume fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at processStep (/opt/opencti/build/src/database/redis.ts:706:20)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"},{"attributes":{"documentId":"rule_engine_settings","entityType":"","genre":"TECHNICAL","http_status":500},"message":"Update indexing fail","name":"DATABASE_ERROR","stack":"GraphQLError: Update indexing fail\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at DatabaseError (/opt/opencti/build/src/config/errors.js:57:48)\n at /opt/opencti/build/src/database/engine.js:3237:11\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at ruleStreamHandler (/opt/opencti/build/src/manager/ruleManager.ts:267:3)\n at processStreamResult (/opt/opencti/build/src/database/redis.ts:646:3)\n at processStep (/opt/opencti/build/src/database/redis.ts:700:31)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"},{"message":"cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];","name":"ResponseError","stack":"ResponseError: cluster_block_exception\n\tRoot causes:\n\t\tcluster_block_exception: index [opencti_internal_objects-000001] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block];\n at FJt._request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:601:17)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at /opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:704:22\n at FJt.request (/opt/opencti/build/node_modules/@elastic/transport/src/Transport.ts:701:14)\n at dZe.UpdateApi [as update] (/opt/opencti/build/node_modules/@elastic/elasticsearch/src/api/api/update.ts:83:10)\n at async Promise.all (index 0)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2101:7)\n at ruleStreamHandler (/opt/opencti/build/src/manager/ruleManager.ts:267:3)\n at processStreamResult (/opt/opencti/build/src/database/redis.ts:646:3)\n at processStep (/opt/opencti/build/src/database/redis.ts:700:31)\n at processingLoop (/opt/opencti/build/src/database/redis.ts:717:13)"}],"level":"error","message":"Redis stream consume fail","source":"backend","timestamp":"2024-09-23T15:11:40.869Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:11:50.029Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:11:50.322Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:11:59.786Z","version":"6.3.1"} {"category":"APP","level":"error","manager":"SYNC_MANAGER","message":"[REDIS] Failed to extend resource","source":"backend","timestamp":"2024-09-23T15:12:16.829Z","version":"6.3.1"} {"category":"APP","level":"error","manager":"HISTORY_MANAGER","message":"[REDIS] Failed to extend resource","source":"backend","timestamp":"2024-09-23T15:12:18.032Z","version":"6.3.1"} {"category":"APP","level":"error","manager":"NOTIFICATION_MANAGER","message":"[REDIS] Failed to extend resource","source":"backend","timestamp":"2024-09-23T15:12:18.032Z","version":"6.3.1"} {"category":"APP","level":"error","manager":"PUBLISHER_MANAGER","message":"[REDIS] Failed to extend resource","source":"backend","timestamp":"2024-09-23T15:12:18.032Z","version":"6.3.1"} {"category":"APP","level":"error","manager":"PLAYBOOK_MANAGER","message":"[REDIS] Failed to extend resource","source":"backend","timestamp":"2024-09-23T15:12:18.033Z","version":"6.3.1"} {"category":"APP","level":"error","manager":"ACTIVITY_MANAGER","message":"[REDIS] Failed to extend resource","source":"backend","timestamp":"2024-09-23T15:12:18.037Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:19.038Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:19.138Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:19.424Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:19.560Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:19.803Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:20.033Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:20.109Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:20.254Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:20.751Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:20.752Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:20.816Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:20.817Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:21.157Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:21.174Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:21.180Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:21.180Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:21.299Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:21.365Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:21.436Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:21.523Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:21.721Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:21.747Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:21.901Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:21.961Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:22.060Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:23.523Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:24.002Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:24.037Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:24.394Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:24.399Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:24.697Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:24.884Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:25.056Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:25.114Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:25.355Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:25.527Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:25.776Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:26.149Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:27.095Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:27.330Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:27.381Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:27.618Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:27.726Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:27.830Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:28.297Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:28.560Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:29.791Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"BUSINESS","http_status":500,"participantIds":["bc97d8dc-1efc-4c4f-93b7-29bbfb8646bf","connector--ae9283e9-b392-5094-a67a-1b3f42a41b10"]},"message":"Execution timeout, too many concurrent call on the same entities","name":"LOCK_ERROR","stack":"GraphQLError: Execution timeout, too many concurrent call on the same entities\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at LockTimeoutError (/opt/opencti/build/src/config/errors.js:109:51)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2153:13)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Execution timeout, too many concurrent call on the same entities","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":24447,"timestamp":"2024-09-23T15:12:31.980Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.6","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:31.983Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"BUSINESS","http_status":500,"participantIds":["dd3d68ef-e5a3-4232-bb72-acccbe418098","connector--798c08bf-1ed2-5bb7-acca-ffb6b0a25ee1"]},"message":"Execution timeout, too many concurrent call on the same entities","name":"LOCK_ERROR","stack":"GraphQLError: Execution timeout, too many concurrent call on the same entities\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at LockTimeoutError (/opt/opencti/build/src/config/errors.js:109:51)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2153:13)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Execution timeout, too many concurrent call on the same entities","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":24768,"timestamp":"2024-09-23T15:12:32.721Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.20","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"BUSINESS","http_status":500,"participantIds":["fc6e94b9-a6f9-4c8a-8de4-cc0866b69a12","connector--d5babe35-1a52-5847-97b9-a3cb937801de"]},"message":"Execution timeout, too many concurrent call on the same entities","name":"LOCK_ERROR","stack":"GraphQLError: Execution timeout, too many concurrent call on the same entities\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at LockTimeoutError (/opt/opencti/build/src/config/errors.js:109:51)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2153:13)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Execution timeout, too many concurrent call on the same entities","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":25591,"timestamp":"2024-09-23T15:12:33.539Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.19","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"BUSINESS","http_status":500,"participantIds":["83213e33-b0ca-4fee-943d-850777d42006","connector--d01a8a22-0cbd-52ef-b6a7-3e631f440a9a"]},"message":"Execution timeout, too many concurrent call on the same entities","name":"LOCK_ERROR","stack":"GraphQLError: Execution timeout, too many concurrent call on the same entities\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at LockTimeoutError (/opt/opencti/build/src/config/errors.js:109:51)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2153:13)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Execution timeout, too many concurrent call on the same entities","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":24906,"timestamp":"2024-09-23T15:12:33.784Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.3","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:33.808Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"BUSINESS","http_status":500,"participantIds":["3507dfb1-dfe3-404d-95f5-ca82539d745c","connector--ba2a65fb-8d95-59f4-8421-a00e2679c5cf"]},"message":"Execution timeout, too many concurrent call on the same entities","name":"LOCK_ERROR","stack":"GraphQLError: Execution timeout, too many concurrent call on the same entities\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at LockTimeoutError (/opt/opencti/build/src/config/errors.js:109:51)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2153:13)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Execution timeout, too many concurrent call on the same entities","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":240,"source":"backend","time":25155,"timestamp":"2024-09-23T15:12:34.951Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.2","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:34.954Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"BUSINESS","http_status":500,"participantIds":["406e8c4e-7c7f-404d-bac0-c94954710ff1","connector--3c38fde6-12bf-597a-a76f-caa002d9d0b9"]},"message":"Execution timeout, too many concurrent call on the same entities","name":"LOCK_ERROR","stack":"GraphQLError: Execution timeout, too many concurrent call on the same entities\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at LockTimeoutError (/opt/opencti/build/src/config/errors.js:109:51)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2153:13)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Execution timeout, too many concurrent call on the same entities","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":240,"source":"backend","time":24500,"timestamp":"2024-09-23T15:12:35.525Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.8","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:35.528Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"BUSINESS","http_status":500,"participantIds":["408ab64d-b49e-4010-97cd-a431ea7a8b7f","connector--bc79d143-e053-50aa-9bde-cdac09b4a05d"]},"message":"Execution timeout, too many concurrent call on the same entities","name":"LOCK_ERROR","stack":"GraphQLError: Execution timeout, too many concurrent call on the same entities\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at LockTimeoutError (/opt/opencti/build/src/config/errors.js:109:51)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2153:13)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Execution timeout, too many concurrent call on the same entities","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":26185,"timestamp":"2024-09-23T15:12:35.875Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.10","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:35.878Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"BUSINESS","http_status":500,"participantIds":["1275aa87-407a-487a-ae7a-3d34ae114a6a","connector--81cab798-7f0e-54b5-9138-a0020c37d9b9"]},"message":"Execution timeout, too many concurrent call on the same entities","name":"LOCK_ERROR","stack":"GraphQLError: Execution timeout, too many concurrent call on the same entities\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at LockTimeoutError (/opt/opencti/build/src/config/errors.js:109:51)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2153:13)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Execution timeout, too many concurrent call on the same entities","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":24938,"timestamp":"2024-09-23T15:12:35.922Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.11","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:35.927Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"BUSINESS","http_status":500,"participantIds":["c5c4898b-b76d-4980-a9ce-38f5d9dbde65","connector--b1c9c048-64c7-52d3-b7d8-7067eba08be3"]},"message":"Execution timeout, too many concurrent call on the same entities","name":"LOCK_ERROR","stack":"GraphQLError: Execution timeout, too many concurrent call on the same entities\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at LockTimeoutError (/opt/opencti/build/src/config/errors.js:109:51)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2153:13)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Execution timeout, too many concurrent call on the same entities","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":25035,"timestamp":"2024-09-23T15:12:36.047Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.7","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:36.049Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"BUSINESS","http_status":500,"participantIds":["501a14f2-4399-4339-ad7e-9908b619f381","connector--ca2bdbac-b3a4-5fd3-b377-28710e1b435b"]},"message":"Execution timeout, too many concurrent call on the same entities","name":"LOCK_ERROR","stack":"GraphQLError: Execution timeout, too many concurrent call on the same entities\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at LockTimeoutError (/opt/opencti/build/src/config/errors.js:109:51)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2153:13)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Execution timeout, too many concurrent call on the same entities","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":24781,"timestamp":"2024-09-23T15:12:41.811Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.14","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:41.814Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"BUSINESS","http_status":500,"participantIds":["3eef4b62-fc75-45bc-a93f-4778bdf04446","connector--49f8eac4-ef84-59f3-9876-e582d1c54325"]},"message":"Execution timeout, too many concurrent call on the same entities","name":"LOCK_ERROR","stack":"GraphQLError: Execution timeout, too many concurrent call on the same entities\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at LockTimeoutError (/opt/opencti/build/src/config/errors.js:109:51)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2153:13)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Execution timeout, too many concurrent call on the same entities","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":25266,"timestamp":"2024-09-23T15:12:42.055Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.13","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:42.058Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:44.718Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:44.780Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"BUSINESS","http_status":500,"participantIds":["b9e28f88-dbc2-4148-b7ac-2c724a903a53","connector--bb728132-2009-5393-b303-9e0310a00c89"]},"message":"Execution timeout, too many concurrent call on the same entities","name":"LOCK_ERROR","stack":"GraphQLError: Execution timeout, too many concurrent call on the same entities\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at LockTimeoutError (/opt/opencti/build/src/config/errors.js:109:51)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2153:13)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Execution timeout, too many concurrent call on the same entities","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":344,"source":"backend","time":25413,"timestamp":"2024-09-23T15:12:44.905Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.15","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:44.908Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:44.931Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:45.239Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:45.440Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:45.774Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:46.195Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:46.404Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:46.733Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:46.906Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:47.103Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:47.387Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:47.873Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:48.280Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:48.430Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:48.537Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:48.801Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:49.036Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:49.365Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:49.473Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:49.794Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:50.224Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:50.371Z","version":"6.3.1"} {"category":"APP","level":"error","manager":"PLAYBOOK_MANAGER","message":"[REDIS] Failed to extend resource","source":"backend","timestamp":"2024-09-23T15:12:59.644Z","version":"6.3.1"} {"category":"APP","level":"error","manager":"NOTIFICATION_MANAGER","message":"[REDIS] Failed to extend resource","source":"backend","timestamp":"2024-09-23T15:12:59.645Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:12:59.789Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{},"message":"MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.","name":"GraphQLError","stack":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"}],"inner_relation_creation":0,"level":"error","message":"MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.","operation":"Unspecified","query_attributes":[[{"arguments":[],"name":"settings"}]],"size":2,"source":"backend","time":14,"timestamp":"2024-09-23T15:13:18.545Z","type":"READ_ERROR","version":"6.3.1"} (node:7) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 close listeners added to [Socket]. MaxListeners is 10. Use emitter.setMaxListeners() to increase limit (Usenode --trace-warnings ...to show where the warning was created) {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:13:24.940Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:13:25.339Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:13:28.088Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:13:28.534Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:13:29.790Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"BUSINESS","http_status":500,"participantIds":["dd3d68ef-e5a3-4232-bb72-acccbe418098","connector--798c08bf-1ed2-5bb7-acca-ffb6b0a25ee1"]},"message":"Execution timeout, too many concurrent call on the same entities","name":"LOCK_ERROR","stack":"GraphQLError: Execution timeout, too many concurrent call on the same entities\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at LockTimeoutError (/opt/opencti/build/src/config/errors.js:109:51)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2153:13)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Execution timeout, too many concurrent call on the same entities","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":25209,"timestamp":"2024-09-23T15:13:37.939Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.20","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:13:37.942Z","version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"BUSINESS","http_status":500,"participantIds":["fc6e94b9-a6f9-4c8a-8de4-cc0866b69a12","connector--d5babe35-1a52-5847-97b9-a3cb937801de"]},"message":"Execution timeout, too many concurrent call on the same entities","name":"LOCK_ERROR","stack":"GraphQLError: Execution timeout, too many concurrent call on the same entities\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at LockTimeoutError (/opt/opencti/build/src/config/errors.js:109:51)\n at updateAttributeMetaResolved (/opt/opencti/build/src/database/middleware.js:2153:13)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at updateConnectorWithConnectorInfo (/opt/opencti/build/src/domain/connector.ts:82:3)\n at pingConnector (/opt/opencti/build/src/domain/connector.ts:94:3)"}],"inner_relation_creation":0,"level":"error","message":"Execution timeout, too many concurrent call on the same entities","operation":"Unspecified","query_attributes":[[{"arguments":[[{"is_empty":true,"name":"id","type":"Variable"}],[{"is_empty":true,"name":"state","type":"Variable"}],[{"is_empty":true,"name":"connectorInfo","type":"Variable"}]],"name":"pingConnector"}]],"size":218,"source":"backend","time":25024,"timestamp":"2024-09-23T15:13:38.571Z","type":"WRITE_ERROR","user":{"group_ids":["e44d5586-be04-48f7-a118-39dbc5f34175","b259776e-d712-4830-b294-384305676a9f"],"ip":"::ffff:172.18.0.19","organization_ids":[],"socket":"query","user_id":"88ec0c6a-13ce-5e39-b486-354fe4a7084f","user_metadata":{}},"version":"6.3.1"} {"category":"APP","errors":[{"attributes":{"genre":"TECHNICAL","http_status":500,"reason":"ReplyError: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.\n at parseError (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:179:12)\n at parseType (/opt/opencti/build/node_modules/redis-parser/lib/parser.js:302:14)"},"message":"Engine unhandled rejection","name":"UNKNOWN_ERROR","stack":"GraphQLError: Engine unhandled rejection\n at error (/opt/opencti/build/src/config/errors.js:7:10)\n at UnknownError (/opt/opencti/build/src/config/errors.js:81:47)\n at process.<anonymous> (/opt/opencti/build/src/boot.js:61:16)\n at process.emit (node:events:519:28)\n at process.I9r.process.emit (/opt/opencti/build/node_modules/source-map-support/source-map-support.js:516:21)\n at emitUnhandledRejection (node:internal/process/promises:250:13)\n at throwUnhandledRejectionsMode (node:internal/process/promises:385:19)\n at processPromiseRejections (node:internal/process/promises:470:17)\n at processTicksAndRejections (node:internal/process/task_queues:96:32)"}],"level":"error","message":"Engine unhandled rejection","source":"backend","timestamp":"2024-09-23T15:13:38.576Z","version":"6.3.1"}

Can you help me?

pesquisa1234 commented 1 month ago

My Redis logs:

1:M 23 Sep 2024 17:38:30.528 * Background saving started by pid 5736 5736:C 23 Sep 2024 17:40:10.308 # Write error while saving DB to the disk(rdbSaveRio): No space left on device 1:M 23 Sep 2024 17:40:10.921 # Background saving error 1:M 23 Sep 2024 17:40:11.022 * 1 changes in 3600 seconds. Saving... 1:M 23 Sep 2024 17:40:11.490 * Background saving started by pid 5797 5797:C 23 Sep 2024 17:41:49.549 # Write error while saving DB to the disk(rdbSaveRio): No space left on device 1:M 23 Sep 2024 17:41:50.148 # Background saving error 1:M 23 Sep 2024 17:41:50.249 * 1 changes in 3600 seconds. Saving... 1:M 23 Sep 2024 17:41:50.707 * Background saving started by pid 5858 5858:C 23 Sep 2024 17:43:28.913 # Write error while saving DB to the disk(rdbSaveRio): No space left on device 1:M 23 Sep 2024 17:43:29.483 # Background saving error 1:M 23 Sep 2024 17:43:29.583 * 1 changes in 3600 seconds. Saving... 1:M 23 Sep 2024 17:43:30.054 * Background saving started by pid 5919 5919:C 23 Sep 2024 17:45:08.499 # Write error while saving DB to the disk(rdbSaveRio): No space left on device 1:M 23 Sep 2024 17:45:09.058 # Background saving error 1:M 23 Sep 2024 17:45:09.158 * 1 changes in 3600 seconds. Saving... 1:M 23 Sep 2024 17:45:09.631 * Background saving started by pid 5978