fix bug in initial db creation caused by prometheus lib rtying to access tables at load time
All checks were successful
/ test (push) Successful in 2m27s
/ deploy (push) Successful in 3m22s

This commit is contained in:
j3d1 2025-03-09 18:47:59 +01:00
parent 6b0def543c
commit d80fb60afd
8 changed files with 41 additions and 33 deletions

View file

View file

@ -3,18 +3,20 @@ from prometheus_client.core import CounterMetricFamily, REGISTRY
from django.db.models import Case, Value, When, BooleanField, Count from django.db.models import Case, Value, When, BooleanField, Count
from inventory.models import Item from inventory.models import Item
class ItemCountCollector(object): class ItemCountCollector(object):
def collect(self): def collect(self):
counter = CounterMetricFamily("item_count", "Current number of items", labels=['event', 'returned_state']) try:
counter = CounterMetricFamily("item_count", "Current number of items", labels=['event', 'returned_state'])
yield counter yield counter
if not apps.models_ready or not apps.apps_ready: if not apps.models_ready or not apps.apps_ready:
return return
queryset = ( queryset = (
Item.all_objects Item.all_objects
.annotate( .annotate(
returned=Case( returned=Case(
When(returned_at__isnull=True, then=Value(False)), When(returned_at__isnull=True, then=Value(False)),
@ -25,11 +27,14 @@ class ItemCountCollector(object):
.values('event__slug', 'returned', 'event_id') .values('event__slug', 'returned', 'event_id')
.annotate(amount=Count('id')) .annotate(amount=Count('id'))
.order_by('event__slug', 'returned') # Optional: order by slug and returned .order_by('event__slug', 'returned') # Optional: order by slug and returned
) )
for e in queryset: for e in queryset:
counter.add_metric([e["event__slug"].lower(), str(e["returned"])], e["amount"]) counter.add_metric([e["event__slug"].lower(), str(e["returned"])], e["amount"])
yield counter yield counter
except:
pass
REGISTRY.register(ItemCountCollector())
REGISTRY.register(ItemCountCollector())

View file

@ -1,13 +1,8 @@
FROM python:3.11-bookworm FROM python:3.11-slim-bookworm
LABEL authors="lagertonne" LABEL authors="lagertonne"
ENV PYTHONUNBUFFERED 1 ENV PYTHONUNBUFFERED 1
RUN mkdir /code RUN mkdir /code
WORKDIR /code WORKDIR /code
COPY requirements.dev.txt /code/ COPY requirements.dev.txt /code/
COPY requirements.prod.txt /code/ RUN pip install -r requirements.dev.txt
RUN apt update && apt install -y mariadb-client
RUN pip install -r requirements.dev.txt
RUN pip install -r requirements.prod.txt
RUN pip install mysqlclient
COPY .. /code/

View file

@ -1,4 +1,4 @@
FROM docker.io/node:22 FROM node:22-alpine
RUN mkdir /web RUN mkdir /web
WORKDIR /web WORKDIR /web

View file

@ -1,3 +1,4 @@
name: c3lf-sys3-dev
services: services:
core: core:
build: build:
@ -6,11 +7,12 @@ services:
command: bash -c 'python manage.py migrate && python testdata.py && python manage.py runserver 0.0.0.0:8000' command: bash -c 'python manage.py migrate && python testdata.py && python manage.py runserver 0.0.0.0:8000'
environment: environment:
- HTTP_HOST=core - HTTP_HOST=core
- DB_FILE=dev.db - DB_FILE=.local/dev.db
- DEBUG_MODE_ACTIVE=true - DEBUG_MODE_ACTIVE=true
volumes: volumes:
- ../../core:/code - ../../core:/code:ro
- ../testdata.py:/code/testdata.py - ../testdata.py:/code/testdata.py:ro
- backend_context:/code/.local
ports: ports:
- "8000:8000" - "8000:8000"
@ -20,10 +22,12 @@ services:
dockerfile: ../deploy/dev/Dockerfile.frontend dockerfile: ../deploy/dev/Dockerfile.frontend
command: npm run serve command: npm run serve
volumes: volumes:
- ../../web:/web:ro - ../../web/src:/web/src
- /web/node_modules
- ./vue.config.js:/web/vue.config.js - ./vue.config.js:/web/vue.config.js
ports: ports:
- "8080:8080" - "8080:8080"
depends_on: depends_on:
- core - core
volumes:
backend_context:

View file

@ -1,11 +1,11 @@
FROM python:3.11-bookworm FROM python:3.11-slim-bookworm
LABEL authors="lagertonne" LABEL authors="lagertonne"
ENV PYTHONUNBUFFERED 1 ENV PYTHONUNBUFFERED 1
RUN mkdir /code RUN mkdir /code
WORKDIR /code WORKDIR /code
COPY requirements.prod.txt /code/ RUN apt update && apt install -y pkg-config mariadb-client default-libmysqlclient-dev build-essential
RUN apt update && apt install -y mariadb-client
RUN pip install -r requirements.prod.txt
RUN pip install mysqlclient RUN pip install mysqlclient
COPY requirements.prod.txt /code/
RUN pip install -r requirements.prod.txt
COPY .. /code/ COPY .. /code/

View file

@ -1,4 +1,4 @@
FROM docker.io/node:22 FROM node:22-alpine
RUN mkdir /web RUN mkdir /web
WORKDIR /web WORKDIR /web

View file

@ -1,3 +1,4 @@
name: c3lf-sys3-testing
services: services:
redis: redis:
image: redis image: redis
@ -31,8 +32,9 @@ services:
- DB_PASSWORD=system3 - DB_PASSWORD=system3
- MAIL_DOMAIN=mail:1025 - MAIL_DOMAIN=mail:1025
volumes: volumes:
- ../../core:/code - ../../core:/code:ro
- ../testdata.py:/code/testdata.py - ../testdata.py:/code/testdata.py:ro
- backend_context:/code
ports: ports:
- "8000:8000" - "8000:8000"
depends_on: depends_on:
@ -47,8 +49,8 @@ services:
command: npm run serve command: npm run serve
volumes: volumes:
- ../../web:/web:ro - ../../web:/web:ro
- /web/node_modules - ./vue.config.js:/web/vue.config.js:ro
- ./vue.config.js:/web/vue.config.js - frontend_context:/web
ports: ports:
- "8080:8080" - "8080:8080"
depends_on: depends_on:
@ -70,3 +72,5 @@ services:
volumes: volumes:
mariadb_data: mariadb_data:
mailpit_data: mailpit_data:
frontend_context:
backend_context: