GET https://dev-sub.phonismart.com/admin/dashboard/charts

Query Metrics

4 Database Queries
4 Different statements
242.45 ms Query time
0 Invalid entities

Grouped Statements

Show all queries

Time Count Info
105.80 ms
(43.64%)
1
SELECT pc.name, COUNT(s.id) as count
            FROM subscription s
            JOIN payment_connector pc ON s.payment_connector_id = pc.id
            WHERE s.created_at >= ? AND s.is_test = false
            GROUP BY pc.id, pc.name
            ORDER BY count DESC
            LIMIT 8
Parameters:
[
  "2025-12-01 00:00:00"
]
102.33 ms
(42.21%)
1
SELECT DATE(created_at) as day, COALESCE(SUM(eur_amount), 0) as revenue
            FROM charge
            WHERE created_at >= ? AND status = ? AND is_test = false
            GROUP BY DATE(created_at)
Parameters:
[
  "2025-11-16 00:00:00"
  2
]
32.71 ms
(13.49%)
1
SELECT
                DATE(created_at) as day,
                SUM(CASE WHEN is_confirmed = true THEN 1 ELSE 0 END) as confirmed,
                SUM(CASE WHEN is_confirmed = false THEN 1 ELSE 0 END) as pending
            FROM subscription
            WHERE created_at >= ? AND is_test = false
            GROUP BY DATE(created_at)
Parameters:
[
  "2025-11-16 00:00:00"
]
1.61 ms
(0.66%)
1
SELECT t0.email AS email_1, t0.first_name AS first_name_2, t0.last_name AS last_name_3, t0.phone_number AS phone_number_4, t0.roles AS roles_5, t0.password AS password_6, t0.is_verified AS is_verified_7, t0.id AS id_8, t0.created_at AS created_at_9, t0.updated_at AS updated_at_10 FROM "user" t0 WHERE t0.id = ?
Parameters:
[
  1
]

Database Connections

Name Service
default doctrine.dbal.default_connection

Entity Managers

Name Service
default doctrine.orm.default_entity_manager

Second Level Cache

Second Level Cache is not enabled.

Entities Mapping

Class Mapping errors
App\Entity\User No errors.
App\Entity\Image No errors.