Skip to content

Commit 3e791e5

Browse files
authored
Merge pull request #8 from nices96/master
Edit misspelled word.
2 parents d791cc3 + a43c82b commit 3e791e5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/scouter/plugin/server/alert/email/EmailPlugin.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public void run() {
8787

8888
ap.level = AlertLevel.WARN;
8989
ap.objHash = objHash;
90-
ap.title = "Thread count exceed a threahold.";
90+
ap.title = "Thread count exceed a threshold.";
9191
ap.message = objectPack.objName + "'s Thread count(" + threadCount + ") exceed a threshold.";
9292
ap.time = System.currentTimeMillis();
9393
ap.objType = objectPack.objType;
@@ -251,7 +251,7 @@ public void xlog(XLogPack pack) {
251251

252252
ap.level = AlertLevel.WARN;
253253
ap.objHash = pack.objHash;
254-
ap.title = "Elapsed time exceed a threahold.";
254+
ap.title = "Elapsed time exceed a threshold.";
255255
ap.message = "[" + AgentManager.getAgentName(pack.objHash) + "] "
256256
+ pack.service + "(" + serviceName + ") "
257257
+ "elapsed time(" + pack.elapsed + " ms) exceed a threshold.";
@@ -298,7 +298,7 @@ public void counter(PerfCounterPack pack) {
298298

299299
ap.level = AlertLevel.WARN;
300300
ap.objHash = objHash;
301-
ap.title = "GC time exceed a threahold.";
301+
ap.title = "GC time exceed a threshold.";
302302
ap.message = objName + "'s GC time(" + gcTime + " ms) exceed a threshold.";
303303
ap.time = System.currentTimeMillis();
304304
ap.objType = objType;

0 commit comments

Comments
 (0)