54 lines
1 KiB
JavaScript
54 lines
1 KiB
JavaScript
|
module.exports = (sequelize, { BOOLEAN, DATE, STRING }) => {
|
||
|
const RequestMetrics = sequelize.define(
|
||
|
'RequestMetrics',
|
||
|
{
|
||
|
time: {
|
||
|
type: DATE(6),
|
||
|
defaultValue: sequelize.NOW,
|
||
|
},
|
||
|
isInternal: {
|
||
|
type: BOOLEAN,
|
||
|
},
|
||
|
claimId: {
|
||
|
type: STRING,
|
||
|
defaultValue: null,
|
||
|
},
|
||
|
ip: {
|
||
|
type: STRING,
|
||
|
defaultValue: null,
|
||
|
},
|
||
|
request: {
|
||
|
type: STRING,
|
||
|
defaultValue: null,
|
||
|
},
|
||
|
userAgent: {
|
||
|
type: STRING,
|
||
|
defaultValue: null,
|
||
|
},
|
||
|
referrer: {
|
||
|
type: STRING,
|
||
|
defaultValue: null,
|
||
|
},
|
||
|
routePath: {
|
||
|
type: STRING,
|
||
|
defaultValue: null,
|
||
|
},
|
||
|
params: {
|
||
|
type: STRING,
|
||
|
defaultValue: null,
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
freezeTableName: true,
|
||
|
timestamps: false, // don't use default timestamps columns
|
||
|
indexes: [
|
||
|
{
|
||
|
fields: ['isInternal', 'isChannel', 'time', 'claimId', 'routePath'],
|
||
|
},
|
||
|
],
|
||
|
}
|
||
|
);
|
||
|
|
||
|
return RequestMetrics;
|
||
|
};
|