Skip to content

UI Bug and endless initializing #3772

Description

@LvckyAPI

Describe the bug
The connection was successful, and the log shows that everything is fine. However, the lifecycle status remains "initializing."

And in German, the text sticks out of the box for RAM usage under "Infrastructure" (see screenshot graph)

To Reproduce
Steps to reproduce the behavior:

  1. Update to v3.9.2 (just rise the versions in docker compose)
services:
  checkmate:
    image: 'ghcr.io/bluewave-labs/checkmate-backend-mono-multiarch:v3.9.2'
    environment:
      - SERVICE_URL_CHECKMATE_52345
      - 'UPTIME_APP_API_BASE_URL=${SERVICE_URL_CHECKMATE}/api/v1'
      - 'UPTIME_APP_CLIENT_HOST=${SERVICE_URL_CHECKMATE}'
      - 'DB_CONNECTION_STRING=mongodb://mongodb:27017/uptime_db'
      - 'CLIENT_HOST=${SERVICE_URL_CHECKMATE}'
      - 'JWT_SECRET=${SERVICE_PASSWORD_64_JWT}'
    depends_on:
      - mongodb
    healthcheck:
      test:
        - CMD
        - node
        - '-e'
        - "require('http').get('http://127.0.0.1:52345/health', r => process.exit(r.statusCode === 200 ? 0 : 1)).on('error', () => process.exit(1))"
      interval: 30s
      timeout: 5s
      retries: 3
  mongodb:
    image: 'ghcr.io/bluewave-labs/checkmate-mongo:v3.9.2'
    command:
      - mongod
      - '--quiet'
      - '--bind_ip_all'
    volumes:
      - 'checkmate-mongo:/data/db'
    healthcheck:
      test:
        - CMD
        - mongosh
        - '--eval'
        - "db.adminCommand('ping')"
        - '--quiet'
      interval: 5s
      timeout: 30s
      start_period: 10s

Expected behavior
lifecycle is working

Screenshots

Image

Desktop (please complete the following information):

  • Browser Chrome
  • Version 150.0.7871.46 (Offizieller Build) (64-Bit)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions