Add counters for stat recording
This commit is contained in:
parent
f1c61bddb2
commit
e85fd4bcd0
2 changed files with 24 additions and 0 deletions
|
|
@ -5,6 +5,7 @@ var ChannelModule = require("./module");
|
|||
var util = require("../utilities");
|
||||
var Flags = require("../flags");
|
||||
var url = require("url");
|
||||
var counters = require("../counters");
|
||||
|
||||
const SHADOW_TAG = "[shadow]";
|
||||
const LINK = /(\w+:\/\/(?:[^:\/\[\]\s]+|\[[0-9a-f:]+\])(?::\d+)?(?:\/[^\/\s]*)*)/ig;
|
||||
|
|
@ -122,6 +123,7 @@ ChatModule.prototype.shadowMutedUsers = function () {
|
|||
|
||||
ChatModule.prototype.handleChatMsg = function (user, data) {
|
||||
var self = this;
|
||||
counters.add("chat:incoming");
|
||||
|
||||
if (!this.channel || !this.channel.modules.permissions.canChat(user)) {
|
||||
return;
|
||||
|
|
@ -304,6 +306,7 @@ ChatModule.prototype.processChatMsg = function (user, data) {
|
|||
return;
|
||||
}
|
||||
this.sendMessage(msgobj);
|
||||
counters.add("chat:sent");
|
||||
};
|
||||
|
||||
ChatModule.prototype.formatMessage = function (username, data) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue