{% extends 'dashboard/base.html' %} {% load humanize %} {% block title %}Traffic Analytics - Peza API{% endblock %} {% block breadcrumb %}Traffic Analytics{% endblock %} {% block content %}

Traffic Analytics

Session-based insights and real-time visitor tracking across all connected websites

Live Sessions
{{ live_visitors|intcomma }}
Last 24h
{{ visits_today|intcomma }}
Sessions Today
Last 7 days
{{ visits_week|intcomma }}
Sessions This Week
{{ avg_pages_per_session }}
Avg Pages / Session
{{ bounce_rate }}%
Bounce Rate
{{ avg_session_duration }}s
Average Session Duration

Sessions Over Time

Last 7 days

Top Pages

{% if top_pages %}
{% for item in top_pages %}
{{ item.page_url }}
{{ item.total|intcomma }}
{% endfor %}
{% else %}

No page data yet

{% endif %}

Active Sessions Last 60s

{% if active_sessions %}
{% for item in active_sessions %}
{{ item.device_type|default:"unknown" }} {{ item.last_seen|date:"H:i:s" }}
{{ item.page_url }}
{{ item.ip_address|default:"—" }}
{% endfor %}
{% else %}

No active sessions

{% endif %}

Device Breakdown

{% if devices %}
{% else %}

No device data yet

{% endif %}

Top Countries

{% if countries %}
{% for item in countries %}
{{ item.country|default:"Unknown" }} {{ item.total|intcomma }}
{% endfor %}
{% else %}

No location data yet

{% endif %}

Recent Sessions

Export CSV
{% for s in sessions %} {% empty %} {% endfor %}
Session Last Seen Pageviews Pages Actions
Session {{ forloop.counter }}
{{ s.last_seen|date:"M d, H:i" }}
{{ s.total }}
{% for url in s.pages|slice:":2" %}
{{ url }}
{% endfor %} {% if s.pages|length > 2 %}
+{{ s.pages|length|add:"-2" }} more
{% endif %}

No session data found

Start tracking to see visitor sessions

{% block extra_js %} {% endblock %} {% endblock %}