fast_queryQuery executed well under configured threshold
This query completed quickly and efficiently, indicating good performance. The database is responding as expected with no signs of degradation.
Using in your exporter
typescript
const monitor = createMonitor({
emitPositiveSignals: true,
exporter: (event) => {
if (event.signals.includes('fast_query')) {
// Use as a baseline — alert if this query stops being fast
metrics.histogram('db.query.duration', event.durationMs, {
model: event.model,
operation: event.operation,
signal: 'fast_query',
});
}
},
});