You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2025. It is now read-only.
I'm trying to get my DB stats on the wroldmap plugin, but i'm using MySQL query.
AS you can see my query :
SELECT
UNIX_TIMESTAMP(when) as time_sec,
(
SELECT FORMAT( COUNT( * ) , 0 ) AS count FROM logged
) as value, gateway as metric
FROM logged
WHERE $__timeFilter(when)
ORDER BY when ASC
I do a count on my table logged to get all user connected but i don't have column to identify the location however i've "gateway" column which identify the gateway where user is logged but doesn't work.
How i can use my column gateway as location (France, Espagne,...)