increase monitor limits

This commit is contained in:
Thibault Duplessis 2012-12-14 14:44:29 +01:00
parent 249ed9fbb6
commit 4c0226a35a

View file

@ -106,48 +106,48 @@
app.users = new SpeedOMeter({
name : "USERS",
maxVal : 600,
maxVal : 1000,
container : container
});
app.lobby = new SpeedOMeter({
name : "LOBBY",
maxVal : 150,
maxVal : 300,
threshold: 1,
container : container
});
app.game = new SpeedOMeter({
name : "GAME",
maxVal : 500,
maxVal : 700,
threshold: 1,
container : container
});
app.dbMemory = new SpeedOMeter({
name : "DB MEMORY",
maxVal : 2000,
maxVal : 4000,
threshold: 0.8,
container : container
});
app.dbConn = new SpeedOMeter({
name : "DB CONN",
maxVal : 200,
maxVal : 300,
threshold: 0.8,
container : container
});
app.dbQps = new SpeedOMeter({
name : "DB QPS",
maxVal : 300,
maxVal : 500,
threshold: 0.8,
container : container
});
app.dbLock = new SpeedOMeter({
name : "DB LOCK",
maxVal : 10,
maxVal : 50,
container : container
});