nest-status-monitor icon indicating copy to clipboard operation
nest-status-monitor copied to clipboard

Not running on Nest.js 7

Open yacovg opened this issue 4 years ago • 10 comments

On nestjs 7 I'm getting 404 when visiting the /status page

yacovg avatar May 08 '20 17:05 yacovg

Hi @yacovg I never tried to run it on Nest.js 7. I will try to find some time next week and to see what is the problem.

Thank you for letting me know about this issue :)

ivanvs avatar May 08 '20 18:05 ivanvs

I'm not getting 404 in /status, but doesn't appear any status in the monitor. It could be the same problem of @yacovg. I'm using NestJs 7 too.

Screen Shot 2020-05-14 at 20 00 57

educostachaves avatar May 14 '20 23:05 educostachaves

the same problem

LesixCoder avatar Jul 01 '20 03:07 LesixCoder

I've got this working with nest 7. Previously it was bust, just as @educostachaves was showing.

This has the "works on my machine" seal of approval from me, but it previously didn't. I put the project down for 3 months and the only change I've made is to set the port to undefined if I'm running on port 80 (or via traefik proxy)

I remember during the migration I had to change some baseUrl, and I noticed that when I opened the monitor page the websocket connection was 404ing.

Oatelaus avatar Jul 08 '20 15:07 Oatelaus

http://localhost:3333/socket.io/?EIO=3&transport=polling&t=NMP1Bq5 return 404 when using Nestjs 7

xQuotes avatar Nov 05 '20 15:11 xQuotes

@ivanvs any news? I guess you couldn't find any time in that week? ;)

tschannik avatar Dec 14 '20 09:12 tschannik

I assume this repo is dead.

chriso86 avatar Apr 07 '21 09:04 chriso86

had you fixed it ?

a5006 avatar Jul 29 '21 16:07 a5006

我没有得到404,但没有任何状态显示器。这可能是同一个@yacovg的问题。我也在用雀巢7/status

Screen Shot 2020-05-14 at 20 00 57

Could you tell me if this is solved?

zhaoxm469 avatar Aug 11 '21 10:08 zhaoxm469

@ivanvs I worked correctly from these bugs by downgrading @nestjs/platform-socket.io 8.0.0 to 7.0.0

  • The Bug page is consistent with them 1

  • my package.json version info

  "dependencies": {
    "@nestjs/common": "^8.0.0",
    "@nestjs/core": "^8.0.0",
    "@nestjs/platform-express": "^8.0.0",
    "@nestjs/platform-socket.io": "7.0.0",
    "nest-status-monitor": "^0.1.4",
    "reflect-metadata": "^0.1.13",
    "rimraf": "^3.0.2",
    "rxjs": "^7.2.0"
  },

yep,even nest-status-monitor works on nest8. as long as the @nestjs/platform-socket.io version is set to 7 2

@zhaoxm469 @tschannik @xQuotes @educostachaves This might help you

JYbill avatar Feb 10 '22 10:02 JYbill