mozilla / glam

Mozilla's primary interactive dashboard for examining the distribution of telemetry values.
https://glam.telemetry.mozilla.org
Mozilla Public License 2.0
20 stars 23 forks source link

https://glam.telemetry.mozilla.org/firefox/probe/gfx_linux_window_protocol/explore?currentPage=1 shows no data #2778

Closed jrmuizel closed 3 months ago

jrmuizel commented 3 months ago

Querying manually on stmo works fine:

SELECT
  COUNT(DISTINCT client_id) AS nr_clients,
  payload.processes.parent.scalars.gfx_linux_window_protocol AS window_protocol,
  DATE(submission_timestamp) as date
FROM
  telemetry.main_1pct
WHERE
  environment.system.os.name = "Linux"
  AND submission_timestamp >= TIMESTAMP("2024-01-01")
GROUP BY
  date,
  window_protocol
ORDER BY date ASC
Iinh commented 3 months ago

Hi @jrmuizel, thanks for reporting! The reason why the data is not showing is that we currently do not aggregate string scalars (only uint scalars are available right now in GLAM). There is definitely room for improvement in the UI though, e.g. we could provide better explanations for why this specific metric type is not displaying data.