84cb74e8b3
* each log line is a json object * structured logging allows logs to be ingested by machines and the logs to be indexed and queried addresses #1105 * structured logging allows arbitrary properties to be appended to each log line, and ingestion of logs to remain robust * Structured logging provided by `pino` library * Add `express-pino-logger` dependency * Remove `debug`, `morgan`, and `morgan-debug` and replace with structured logging * `console.log` & `console.error` replaced with structured logging in backend * Remove `DEBUG` environment variable and replace with `LOG_LEVEL` - Note that there is a test which reads from a logged line on `stdout`. This is not robust, it would be better to use the childProcess.pid to look up the port number. * Log errors at points we explicitly send error to Sentry * Amend indentation of a couple of log messages to align indentation with others
20 lines
628 B
JavaScript
20 lines
628 B
JavaScript
require('../bootstrap')
|
|
const { logger } = require('@/logging/logging')
|
|
const { createUser } = require('@/modules/core/services/users')
|
|
const axios = require('axios').default
|
|
|
|
const main = async () => {
|
|
const userInputs = (
|
|
await axios.get('https://randomuser.me/api/?results=250')
|
|
).data.results.map((user) => {
|
|
return {
|
|
name: `${user.name.first} ${user.name.last}`,
|
|
email: user.email,
|
|
password: `${user.login.password}${user.login.password}`
|
|
}
|
|
})
|
|
await Promise.all(userInputs.map((userInput) => createUser(userInput)))
|
|
}
|
|
|
|
main().then(logger.info('created')).catch(logger.error('failed'))
|