feat: add stats to standalone collab server (#798)

* Log APP_URL on startup

* add stats endpoint to standalone collab server
This commit is contained in:
Philip Okugbe 2025-02-26 13:00:01 +00:00 committed by GitHub
parent 4b9ab4f63c
commit 89f6b0a8c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 35 additions and 6 deletions

View File

@ -16,6 +16,7 @@ import { HistoryListener } from './listeners/history.listener';
PersistenceExtension,
HistoryListener,
],
exports: [CollaborationGateway],
imports: [TokenModule],
})
export class CollaborationModule implements OnModuleInit, OnModuleDestroy {

View File

@ -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 {}

View File

@ -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,

View File

@ -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(),
};
}
}

View File

@ -4,7 +4,7 @@ import {
FastifyAdapter,
NestFastifyApplication,
} from '@nestjs/platform-fastify';
import { NotFoundException, ValidationPipe } from '@nestjs/common';
import { Logger, NotFoundException, ValidationPipe } from '@nestjs/common';
import { TransformHttpResponseInterceptor } from './common/interceptors/http-response.interceptor';
import fastifyMultipart from '@fastify/multipart';
import { WsRedisIoAdapter } from './ws/adapter/ws-redis.adapter';
@ -65,7 +65,14 @@ async function bootstrap() {
app.useGlobalInterceptors(new TransformHttpResponseInterceptor());
app.enableShutdownHooks();
await app.listen(process.env.PORT || 3000, '0.0.0.0');
const logger = new Logger('NestApplication');
const port = process.env.PORT || 3000;
await app.listen(port, '0.0.0.0', () => {
logger.log(
`Listening on http://127.0.0.1:${port} / ${process.env.APP_URL}`,
);
});
}
bootstrap();