BigBoot / AutoKuma

AutoKuma is a utility that automates the creation of Uptime Kuma monitors based on Docker container labels. With AutoKuma, you can eliminate the need for manual monitor creation in the Uptime Kuma UI.
MIT License
307 stars 15 forks source link

Groups should not be able to set itself as parent #56

Closed BigBoot closed 4 months ago

BigBoot commented 4 months ago
          somewhat related (im fresh to using autoukuma)

I would have thought i just need to add the - kuma.apps.group.name=apps annotation once on autokuma itself but it seems it tries to create a monitor for it due to the parent_name being part of the defaults

INFO [autokuma::sync] Creating new monitor: apps
WARN [autokuma::sync] Cannot create monitor apps because group apps does not exist

if i try just adding to a container its just ignored?

any idea what im missing here

Originally posted by @phyzical in https://github.com/BigBoot/AutoKuma/issues/17#issuecomment-2226905173

phyzical commented 4 months ago

thanks, just tried master can confirm that this no longer occurs.

but it also doesn't create the group?

infact it doesn't seem to complain the group doesn't exist anymore either? or am i miss understanding how the group works?

ive tried the following labels

kuma.apps.group.name=apps
kuma.{{container_name}}.group.name=apps

in combination with

kuma.{{container_name}}.docker.name={{container_name}}
kuma.{{container_name}}.docker.parent_name=apps

and the following defaults

docker.docker_container: {{container_name}}
docker.docker_host: 1
*.max_retries: 3

just to be clear the monitor is still created fine, just no group

BigBoot commented 4 months ago

Do you want to create a group per container? Like this?

apps
  |-> <container_1_group>
  |   |-> Docker
  |   |-> Http
  |   |-> ...
  | 
  |-> <container_2_group>
  |   |-> Docker
  |   |-> Http
  |   |-> ...
  | 
  |-> <container_3_group>
  |   |-> Docker
  |   |-> Http
  |   |-> ...
   ... 

In any case you need to make sure every monitor has a unique id, i.e with.

kuma.{{container_name}}.group.name=apps
kuma.{{container_name}}.docker.name={{container_name}}
kuma.{{container_name}}.docker.parent_name=apps

both your group and your docker have the same id {{container_name}} which won't work, you can do something like this:

kuma.apps.group.name=apps
kuma.{{container_name}}_group.group.name={{container_name}} Group
kuma.{{container_name}}_docker.docker.name={{container_name}} Container
kuma.{{container_name}}_docker.docker.parent_name={{container_name}}_group
phyzical commented 4 months ago

im trying an even simpler way atm just one group for all containers

kuma.apps.group.name=apps
kuma.{{container_name}}.group.name=apps
kuma.{{container_name}}.docker.name={{container_name}}

should become this correct?

  |-> <apps>
  |   |-> container1
  |   |-> container2
  |   |-> ...

On the latest docker image i found it complained about

WARN [autokuma::sync] Cannot create monitor xyz because group apps does not exist

now on the master build it doesn't even care?

BigBoot commented 4 months ago

This line is your problem:

kuma.{{container_name}}.group.name=apps this tells autokuma to create a group, to assign a monitor to a group you need to set parent_name i.e.:

kuma.apps.group.name=apps
kuma.{{container_name}}.docker.parent_name=apps
kuma.{{container_name}}.docker.name={{container_name}}
phyzical commented 4 months ago

ah yep.. opps that's why it stopped complaining about the group.

But im back at

2024-07-14 15:17:32.098 logstream=stderr    
WARN [autokuma::sync] Encountered error during sync: No group named apps could be found
2024-07-14 15:17:32.098 logstream=stderr    
INFO [autokuma::sync] Updating monitor: todo

am i miss understanding still and group with autokuma is designed only to group multiple monitors for a single container?

or should i be able to add kuma.apps.group.name=apps to 1 container and provide kuma.{{container_name}}.docker.parent_name=apps as a default for all monitors?

BigBoot commented 4 months ago

Does the group get created though? Since autokuma does not sort the monitors as of now it's possible it tries to create the child monitor before creating the parent and fail during the first sync, but then during the next sync the parent should already exist and everything should work out.

Yes, you would create the group once and then just assign them on all other containers, pesonally I have a bunch of labels on the autokuma container itself to create some common things.

