mirror of https://github.com/Askill/DSPS.git
15 lines
282 B
Plaintext
15 lines
282 B
Plaintext
|
|
|
||
|
|
Monitor monitor;
|
||
|
|
|
||
|
|
public ServletMeter(){
|
||
|
|
try{
|
||
|
|
this.monitor = new Monitor();
|
||
|
|
}
|
||
|
|
catch (Exception e){
|
||
|
|
log.error(e.toString());
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
this.monitor.signifyRoot(start, path, "start");
|
||
|
|
|
||
|
|
this.monitor.signifyRoot(System.currentTimeMillis(), path, "end");
|