Explain

EXPLAIN (analyze, verbose, costs, timing, buffers, summary)
SELECT *
FROM events
WHERE organization_id = '1' AND type = 'pull_request'
;

can add off to turn off particular ones:

EXPLAIN (analyze, verbose, costs, timing, buffers, summary off)
SELECT *
FROM events
WHERE organization_id = '1' AND type = 'pull_request'
;

Good articles about EXPLAIN: