e115934061
Publish `@librechat/data-schemas` to NPM / pack (push) Failing after 8s
Publish `@librechat/client` to NPM / pack (push) Failing after 0s
GitNexus Index / index (push) Failing after 1s
Sync Locize Translations & Create Translation PR / Create Translation PR on Version Published (push) Has been skipped
Sync Helm Chart Tags / Sync chart tags (push) Failing after 2s
Publish `librechat-data-provider` to NPM / pack (push) Failing after 1s
Docker Dev Images Build / build (Dockerfile, librechat-dev, node) (push) Failing after 1s
Docker Dev Images Build / build (Dockerfile.multi, librechat-dev-api, api-build) (push) Failing after 0s
Sync Helm Chart Tags / Ignore non-main push (push) Has been skipped
Sync Locize Translations & Create Translation PR / Sync Translation Keys with Locize (push) Failing after 1s
Publish `@librechat/client` to NPM / publish-npm (push) Has been cancelled
Publish `librechat-data-provider` to NPM / publish-npm (push) Has been cancelled
GitNexus Index / post-index (push) Has been cancelled
Publish `@librechat/data-schemas` to NPM / publish-npm (push) Has been cancelled
55 lines
1.4 KiB
JavaScript
55 lines
1.4 KiB
JavaScript
const path = require('path');
|
|
const mongoose = require('mongoose');
|
|
require('module-alias')({ base: path.resolve(__dirname, '..', 'api') });
|
|
const { silentExit } = require('./helpers');
|
|
const { User, Conversation, Message } = require('@librechat/data-schemas').createModels(mongoose);
|
|
const connect = require('./connect');
|
|
|
|
(async () => {
|
|
await connect();
|
|
|
|
/**
|
|
* Show the welcome / help menu
|
|
*/
|
|
console.purple('-----------------------------');
|
|
console.purple('Show the stats of all users');
|
|
console.purple('-----------------------------');
|
|
|
|
let users = await User.find({});
|
|
let userData = [];
|
|
for (const user of users) {
|
|
let conversationsCount = (await Conversation.countDocuments({ user: user._id })) ?? 0;
|
|
let messagesCount = (await Message.countDocuments({ user: user._id })) ?? 0;
|
|
|
|
userData.push({
|
|
User: user.name,
|
|
Email: user.email,
|
|
Conversations: conversationsCount,
|
|
Messages: messagesCount,
|
|
});
|
|
}
|
|
|
|
userData.sort((a, b) => {
|
|
if (a.Conversations !== b.Conversations) {
|
|
return b.Conversations - a.Conversations;
|
|
}
|
|
|
|
return b.Messages - a.Messages;
|
|
});
|
|
|
|
console.table(userData);
|
|
|
|
silentExit(0);
|
|
})();
|
|
|
|
process.on('uncaughtException', (err) => {
|
|
if (!err.message.includes('fetch failed')) {
|
|
console.error('There was an uncaught error:');
|
|
console.error(err);
|
|
}
|
|
|
|
if (!err.message.includes('fetch failed')) {
|
|
process.exit(1);
|
|
}
|
|
});
|