You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i am requesting username, password and customTag to be exposed in "connectionClosed" event
use case: with this we can log traffic stats by username in an external db
some thing like this
// Emitted when HTTP connection is closed
server.on('connectionClosed', ({ connectionId, stats, username, password, customTag }) => {
console.log(`Connection ${connectionId} closed`);
console.dir(stats);
// save stats to a file or db with user name here
});
The text was updated successfully, but these errors were encountered:
geminigeek
changed the title
[Feature Request] Expose proxy username and password in connectionClosed event
[Feature Request] Expose proxy username, password and customTag in connectionClosed event
Jan 28, 2025
hi,
i am requesting username, password and customTag to be exposed in "connectionClosed" event
use case: with this we can log traffic stats by username in an external db
some thing like this
The text was updated successfully, but these errors were encountered: