Lam Wei Li

Results 136 comments of Lam Wei Li

> Hi everyone. Has there been any progress here? As it stands it is only possible to publish with a partition key, but on the consumption side you have to...

The `broker.heartbeat.interval.ms` and `broker.session.timeout.ms` is for KRaft mode, for brokers to self-sync if I'm recall correctly. Perhaps should check the `session.timeout.ms`, as it is the property for broker to receive...

> _Originally posted by @therealgilles in [#3388 (comment)](https://github.com/expressjs/express/issues/3388#issuecomment-775389790)_ > FYI spdy does not work with node >= v15. There's the issue here in spdy: https://github.com/spdy-http2/node-spdy/issues/380

You can specify the `path` and/or `port` for the `socket.io` server so that it does not interfere with your existing `websocket`. ```js const statusMonitor = require('express-status-monitor')({ path: '/secret' }); app.use(statusMonitor);...

It is because `express-status-monitor` sets up routing to the default path, `/status`. ```js const statusMonitor = require('express-status-monitor')(); app.use(statusMonitor); // sets up routing to default path: /status app.get('/status', ..., statusMonitor.pageRoute); //...

> I am also facing issue where it complains about `event-loop-stats not found, ignoring event loop metrics...` I'm using `node v12` @bwgjoseph, You are missing the **optional** `event-loop-stats` module. It...

Upgrade your NodeJS from 6.17.1 to NodeJS >=8.3.0.

> visibility of loop works for me, made a fix for heap -> #165 Visibility of eventLoop seems to not work as well. See https://github.com/RafalWilinski/express-status-monitor/pull/165#pullrequestreview-965428798

Seems like an npm version issue with the optionalDependencies. This error happened on NodeJS =7.0.2) to `npm install`, the error went away. _(src: https://nodejs.org/en/download/releases/)_