louislam / uptime-kuma

A fancy self-hosted monitoring tool

Home Page:https://uptime.kuma.pet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RATE-LIMIT whit Prometheus

tokar86a opened this issue Β· comments

⚠️ Please verify that this question has NOT been raised before.

  • I checked and didn't find similar issue

πŸ›‘οΈ Security Policy

πŸ“ Describe your problem

Trying to found out why i am getting this error in the logs when i configure Prometheus to scrap for the data on /metrics

Seems to be going away when i stop Prometheus from scraping the data.

πŸ“ Error Message(s) or Log

kuma  | 2024-04-16T17:51:28+02:00 [RATE-LIMIT] INFO: remaining requests: 60
kuma  | 2024-04-16T17:53:14+02:00 [RATE-LIMIT] INFO: remaining requests: 60
kuma  | 2024-04-16T17:53:44+02:00 [RATE-LIMIT] INFO: remaining requests: 60
kuma  | 2024-04-16T17:54:14+02:00 [RATE-LIMIT] INFO: remaining requests: 60
kuma  | 2024-04-16T17:54:44+02:00 [RATE-LIMIT] INFO: remaining requests: 60

🐻 Uptime-Kuma Version

1.23.11

πŸ’» Operating System and Arch

Ubuntu 22.04 X86

🌐 Browser

Firefox 124.0.2

πŸ–₯️ Deployment Environment

  • Database: sqlite
  • number of monitors: 4

You are getting these INFO-log messages to inform you that you have 60 remaining requests.

You are missing a question: what are you asking about?

You are getting these INFO-log messages to inform you that you have 60 remaining requests.

You are missing a question: what are you asking about?

I am asking why i am getting this info log and it seems to be spamming it. It is somehow i can disable that sort of information or make it appear less frequent?

The log message indicates that an action has been performed against a rate-limited endpoint.
This is nothing to be conceared about, unless you are actually spamming a rate limited endpoint.

See

log.info("rate-limit", "remaining requests: " + remainingRequests);

Note

An enhancement might be to not warn on the first rate-limited request.
Our contribution guide is here: https://github.com/louislam/uptime-kuma/blob/master/CONTRIBUTING.md