-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdune_queries.sql
More file actions
54 lines (42 loc) · 1.57 KB
/
Copy pathdune_queries.sql
File metadata and controls
54 lines (42 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
-- Dune Analytics SQL Queries for WayFi Data
-- These queries can be used to visualize the data uploaded to Dune Analytics
-- =============================================
-- Total GB Offloaded
-- =============================================
-- Simple query to get the total GB offloaded
SELECT *
FROM dune.wayfiwireless.dataset_wayfi_total_gb_offloaded
LIMIT 1
-- =============================================
-- Total Users Served
-- =============================================
-- Simple query to get the total users served
SELECT *
FROM dune.wayfiwireless.dataset_wayfi_total_users_served
LIMIT 1;
-- =============================================
-- Total Unique Sessions
-- =============================================
-- Simple query to get the total unique sessions
SELECT *
FROM dune.wayfiwireless.dataset_wayfi_total_unique_sessions
LIMIT 1;
-- =============================================
-- Identity Providers Offloading
-- =============================================
-- Query to get the breakdown of identity providers
SELECT *
FROM dune.wayfiwireless.dataset_wayfi_identity_providers_offloading
-- =============================================
-- Active Locations in the Last 30 Days
-- =============================================
-- Query to get the count of active locations
SELECT *
FROM dune.wayfiwireless.dataset_wayfi_active_locations_30days
LIMIT 1;
-- =============================================
-- Radius Serving
-- =============================================
-- Query to get the radius serving data
SELECT *
FROM dune.wayfiwireless.dataset_wayfi_radius_serving