Alternatively you could also create the group using the Static Monitors if that's more fitting for your setup

phyzical commented 4 months ago

nah the group is never created.

i even tried manually creating the group via the ui but it the container mointors still dont seem to "find" the group, i assume autokuma has to be the one to create the group, or should me manually creating the group work?

i prefer the idea of it being automatically handled for any new containers created much more k8s annotation power style 😆

BigBoot commented 4 months ago

I'm not sure, something else still has to be wrong, like I said you need to make sure every monitor has a unique id, do you maybe have another monitor with the id "apps"?

You could create the group manually, you just need to make sure you add the AutoKuma label and set it's value to the id, i.e. apps, that said there is likely still something wrong with your labels and autokuma will just delete it again during the next sync.

What comes before

2024-07-14 15:17:32.098 logstream=stderr    
WARN [autokuma::sync] Encountered error during sync: No group named apps could be found
2024-07-14 15:17:32.098 logstream=stderr    
INFO [autokuma::sync] Updating monitor: todo

You cut of which monitor it was working on when it encountered the error

phyzical commented 4 months ago

hmmmm yeah.... once i added the label it got pruned

So i tried creating another group via the ui, called it test , once i added the AutoKuma label then i saw this

2024-07-14 16:04:39.702 logstream=stderr    
INFO [autokuma::sync] Deleting monitor: test

i also tried creating a group via a non autokuma controlled monitor. called this one test3 juust incase but once i added the AutoKuma label it too was removed,

Maybe there's a bug where groups are being considered monitors and then it cant find its label on a container and removes the group?

BigBoot commented 4 months ago

groups are just a type of monitor, so yes you need to create the group using autokuma

phyzical commented 4 months ago

hmm any tips to diagnose this further? like verbose logging to see if it is skipping the group add label?

so if we just narrow down to group failing to create i tried adding

kuma.test2.group.name: test3

and saw nothing autokuma side occur,

BigBoot commented 4 months ago

Just to make sure, you added this label to the autokuma container? And your autokuma container runs on the same docker it is connected to?

phyzical commented 4 months ago

correct,

BigBoot commented 4 months ago

Can you manually delete all Monitors which have an AutoKuma label and then start AutoKuma and attach the full logs here?

Creating a Monitor and a Group should look something like this.

INFO [autokuma::sync] Creating new monitor: nginx
WARN [autokuma::sync] Cannot create monitor nginx because group apps does not exist
INFO [autokuma::sync] Creating new monitor: apps
INFO [autokuma::sync] Creating new monitor: nginx

This was using the following labels:

--label kuma.apps.group.name="apps" --label kuma.nginx.http.name="nginx" --label kuma.nginx.http.url="https://example.com" --label kuma.nginx.http.parent_name="apps"
phyzical commented 4 months ago

Sure manually removed them all , turned it back on and

