Saved, shareable multi-panel dashboards (table/line/bar/single-stat panels via gridstack + uPlot, global + per-panel time range, JSON export/import) and threshold/absence alert rules with an ok/pending/firing evaluator and webhook/Slack/PagerDuty delivery. - New /metadata component: Postgres control-plane store for dashboards, panels, notification targets, alert rules/state, and delivery log -- see docs/phase-3-dashboard-design.md for why ClickHouse's MergeTree family isn't a fit for this access pattern (needs real row-level locking and read-your-writes consistency). - api/internal/dashboards: dashboard/panel CRUD, pure -- panel query execution stays client-side, reusing the existing /query endpoint. - New /alerting service: rule/target CRUD, a ticker-driven evaluator (claim-then-evaluate concurrency control, transactional-outbox delivery, query errors and threshold zero-rows never coerced into a false transition) and webhook/Slack/PagerDuty delivery with retry/backoff. See docs/phase-3-alerting-design.md for the full state-machine design and the four correctness properties it implements. - web: /dashboards and /alerts UIs; cli: sentryctl dashboards/alerts list/get/apply, seeding a future Terraform provider's JSON contract. - hack/alert-load-test: 500 rules against real ClickHouse data, real measured results in docs/phase-3-runbook.md. Five real bugs found by actually running this against a live stack (documented in the runbook, not just fixed silently): a latent Phase 2 bug where ClickHouse rejected the timestamp format used for earliest=/latest= queries; a "now" literal token injected into query text; a GridStack/uPlot layout-timing race; JS's Date.parse being too lenient to use as a timestamp-detection heuristic; a rule's "enabled" field silently defaulting to false when omitted; and the evaluator's claim-batch-size and worker-pool-concurrency defaulting to the same value, causing 500 concurrently-due rules to take 125s to cycle through instead of the configured 60s.
210 lines
5.7 KiB
Go
210 lines
5.7 KiB
Go
package queryapi
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
"io"
|
|
"log/slog"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/sentry/sentry/api/internal/querylang/executor"
|
|
)
|
|
|
|
type fakeSQLRunner struct {
|
|
result *executor.Result
|
|
err error
|
|
gotSQL string
|
|
}
|
|
|
|
func (f *fakeSQLRunner) RunSQL(_ context.Context, sql string) (*executor.Result, error) {
|
|
f.gotSQL = sql
|
|
if f.err != nil {
|
|
return nil, f.err
|
|
}
|
|
if f.result != nil {
|
|
return f.result, nil
|
|
}
|
|
return &executor.Result{Columns: []string{}, Rows: [][]any{}}, nil
|
|
}
|
|
|
|
type fakeSearchClient struct {
|
|
recordIDs []string
|
|
err error
|
|
gotQuery string
|
|
}
|
|
|
|
func (f *fakeSearchClient) Search(_ context.Context, query string, _ uint32) ([]string, error) {
|
|
f.gotQuery = query
|
|
if f.err != nil {
|
|
return nil, f.err
|
|
}
|
|
return f.recordIDs, nil
|
|
}
|
|
|
|
func newTestHandler(sqlRunner *fakeSQLRunner, search *fakeSearchClient) *Handler {
|
|
if search == nil {
|
|
search = &fakeSearchClient{}
|
|
}
|
|
return NewHandler(slog.New(slog.NewTextHandler(io.Discard, nil)), sqlRunner, search, time.Second)
|
|
}
|
|
|
|
func newTestMux(h *Handler) *http.ServeMux {
|
|
mux := http.NewServeMux()
|
|
h.RegisterRoutes(mux)
|
|
return mux
|
|
}
|
|
|
|
func postQuery(t *testing.T, h *Handler, body string) *httptest.ResponseRecorder {
|
|
t.Helper()
|
|
req := httptest.NewRequest(http.MethodPost, "/query", strings.NewReader(body))
|
|
rec := httptest.NewRecorder()
|
|
newTestMux(h).ServeHTTP(rec, req)
|
|
return rec
|
|
}
|
|
|
|
func TestHandleQuerySQLSuccess(t *testing.T) {
|
|
sr := &fakeSQLRunner{result: &executor.Result{
|
|
Columns: []string{"host", "count"},
|
|
Rows: [][]any{{"h1", 3}},
|
|
}}
|
|
h := newTestHandler(sr, nil)
|
|
|
|
rec := postQuery(t, h, `{"query": "SELECT host, count(*) FROM logs GROUP BY host"}`)
|
|
|
|
if rec.Code != http.StatusOK {
|
|
t.Fatalf("status = %d, want 200; body=%s", rec.Code, rec.Body.String())
|
|
}
|
|
var got queryResponse
|
|
if err := json.Unmarshal(rec.Body.Bytes(), &got); err != nil {
|
|
t.Fatalf("decoding response: %v", err)
|
|
}
|
|
if len(got.Columns) != 2 || len(got.Rows) != 1 {
|
|
t.Fatalf("unexpected result: %+v", got)
|
|
}
|
|
if sr.gotSQL != "SELECT host, count(*) FROM logs GROUP BY host" {
|
|
t.Fatalf("unexpected SQL passed through: %q", sr.gotSQL)
|
|
}
|
|
}
|
|
|
|
func TestHandleQueryPipeSyntaxSuccess(t *testing.T) {
|
|
sr := &fakeSQLRunner{result: &executor.Result{
|
|
Columns: []string{"host"},
|
|
Rows: [][]any{{"api"}},
|
|
}}
|
|
h := newTestHandler(sr, nil)
|
|
|
|
rec := postQuery(t, h, `{"query": "service=api"}`)
|
|
|
|
if rec.Code != http.StatusOK {
|
|
t.Fatalf("status = %d, want 200; body=%s", rec.Code, rec.Body.String())
|
|
}
|
|
if !strings.Contains(sr.gotSQL, "`service` = 'api'") {
|
|
t.Fatalf("expected compiled SQL to filter on service, got: %s", sr.gotSQL)
|
|
}
|
|
}
|
|
|
|
func TestHandleQueryTextSearchRoutesThroughSearchClient(t *testing.T) {
|
|
sr := &fakeSQLRunner{}
|
|
fs := &fakeSearchClient{recordIDs: []string{"id-1"}}
|
|
h := newTestHandler(sr, fs)
|
|
|
|
rec := postQuery(t, h, `{"query": "message:\"connection refused\""}`)
|
|
|
|
if rec.Code != http.StatusOK {
|
|
t.Fatalf("status = %d, want 200; body=%s", rec.Code, rec.Body.String())
|
|
}
|
|
if fs.gotQuery != `"connection refused"` {
|
|
t.Fatalf("search query = %q", fs.gotQuery)
|
|
}
|
|
if !strings.Contains(sr.gotSQL, "record_id IN ('id-1')") {
|
|
t.Fatalf("expected the search prefilter in the generated SQL, got: %s", sr.gotSQL)
|
|
}
|
|
}
|
|
|
|
func TestHandleQueryRejectsEmptyQuery(t *testing.T) {
|
|
h := newTestHandler(&fakeSQLRunner{}, nil)
|
|
rec := postQuery(t, h, `{"query": " "}`)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Fatalf("status = %d, want 400", rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestHandleQueryRejectsInvalidJSON(t *testing.T) {
|
|
h := newTestHandler(&fakeSQLRunner{}, nil)
|
|
rec := postQuery(t, h, `not json`)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Fatalf("status = %d, want 400", rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestHandleQueryRejectsCompileError(t *testing.T) {
|
|
h := newTestHandler(&fakeSQLRunner{}, nil)
|
|
rec := postQuery(t, h, `{"query": "service=api | bogus"}`)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Fatalf("status = %d, want 400; body=%s", rec.Code, rec.Body.String())
|
|
}
|
|
}
|
|
|
|
func TestHandleQueryRejectsNonSelectSQL(t *testing.T) {
|
|
h := newTestHandler(&fakeSQLRunner{}, nil)
|
|
rec := postQuery(t, h, `{"query": "DELETE FROM logs", "language": "sql"}`)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Fatalf("status = %d, want 400", rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestHandleQueryRejectsInvalidLanguage(t *testing.T) {
|
|
h := newTestHandler(&fakeSQLRunner{}, nil)
|
|
rec := postQuery(t, h, `{"query": "service=api", "language": "cobol"}`)
|
|
if rec.Code != http.StatusBadRequest {
|
|
t.Fatalf("status = %d, want 400", rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestHandleQueryExplicitLanguageOverridesAutoDetect(t *testing.T) {
|
|
sr := &fakeSQLRunner{}
|
|
fs := &fakeSearchClient{recordIDs: []string{"id-1"}}
|
|
h := newTestHandler(sr, fs)
|
|
|
|
// "select" alone would auto-detect as (nonsensical but
|
|
// syntactically-valid-looking) SQL without the override -- the
|
|
// override forces pipe-syntax parsing instead, where a bare word
|
|
// with no comparator is a free-text search term.
|
|
rec := postQuery(t, h, `{"query": "select", "language": "spl"}`)
|
|
|
|
if rec.Code != http.StatusOK {
|
|
t.Fatalf("status = %d, want 200; body=%s", rec.Code, rec.Body.String())
|
|
}
|
|
if fs.gotQuery != "select" {
|
|
t.Fatalf("expected 'select' to be treated as a free-text search term, got query=%q", fs.gotQuery)
|
|
}
|
|
}
|
|
|
|
func TestHandleQueryExecutorErrorReturnsBadGateway(t *testing.T) {
|
|
sr := &fakeSQLRunner{err: errors.New("boom")}
|
|
h := newTestHandler(sr, nil)
|
|
|
|
rec := postQuery(t, h, `{"query": "SELECT 1"}`)
|
|
|
|
if rec.Code != http.StatusBadGateway {
|
|
t.Fatalf("status = %d, want 502", rec.Code)
|
|
}
|
|
}
|
|
|
|
func TestHandleHealthz(t *testing.T) {
|
|
h := newTestHandler(&fakeSQLRunner{}, nil)
|
|
req := httptest.NewRequest(http.MethodGet, "/healthz", nil)
|
|
rec := httptest.NewRecorder()
|
|
|
|
newTestMux(h).ServeHTTP(rec, req)
|
|
|
|
if rec.Code != http.StatusOK {
|
|
t.Fatalf("status = %d, want 200", rec.Code)
|
|
}
|
|
}
|