mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
add stats endpoint to standalone collab server
This commit is contained in:
parent
ad1571b902
commit
99a6c580b4
@ -16,6 +16,7 @@ import { HistoryListener } from './listeners/history.listener';
|
||||
PersistenceExtension,
|
||||
HistoryListener,
|
||||
],
|
||||
exports: [CollaborationGateway],
|
||||
imports: [TokenModule],
|
||||
})
|
||||
export class CollaborationModule implements OnModuleInit, OnModuleDestroy {
|
||||
|
@ -7,6 +7,7 @@ import { DatabaseModule } from '@docmost/db/database.module';
|
||||
import { QueueModule } from '../../integrations/queue/queue.module';
|
||||
import { EventEmitterModule } from '@nestjs/event-emitter';
|
||||
import { HealthModule } from '../../integrations/health/health.module';
|
||||
import { CollaborationController } from './collaboration.controller';
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
@ -17,7 +18,12 @@ import { HealthModule } from '../../integrations/health/health.module';
|
||||
HealthModule,
|
||||
EventEmitterModule.forRoot(),
|
||||
],
|
||||
controllers: [AppController],
|
||||
controllers: [
|
||||
AppController,
|
||||
...(process.env.COLLAB_SHOW_STATS.toLowerCase() === 'true'
|
||||
? [CollaborationController]
|
||||
: []),
|
||||
],
|
||||
providers: [AppService],
|
||||
})
|
||||
export class CollabAppAppModule {}
|
||||
export class CollabAppModule {}
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { NestFactory } from '@nestjs/core';
|
||||
import { CollabAppAppModule } from './collab-app.module';
|
||||
import { CollabAppModule } from './collab-app.module';
|
||||
import {
|
||||
FastifyAdapter,
|
||||
NestFastifyApplication,
|
||||
@ -10,7 +10,7 @@ import { Logger } from '@nestjs/common';
|
||||
|
||||
async function bootstrap() {
|
||||
const app = await NestFactory.create<NestFastifyApplication>(
|
||||
CollabAppAppModule,
|
||||
CollabAppModule,
|
||||
new FastifyAdapter({
|
||||
ignoreTrailingSlash: true,
|
||||
ignoreDuplicateSlashes: true,
|
||||
|
@ -0,0 +1,15 @@
|
||||
import { Controller, Get } from '@nestjs/common';
|
||||
import { CollaborationGateway } from '../collaboration.gateway';
|
||||
|
||||
@Controller('collab')
|
||||
export class CollaborationController {
|
||||
constructor(private readonly collaborationGateway: CollaborationGateway) {}
|
||||
|
||||
@Get('stats')
|
||||
async getStats() {
|
||||
return {
|
||||
connections: this.collaborationGateway.getConnectionCount(),
|
||||
documents: this.collaborationGateway.getDocumentCount(),
|
||||
};
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user