2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: jellyfin
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor AutoKuma because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: AutoKuma
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor swag because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: swag
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor lidarr because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: lidarr
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor todo because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: todo
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor doplarr because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: doplarr
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor radarr because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: radarr
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor promtail because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: promtail
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor Grafana because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: Grafana
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor vaultwarden because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: vaultwarden
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor loki because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: loki
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor ollama2 because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: ollama2
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor pihole-metrics because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: pihole-metrics
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor decluttarr because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: decluttarr
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor prowlarr because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: prowlarr
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor steam-headless because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: steam-headless
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor openai because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: openai
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor pihole because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: pihole
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor sabnzbd because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: sabnzbd
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor readarr because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: readarr
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor ollama because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: ollama
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor ddclient because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: ddclient
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor qbittorrent because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: qbittorrent
2024-07-14 17:48:18.822 WARN [autokuma::sync] Cannot create monitor heimdall because group apps does not exist
2024-07-14 17:48:18.822 INFO [autokuma::sync] Creating new monitor: heimdall
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor jellyfin because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: jellyfin
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor loki because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: loki
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor sabnzbd because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: sabnzbd
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor doplarr because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: doplarr
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor bazarr because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: bazarr
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor prowlarr because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: prowlarr
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor promtail because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: promtail
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor readarr because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: readarr
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor vaultwarden because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: vaultwarden
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor AutoKuma because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: AutoKuma
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor lidarr because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: lidarr
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor nextcloud because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: nextcloud
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor heimdall because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: heimdall
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor swag because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: swag
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor qbittorrent because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: qbittorrent
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor Grafana because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: Grafana
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor todo because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: todo
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor sonarr because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: sonarr
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor pihole because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: pihole
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor steam-headless because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: steam-headless
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor radarr because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: radarr
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor openai because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: openai
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor ollama2 because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: ollama2
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor pihole-metrics because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: pihole-metrics
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor ollama because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: ollama
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor decluttarr because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: decluttarr
2024-07-14 17:48:13.191 WARN [autokuma::sync] Cannot create monitor ddclient because group apps does not exist
2024-07-14 17:48:13.191 INFO [autokuma::sync] Creating new monitor: ddclient
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor nextcloud because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: nextcloud
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor decluttarr because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: decluttarr
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor heimdall because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: heimdall
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor prowlarr because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: prowlarr
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor ddclient because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: ddclient
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor swag because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: swag
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor pihole because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: pihole
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor sonarr because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: sonarr
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor promtail because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: promtail
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor radarr because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: radarr
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor jellyfin because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: jellyfin
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor ollama because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: ollama
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor pihole-metrics because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: pihole-metrics
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor todo because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: todo
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor qbittorrent because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: qbittorrent
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor readarr because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: readarr
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor doplarr because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: doplarr
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor lidarr because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: lidarr
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor ollama2 because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: ollama2
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor vaultwarden because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: vaultwarden
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor AutoKuma because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: AutoKuma
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor steam-headless because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: steam-headless
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor openai because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: openai
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor bazarr because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: bazarr
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor Grafana because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: Grafana
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor loki because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: loki
2024-07-14 17:48:07.555 WARN [autokuma::sync] Cannot create monitor sabnzbd because group apps does not exist
2024-07-14 17:48:07.555 INFO [autokuma::sync] Creating new monitor: sabnzbd
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor heimdall because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: heimdall
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor qbittorrent because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: qbittorrent
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor nextcloud because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: nextcloud
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor AutoKuma because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: AutoKuma
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor radarr because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: radarr
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor sonarr because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: sonarr
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor promtail because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: promtail
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor vaultwarden because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: vaultwarden
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor doplarr because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: doplarr
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor loki because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: loki
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor pihole because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: pihole
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor ollama because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: ollama
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor bazarr because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: bazarr
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor swag because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: swag
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor ddclient because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: ddclient
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor ollama2 because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: ollama2
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor pihole-metrics because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: pihole-metrics
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor prowlarr because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: prowlarr
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor lidarr because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: lidarr
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor openai because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: openai
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor jellyfin because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: jellyfin
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor readarr because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: readarr
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor todo because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: todo
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor steam-headless because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: steam-headless
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor sabnzbd because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: sabnzbd
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor decluttarr because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: decluttarr
2024-07-14 17:48:01.921 WARN [autokuma::sync] Cannot create monitor Grafana because group apps does not exist
2024-07-14 17:48:01.921 INFO [autokuma::sync] Creating new monitor: Grafana
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor readarr because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: readarr
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor pihole-metrics because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: pihole-metrics
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor prowlarr because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: prowlarr
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor jellyfin because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: jellyfin
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor swag because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: swag
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor ddclient because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: ddclient
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor lidarr because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: lidarr
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor ollama because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: ollama
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor qbittorrent because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: qbittorrent
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor nextcloud because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: nextcloud
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor decluttarr because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: decluttarr
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor Grafana because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: Grafana
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor bazarr because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: bazarr
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor todo because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: todo
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor pihole because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: pihole
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor radarr because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: radarr
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor steam-headless because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: steam-headless
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor loki because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: loki
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor vaultwarden because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: vaultwarden
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor AutoKuma because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: AutoKuma
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor promtail because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: promtail
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor heimdall because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: heimdall
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor doplarr because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: doplarr
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor sabnzbd because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: sabnzbd
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor ollama2 because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: ollama2
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor openai because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: openai
2024-07-14 17:47:56.290 WARN [autokuma::sync] Cannot create monitor sonarr because group apps does not exist
2024-07-14 17:47:56.290 INFO [autokuma::sync] Creating new monitor: sonarr
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor bazarr because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: bazarr
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor radarr because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: radarr
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor steam-headless because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: steam-headless
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor loki because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: loki
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor Grafana because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: Grafana
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor ddclient because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: ddclient
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor ollama2 because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: ollama2
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor AutoKuma because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: AutoKuma
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor pihole-metrics because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: pihole-metrics
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor prowlarr because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: prowlarr
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor jellyfin because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: jellyfin
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor lidarr because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: lidarr
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor heimdall because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: heimdall
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor doplarr because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: doplarr
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor todo because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: todo
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor ollama because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: ollama
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor promtail because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: promtail
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor qbittorrent because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: qbittorrent
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor sabnzbd because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: sabnzbd
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor pihole because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: pihole
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor swag because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: swag
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor nextcloud because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: nextcloud
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor openai because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: openai
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor vaultwarden because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: vaultwarden
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor decluttarr because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: decluttarr
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor sonarr because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: sonarr
2024-07-14 17:47:50.657 WARN [autokuma::sync] Cannot create monitor readarr because group apps does not exist
2024-07-14 17:47:50.657 INFO [autokuma::sync] Creating new monitor: readarr
2024-07-14 17:47:50.023                                                        v0.6.0-70898a4b
2024-07-14 17:47:50.023           /_/    \_\ \__,_| \__| \___/ |_|\_\ \__,_||_| |_| |_| \__,_|  
2024-07-14 17:47:50.023            / ____ \ | |_| || |_ | (_) || . \ | |_| || | | | | || (_| |
2024-07-14 17:47:50.023             / /\ \  | | | || __| / _ \ |  <  | | | || '_ ` _ \  / _` |
2024-07-14 17:47:50.023              /  \    _   _ | |_   ___  | ' /  _   _  _ __ ___    __ _ 
2024-07-14 17:47:50.023               /\           | |         | |/ /                         
2024-07-14 17:47:50.023                             _           _  __                         
2024-07-14 17:47:50.023                                    .::----::.                                   
2024-07-14 17:47:50.023                                 :====---:--====:                                
2024-07-14 17:47:50.023                               :==-.          .-==:                              
2024-07-14 17:47:50.023                            :-===:      ...     .====:.                          
2024-07-14 17:47:50.023                         .-==-:==    .======:    ==-:===:                        
2024-07-14 17:47:50.023                       .===:   ==.  -=========  .==.  .-==:                      
2024-07-14 17:47:50.023                     :===.     :=-  ==========. :==     .-==:                    
2024-07-14 17:47:50.023                   .===.        ==.   .::::..   ==.       .-==:                  
2024-07-14 17:47:50.023                 .-==:          :==            -=-          .-==.                
2024-07-14 17:47:50.023                .==-             ==-          :==             :==:               
2024-07-14 17:47:50.023               .==:              .==:        .==:              .==:              
2024-07-14 17:47:50.023              .==.                :==:      .==-                .==-             
2024-07-14 17:47:50.023             .==:                  :==:    .==-                  .==:            
2024-07-14 17:47:50.023             ===              .:.   :==-  :==-    ::              :==.           
2024-07-14 17:47:50.023            .==.             :===     -=====.    ====              ==-           
2024-07-14 17:47:50.023            -==               ..        ...       ..               -==           
2024-07-14 17:47:50.023            -==                                                    :==           
2024-07-14 17:47:50.023            -==                                                    -==           
2024-07-14 17:47:50.023            :==                                                    ===           
2024-07-14 17:47:50.023             ==-                                                  .==:           
2024-07-14 17:47:50.023             .====.                                             ====-            
2024-07-14 17:47:50.023              :==-                                              -==-             
2024-07-14 17:47:50.023               ==.                                              .==.             
2024-07-14 17:47:50.023              :==                                                ==-             
2024-07-14 17:47:50.023              -=-            ::                    .-.           -==             
2024-07-14 17:47:50.023              -=-          :===-..              ..:===-          :==             
2024-07-14 17:47:50.023              -=-        :===--====================---==:        -==             
2024-07-14 17:47:50.023              .==.    .:==-.        ..........         :==-.    .==:             
2024-07-14 17:47:50.023               .===-====:                                :-===--==:              
2024-07-14 17:47:50.023                 .:::.                                      .:::.                
2024-07-14 17:47:50.023                                                         
phyzical commented 4 months ago

it just never sees the group o.0

phyzical commented 4 months ago

Explore-logs-2024-07-14 17_50_36.txt