Skip to content

Commit

Permalink
Improve JS real-time monitoring
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Oct 22, 2012
1 parent 1041858 commit c502ab7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions public/javascripts/monitor.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,20 +106,20 @@

app.users = new SpeedOMeter({
name : "USERS",
maxVal : 500,
maxVal : 600,
container : container
});

app.lobby = new SpeedOMeter({
name : "LOBBY",
maxVal : 100,
maxVal : 150,
threshold: 1,
container : container
});

app.game = new SpeedOMeter({
name : "GAME",
maxVal : 300,
maxVal : 500,
threshold: 1,
container : container
});
Expand All @@ -133,7 +133,7 @@

app.dbConn = new SpeedOMeter({
name : "DB CONN",
maxVal : 300,
maxVal : 200,
threshold: 0.8,
container : container
});
Expand All @@ -147,13 +147,13 @@

app.dbLock = new SpeedOMeter({
name : "DB LOCK",
maxVal : 1,
maxVal : 5,
container : container
});

app.ai = new SpeedOMeter({
name : "AI PING",
maxVal : 200,
maxVal : 1000,
container : container
});

Expand All @@ -165,7 +165,7 @@

app.mps = new SpeedOMeter({
name : "MOVES",
maxVal : 20,
maxVal : 30,
container : container
});

Expand Down

0 comments on commit c502ab7

Please sign in to comment.