Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(core): Add Supabase Queues support #15921

Draft
wants to merge 1 commit into
base: onur/supabase-integration
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import * as Sentry from '@sentry/browser';

import { createClient } from '@supabase/supabase-js';
window.Sentry = Sentry;

const queues = createClient('https://test.supabase.co', 'test-key', {
db: {
schema: 'pgmq_public',
},
});

Sentry.init({
dsn: 'https://[email protected]/1337',
integrations: [Sentry.browserTracingIntegration(), Sentry.supabaseIntegration(queues)],
tracesSampleRate: 1.0,
});

// Simulate queue operations
async function performQueueOperations() {
try {
await queues.rpc('enqueue', {
queue_name: 'todos',
msg: { title: 'Test Todo' },
});

await queues.rpc('dequeue', {
queue_name: 'todos',
});
} catch (error) {
Sentry.captureException(error);
}
}

performQueueOperations();
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
import type { Page} from '@playwright/test';
import { expect } from '@playwright/test';
import type { Event } from '@sentry/core';

import { sentryTest } from '../../../../utils/fixtures';
import { getFirstSentryEnvelopeRequest, shouldSkipTracingTest } from '../../../../utils/helpers';

async function mockSupabaseRoute(page: Page) {
await page.route('**/rest/v1/rpc**', route => {
return route.fulfill({
status: 200,
body: JSON.stringify({
foo: ['bar', 'baz'],
}),
headers: {
'Content-Type': 'application/json',
},
});
});
}

