This commit is contained in:
Iliyan Angelov
2025-09-19 11:58:53 +03:00
parent 306b20e24a
commit 6b247e5b9f
11423 changed files with 1500615 additions and 778 deletions

View File

@@ -0,0 +1,28 @@
from prometheus_client import Counter
from django_prometheus.conf import NAMESPACE
django_cache_get_total = Counter(
"django_cache_get_total",
"Total get requests on cache",
["backend"],
namespace=NAMESPACE,
)
django_cache_hits_total = Counter(
"django_cache_get_hits_total",
"Total hits on cache",
["backend"],
namespace=NAMESPACE,
)
django_cache_misses_total = Counter(
"django_cache_get_misses_total",
"Total misses on cache",
["backend"],
namespace=NAMESPACE,
)
django_cache_get_fail_total = Counter(
"django_cache_get_fail_total",
"Total get request failures by cache",
["backend"],
namespace=NAMESPACE,
)