Altinity / clickhouse-grafana

Altinity Grafana datasource plugin for ClickHouse®
MIT License
718 stars 120 forks source link

gh-api stop works after 3.2.0 #583

Closed Slach closed 3 months ago

Slach commented 3 months ago

3.1.1 image

3.2.0 image

Datasource gh-api

SELECT
    Time as DateTime,
    count()
FROM github_events
WHERE
    (repo_name = 'grafana/grafana')
    AND(event_type = 'PullRequestEvent')
    AND(Time >= $from)
    AND(Time <= $to)
GROUP BY toStartOfDay(created_at) AS Time
ORDER BY Time ASC