-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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: add slow query logging #7867
Closed
Closed
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
const delay = duration => new Promise(resolve => setTimeout(resolve, duration)); | ||
describe('Slow Queries', () => { | ||
it('can enable slow queries', async () => { | ||
await reconfigureServer({ | ||
slowQuery: { | ||
enable: true, | ||
threshold: 300, | ||
log: true, | ||
}, | ||
}); | ||
Parse.Cloud.beforeSave('TestObject', async () => { | ||
await delay(500); | ||
}); | ||
const logger = require('../lib/logger').logger; | ||
let call = ''; | ||
spyOn(logger, 'warn').and.callFake(warn => { | ||
call = warn; | ||
}); | ||
await new Parse.Object('TestObject').save(); | ||
expect(call.includes('Detected a slow query on path /classes/TestObject.')).toBeTrue(); | ||
await delay(1000); | ||
const slowQuery = await new Parse.Query('_SlowQuery').first({ useMasterKey: true }); | ||
expect(slowQuery).toBeDefined(); | ||
expect(slowQuery.get('method')).toBe('POST'); | ||
expect(slowQuery.get('path')).toBe('/classes/TestObject'); | ||
expect(slowQuery.get('body')).toEqual({}); | ||
expect(slowQuery.get('query')).toEqual({}); | ||
expect(slowQuery.get('duration')).toBeGreaterThan(500); | ||
}); | ||
|
||
it('needs masterKey for slow queries', async () => { | ||
await reconfigureServer({ | ||
slowQuery: { | ||
enable: true, | ||
threshold: 300, | ||
log: true, | ||
}, | ||
}); | ||
Parse.Cloud.beforeSave('TestObject', async () => { | ||
await delay(500); | ||
}); | ||
await new Parse.Object('TestObject').save(); | ||
await delay(1000); | ||
await expectAsync(new Parse.Query('_SlowQuery').first()).toBeRejectedWith( | ||
new Parse.Error( | ||
Parse.Error.OPERATION_FORBIDDEN, | ||
"Clients aren't allowed to perform the find operation on the _SlowQuery collection." | ||
) | ||
); | ||
}); | ||
|
||
it('does record cloud functions', async () => { | ||
await reconfigureServer({ | ||
slowQuery: { | ||
enable: true, | ||
threshold: 300, | ||
log: true, | ||
}, | ||
}); | ||
Parse.Cloud.define('TestFunction', async () => { | ||
await delay(500); | ||
}); | ||
await Parse.Cloud.run('TestFunction', { foo: 'bar' }); | ||
await delay(1000); | ||
const slowQuery = await new Parse.Query('_SlowQuery').first({ useMasterKey: true }); | ||
expect(slowQuery).toBeDefined(); | ||
expect(slowQuery.get('method')).toBe('POST'); | ||
expect(slowQuery.get('path')).toBe('/functions/TestFunction'); | ||
expect(slowQuery.get('body')).toEqual({ foo: 'bar' }); | ||
expect(slowQuery.get('query')).toEqual({}); | ||
expect(slowQuery.get('duration')).toBeGreaterThan(500); | ||
}); | ||
|
||
it('does record slow find', async () => { | ||
await reconfigureServer({ | ||
slowQuery: { | ||
enable: true, | ||
threshold: 300, | ||
log: true, | ||
}, | ||
}); | ||
Parse.Cloud.beforeFind('TestFunction', async () => { | ||
await delay(500); | ||
}); | ||
await new Parse.Query('TestFunction').first(); | ||
await delay(1000); | ||
const slowQuery = await new Parse.Query('_SlowQuery').first({ useMasterKey: true }); | ||
expect(slowQuery).toBeDefined(); | ||
expect(slowQuery.get('method')).toBe('GET'); | ||
expect(slowQuery.get('path')).toBe('/classes/TestFunction'); | ||
expect(slowQuery.get('body')).toEqual({ where: {}, limit: 1 }); | ||
expect(slowQuery.get('query')).toEqual({}); | ||
expect(slowQuery.get('duration')).toBeGreaterThan(500); | ||
}); | ||
|
||
it('does record slow delete', async () => { | ||
await reconfigureServer({ | ||
slowQuery: { | ||
enable: true, | ||
threshold: 300, | ||
log: true, | ||
}, | ||
}); | ||
Parse.Cloud.beforeDelete('TestObject', async () => { | ||
await delay(500); | ||
}); | ||
const testObj = await new Parse.Object('TestObject').save(); | ||
await testObj.destroy(); | ||
await delay(1000); | ||
const slowQuery = await new Parse.Query('_SlowQuery').first({ useMasterKey: true }); | ||
expect(slowQuery).toBeDefined(); | ||
expect(slowQuery.get('method')).toBe('DELETE'); | ||
expect(slowQuery.get('path')).toBe(`/classes/TestObject/${testObj.id}`); | ||
expect(slowQuery.get('body')).toEqual({}); | ||
expect(slowQuery.get('query')).toEqual({}); | ||
expect(slowQuery.get('duration')).toBeGreaterThan(500); | ||
}); | ||
|
||
it('does record slow file save', async () => { | ||
await reconfigureServer({ | ||
slowQuery: { | ||
enable: true, | ||
threshold: 300, | ||
log: true, | ||
}, | ||
}); | ||
Parse.Cloud.beforeSaveFile(async () => { | ||
await delay(500); | ||
}); | ||
await new Parse.File('yolo.txt', [1, 2, 3], 'text/plain').save(); | ||
await delay(1000); | ||
const slowQuery = await new Parse.Query('_SlowQuery').first({ useMasterKey: true }); | ||
expect(slowQuery).toBeDefined(); | ||
expect(slowQuery.get('method')).toBe('POST'); | ||
expect(slowQuery.get('path')).toBe('/files/yolo.txt'); | ||
expect(slowQuery.get('body')).toEqual({ '0': 1, '1': 2, '2': 3 }); | ||
expect(slowQuery.get('query')).toEqual({}); | ||
expect(slowQuery.get('duration')).toBeGreaterThan(500); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import { performance } from 'perf_hooks'; | ||
import logger from './logger'; | ||
import rest from './rest'; | ||
import auth from './Auth'; | ||
|
||
export const registerSlowQueryListener = (app, options) => { | ||
const slowQueryOptions = options.slowQuery; | ||
app.use((req, res, next) => { | ||
const startTime = performance.now(); | ||
res.on('finish', async () => { | ||
const endTime = performance.now(); | ||
const duration = endTime - startTime; | ||
const config = req.config; | ||
if (duration > (options.slowQuery.threshold ?? 3000)) { | ||
if (slowQueryOptions?.log) { | ||
logger.warn( | ||
`Detected a slow query on path ${req.path}. Duration: ${duration.toFixed(0)}ms` | ||
); | ||
} | ||
try { | ||
await rest.create(config, auth.master(config), '_SlowQuery', { | ||
method: req.method, | ||
path: req.path, | ||
body: req.body, | ||
query: req.query, | ||
Comment on lines
+24
to
+25
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here i'm wondering about security, i can suggest some little improvements (inspired from Sentry):
|
||
duration, | ||
}); | ||
} catch (e) { | ||
logger.error('Could not save Slow Query object.'); | ||
} | ||
} | ||
}); | ||
next(); | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to add a test to check that Parse.Cloud.beforeSave("_SlowQuery") works correctly. It could help developers to manipulate the body and remove sensitive data (we should add documentation suggestion about that)
I think we need to ensure/cover that this is supported.