sentryTest('should capture Supabase queue spans from client.rpc', async ({ getLocalTestUrl, page }) => {
await mockSupabaseRoute(page);

if (shouldSkipTracingTest()) {
return;
}

const url = await getLocalTestUrl({ testDir: __dirname });

const event = await getFirstSentryEnvelopeRequest<Event>(page, url);
const queueSpans = event.spans?.filter(({ op }) => op?.startsWith('queue'));

expect(queueSpans).toHaveLength(2);

expect(queueSpans![0]).toMatchObject({
description: 'supabase.db.rpc',
parent_span_id: event.contexts?.trace?.span_id,
span_id: expect.any(String),
start_timestamp: expect.any(Number),
timestamp: expect.any(Number),
trace_id: event.contexts?.trace?.trace_id,
data: expect.objectContaining({
'sentry.op': 'queue.publish',
'sentry.origin': 'auto.db.supabase',
'messaging.destination.name': 'todos',
'messaging.message.id': 'Test Todo',
}),
});

expect(queueSpans![1]).toMatchObject({
description: 'supabase.db.rpc',
parent_span_id: event.contexts?.trace?.span_id,
span_id: expect.any(String),
start_timestamp: expect.any(Number),
timestamp: expect.any(Number),
trace_id: event.contexts?.trace?.trace_id,
data: expect.objectContaining({
'sentry.op': 'queue.process',
'sentry.origin': 'auto.db.supabase',
'messaging.destination.name': 'todos',
}),
});
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import * as Sentry from '@sentry/browser';

import { createClient } from '@supabase/supabase-js';
window.Sentry = Sentry;

const queues = createClient('https://test.supabase.co', 'test-key', {
db: {
schema: 'pgmq_public',
},
});

Sentry.init({
dsn: 'https://[email protected]/1337',
integrations: [Sentry.browserTracingIntegration(), Sentry.supabaseIntegration(queues)],
tracesSampleRate: 1.0,
});

// Simulate queue operations
async function performQueueOperations() {
try {
await queues
.schema('pgmq_public')
.rpc('enqueue', {
queue_name: 'todos',
msg: { title: 'Test Todo' },
});

await queues
.schema('pgmq_public')
.rpc('dequeue', {
queue_name: 'todos',
});
} catch (error) {
Sentry.captureException(error);
}
}

performQueueOperations();
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
import { type Page, expect } from '@playwright/test';
import type { Event } from '@sentry/core';

import { sentryTest } from '../../../../utils/fixtures';
import { getFirstSentryEnvelopeRequest, shouldSkipTracingTest } from '../../../../utils/helpers';

async function mockSupabaseRoute(page: Page) {
await page.route('**/rest/v1/rpc**', route => {
return route.fulfill({
status: 200,
body: JSON.stringify({
foo: ['bar', 'baz'],
}),
headers: {
'Content-Type': 'application/json',
},
});
});
}

sentryTest('should capture Supabase queue spans from client.schema(...).rpc', async ({ getLocalTestUrl, page }) => {
await mockSupabaseRoute(page);

if (shouldSkipTracingTest()) {
return;
}

const url = await getLocalTestUrl({ testDir: __dirname });

const event = await getFirstSentryEnvelopeRequest<Event>(page, url);
const queueSpans = event.spans?.filter(({ op }) => op?.startsWith('queue'));

expect(queueSpans).toHaveLength(2);

expect(queueSpans![0]).toMatchObject({
description: 'supabase.db.rpc',
parent_span_id: event.contexts?.trace?.span_id,
span_id: expect.any(String),
start_timestamp: expect.any(Number),
timestamp: expect.any(Number),
trace_id: event.contexts?.trace?.trace_id,
data: expect.objectContaining({
'sentry.op': 'queue.publish',
'sentry.origin': 'auto.db.supabase',
'messaging.destination.name': 'todos',
'messaging.message.id': 'Test Todo',
}),
});

expect(queueSpans![1]).toMatchObject({
description: 'supabase.db.rpc',
parent_span_id: event.contexts?.trace?.span_id,
span_id: expect.any(String),
start_timestamp: expect.any(Number),
timestamp: expect.any(Number),
trace_id: event.contexts?.trace?.trace_id,
data: expect.objectContaining({
'sentry.op': 'queue.process',
'sentry.origin': 'auto.db.supabase',
'messaging.destination.name': 'todos',
}),
});
});
94 changes: 84 additions & 10 deletions packages/core/src/integrations/supabase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ import { SEMANTIC_ATTRIBUTE_SENTRY_OP, SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN } from '
import { captureException } from '../exports';
import { SPAN_STATUS_ERROR, SPAN_STATUS_OK } from '../tracing';

export interface SupabaseClientConstructor {
prototype: {
from: (table: string) => PostgrestQueryBuilder;
schema: (schema: string) => { rpc: (...args: unknown[]) => Promise<unknown> };
};
rpc: (fn: string, params: Record<string, unknown>) => Promise<unknown>;
}

const AUTH_OPERATIONS_TO_INSTRUMENT = [
'reauthenticate',
'signInAnonymously',
Expand Down Expand Up @@ -114,12 +122,6 @@ export interface SupabaseBreadcrumb {
};
}

export interface SupabaseClientConstructor {
prototype: {
from: (table: string) => PostgrestQueryBuilder;
};
}

export interface PostgrestProtoThenable {
then: <T>(
onfulfilled?: ((value: T) => T | PromiseLike<T>) | null,
Expand Down Expand Up @@ -197,6 +199,76 @@ export function translateFiltersIntoMethods(key: string, query: string): string
return `${method}(${key}, ${value.join('.')})`;
}

function instrumentRpcReturnedFromSchemaCall(SupabaseClient: unknown): void {
(SupabaseClient as unknown as SupabaseClientConstructor).prototype.schema = new Proxy(
(SupabaseClient as unknown as SupabaseClientConstructor).prototype.schema,
{
apply(target, thisArg, argumentsList) {
const rv = Reflect.apply(target, thisArg, argumentsList);

return instrumentRpc(rv);
},
},
);
}

function instrumentRpc(SupabaseClient: unknown): unknown {
(SupabaseClient as unknown as SupabaseClientConstructor).rpc = new Proxy(
(SupabaseClient as unknown as SupabaseClientConstructor).rpc,
{
apply(target, thisArg, argumentsList) {
const isProducerSpan = argumentsList[0] === 'enqueue';
const isConsumerSpan = argumentsList[0] === 'dequeue';

const maybeQueueParams = argumentsList[1];

// If the second argument is not an object, it's not a queue operation
if (!isPlainObject(maybeQueueParams)) {
return Reflect.apply(target, thisArg, argumentsList);
}

const msg = maybeQueueParams?.msg as { title: string };

const messageId = msg?.title;
const queueName = maybeQueueParams?.queue_name as string;

const op = isProducerSpan ? 'queue.publish' : isConsumerSpan ? 'queue.process' : '';

// If the operation is not a queue operation, return the original function
if (!op) {
return Reflect.apply(target, thisArg, argumentsList);
}

return startSpan(
{
name: 'supabase.db.rpc',
attributes: {
[SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN]: 'auto.db.supabase',
[SEMANTIC_ATTRIBUTE_SENTRY_OP]: op,
},
},
async span => {
return (Reflect.apply(target, thisArg, argumentsList) as Promise<unknown>).then((res: unknown) => {
if (messageId) {
span.setAttribute('messaging.message.id', messageId);
}

if (queueName) {
span.setAttribute('messaging.destination.name', queueName);
}

span.end();
return res;
});
},
);
},
},
);

return SupabaseClient;
}

function instrumentAuthOperation(operation: AuthOperationFn, isAdmin = false): AuthOperationFn {
return new Proxy(operation, {
apply(target, thisArg, argumentsList) {
Expand Down Expand Up @@ -266,13 +338,13 @@ function instrumentSupabaseAuthClient(supabaseClientInstance: SupabaseClientInst
});
}

function instrumentSupabaseClientConstructor(SupabaseClient: unknown): void {
if (instrumented.has(SupabaseClient)) {
function instrumentSupabaseClientConstructor(SupabaseClientConstructor: unknown): void {
if (instrumented.has(SupabaseClientConstructor)) {
return;
}

(SupabaseClient as unknown as SupabaseClientConstructor).prototype.from = new Proxy(
(SupabaseClient as unknown as SupabaseClientConstructor).prototype.from,
(SupabaseClientConstructor as unknown as SupabaseClientConstructor).prototype.from = new Proxy(
(SupabaseClientConstructor as unknown as SupabaseClientConstructor).prototype.from,
{
apply(target, thisArg, argumentsList) {
const rv = Reflect.apply(target, thisArg, argumentsList);
Expand Down Expand Up @@ -466,6 +538,8 @@ const instrumentSupabase = (supabaseClientInstance: unknown): void => {
supabaseClientInstance.constructor === Function ? supabaseClientInstance : supabaseClientInstance.constructor;

instrumentSupabaseClientConstructor(SupabaseClientConstructor);
instrumentRpcReturnedFromSchemaCall(SupabaseClientConstructor);
instrumentRpc(supabaseClientInstance as SupabaseClientInstance);
instrumentSupabaseAuthClient(supabaseClientInstance as SupabaseClientInstance);
};

Expand Down
Loading