{% extends "base.html" %} {% block title %}Traffic & Visits - AISBF Dashboard{% endblock %} {% block content %}

Traffic & Visits

📊 Analytics 🧠 Prompt Analytics 👣 Traffic & Visits 💾 Response Cache ⏱️ Rate Limits

Dashboard Visitor & Activity Tracking

{% if from_date %}{% endif %} {% if to_date %}{% endif %} {% if selected_provider %}{% endif %} {% if selected_model %}{% endif %} {% if selected_rotation %}{% endif %} {% if selected_autoselect %}{% endif %} {% if selected_user %}{% endif %} {% if global_only %}{% endif %}
{% if dashboard_visit_overview %}

Visitor & Dashboard Activity Overview

Total Events
{{ dashboard_visit_overview.total_events }}
Unique IPs
{{ dashboard_visit_overview.unique_ips }}
Unique Visitors
{{ dashboard_visit_overview.unique_visitors }}
Unique Sessions
{{ dashboard_visit_overview.unique_sessions }}

Visit & Activity Timeline

Activity Types

{% for row in dashboard_visit_overview.by_type %}{% endfor %}
TypeCount
{{ row.event_type }}{{ row.count }}

Visited Pages

{% for row in dashboard_visit_pages %}{% endfor %}
PageVisits
{{ row.path }}{{ row.count }}

Countries

{% for row in dashboard_visit_countries %}{% endfor %}
CountryVisits
{{ row.country_code }}{{ row.count }}

Tracked Users

{% for row in dashboard_visit_users %}{% endfor %}
UserEvents
{{ row.username }}{% if row.user_id %} (#{{ row.user_id }}){% endif %}{{ row.count }}

Recent Dashboard Events

{% for row in dashboard_visit_events %}{% endfor %}
TimeTypeUserIPCountryPageStatusDetails
{{ row.created_at }}{{ row.event_type }}{{ row.username or 'guest' }}{{ row.ip_address or '-' }}{{ row.country_code or '-' }}{{ row.path or '-' }}{{ row.status_code or '-' }}{% if row.provider_id %}provider={{ row.provider_id }} {% endif %}{% if row.rotation_id %}rotation={{ row.rotation_id }} {% endif %}{% if row.autoselect_id %}autoselect={{ row.autoselect_id }} {% endif %}{% if row.listing_id %}listing={{ row.listing_id }} {% endif %}{% if row.metadata %}{{ row.metadata|tojson }}{% endif %}
{% else %}

No visitor or activity data available yet.

{% endif %}
Back to Dashboard Analytics Rate Limits Response Cache
{% endblock %}