
com.orientechnologies.common.profiler.OProfilerEntry Maven / Gradle / Ivy
The newest version!
/*
* Copyright 1999-2005 Luca Garulli (l.garulli--at-orientechnologies.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.orientechnologies.common.profiler;
import java.util.Locale;
public class OProfilerEntry {
public String name = null;
public long entries = 0;
public long last = 0;
public long min = 999999999;
public long max = 0;
public float average = 0;
public long total = 0;
public final long firstExecution;
public long lastExecution;
public String payLoad;
public String description;
public OProfilerEntry() {
firstExecution = System.currentTimeMillis();
lastExecution = firstExecution;
}
public void updateLastExecution() {
lastExecution = System.currentTimeMillis();
}
public String toJSON() {
final StringBuilder buffer = new StringBuilder(1024);
toJSON(buffer);
return buffer.toString();
}
public void toJSON(final StringBuilder buffer) {
buffer.append('{');
buffer.append(String.format(Locale.ENGLISH, "\"%s\":%d,", "entries", entries));
buffer.append(String.format(Locale.ENGLISH, "\"%s\":%d,", "last", last));
buffer.append(String.format(Locale.ENGLISH, "\"%s\":%d,", "min", min));
buffer.append(String.format(Locale.ENGLISH, "\"%s\":%d,", "max", max));
buffer.append(String.format(Locale.ENGLISH, "\"%s\":%.2f,", "average", average));
buffer.append(String.format(Locale.ENGLISH, "\"%s\":%d,", "total", total));
buffer.append(String.format(Locale.ENGLISH, "\"%s\":%d,", "firstExecution", firstExecution));
buffer.append(String.format(Locale.ENGLISH, "\"%s\":%d", "lastExecution", lastExecution));
if (payLoad != null)
buffer.append(String.format(Locale.ENGLISH, "\"%s\":%d", "payload", payLoad));
buffer.append('}');
}
@Override
public String toString() {
return String.format("Profiler entry [%s]: total=%d, average=%.2f, items=%d, last=%d, max=%d, min=%d", total, name, average,
entries, last, max, min);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy