{% extends "base.html" %} {% block title %}Sprawdź IP{% endblock %} {% block content %}

Sprawdź IP

Szybka diagnostyka adresu — logi, endpointy i metryki powiązane z IP.

Wprowadź IP do sprawdzenia
Format: xxx.xxx.xxx.xxx
Podaj poprawny adres IPv4.
{% if recent_errors %}
Ostatnie błędy
🔎
{% for error_entry in recent_errors %}

{{ error_entry }}
{% endfor %}
{% endif %} {% if endpoints %}
Zalogowane endpointy ( {{ endpoints|length }} )
🔎
{% for endpoint in endpoints %} {% endfor %}
# Endpoint
{{ loop.index }} {{ endpoint }}
Brak wyników dla podanego filtra
{% endif %} {% if metrics %}
Metryki
{% for key, value in metrics.items() %} {% endfor %}
Klucz Wartość
{{ key }} {% if value is number %} {{ value }} {% else %} {{ value }} {% endif %}
{% endif %} {% if is_banned %}
Status: IP jest ZBANOWANE
Powód {{ ban_info.reason or ban_info.source or "brak danych" }}
Źródło {{ ban_info.source or "-" }}
Utworzono {{ ban_info.created_at or ban_info.timestamp or "-" }}
Wygasa {{ ban_info.expires or "-" }}
{% endif %} {% endblock %} {% block scripts %} {{ super() }} {% if message %} {% endif %} {% if error %} {% endif %} {% endblock %}