mirror of
https://github.com/gadgethd/ukmesh.git
synced 2026-09-13 18:45:36 +00:00
- Lazy path resolver: geographic hop reconstruction from path_hashes without pre-training data; fixes observer self-hash trimming bug - ACL watcher worker: auto-provisions Mosquitto ACL entries when PUBLISH is denied for a known user; eliminates the recurring gnomemoe ACL removal issue - connectionMonitor: increase historical scan to 50 MB; fix OOM by streaming lines instead of buffering; fixes missed backfill on restart - Feed page: replace path-beta with lazy paths; add clickable node markers showing name and public key; observer column nowrap; summary text unclipped - PacketFeed: GRP-only message store protected from ADV eviction; scroll to bottom on new message; 24-hour message backfill on initial load - getRecentMessages: separate DB query for last 50 GRP messages last 24h - getPacketDetail: new endpoint for full packet detail including observations - Grafana/Loki/Promtail observability stack with Docker log collection Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
30 lines
895 B
YAML
30 lines
895 B
YAML
server:
|
|
http_listen_port: 9080
|
|
grpc_listen_port: 0
|
|
|
|
positions:
|
|
filename: /tmp/positions.yaml
|
|
|
|
clients:
|
|
- url: http://loki:3100/loki/api/v1/push
|
|
|
|
scrape_configs:
|
|
- job_name: docker
|
|
docker_sd_configs:
|
|
- host: unix:///var/run/docker.sock
|
|
refresh_interval: 5s
|
|
relabel_configs:
|
|
# Strip leading slash from container name
|
|
- source_labels: [__meta_docker_container_name]
|
|
regex: /(.*)
|
|
target_label: container
|
|
# Compose service name (e.g. backend, mosquitto, timescaledb)
|
|
- source_labels: [__meta_docker_container_label_com_docker_compose_service]
|
|
target_label: service
|
|
# Compose project name
|
|
- source_labels: [__meta_docker_container_label_com_docker_compose_project]
|
|
target_label: project
|
|
# stdout vs stderr
|
|
- source_labels: [__meta_docker_container_log_stream]
|
|
target_label: stream
|