org.kurento.test.monitor.MonitorSample Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kurento-test Show documentation
Show all versions of kurento-test Show documentation
This project contains test cases for testing Kurento
Java Client and Kurento Media Server.
/*
* (C) Copyright 2015 Kurento (http://kurento.org/)
*
* 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 org.kurento.test.monitor;
import java.util.HashMap;
import java.util.Map;
/**
* Monitor results.
*
* @author Boni Garcia ([email protected])
* @since 6.1.1
*/
public class MonitorSample {
// Number of clients
private int numClients = 0;
// KMS information
private KmsSystemInfo kmsInfo;
// WebRtcStats
private Map stats = new HashMap<>();
// Latency
private double currentLatency = 0;
private int latencyHints = 0;
private int latencyErrors = 0;
private boolean showLantency = false;
public void addWebRtcStats(WebRtcStats webRtcStats) {
stats.put(webRtcStats.getId(), webRtcStats);
}
public WebRtcStats getWebRtcStats(String id) {
return stats.get(id);
}
public Map getStats() {
return stats;
}
public int getNumClients() {
return numClients;
}
public void setNumClients(int numClients) {
this.numClients = numClients;
}
public KmsSystemInfo getSystemInfo() {
return kmsInfo;
}
public void setSystemInfo(KmsSystemInfo kmsInfo) {
this.kmsInfo = kmsInfo;
}
public double getCurrentLatency() {
return currentLatency;
}
public void setCurrentLatency(double currentLatency) {
this.currentLatency = currentLatency;
}
public int getLatencyHints() {
return latencyHints;
}
public void setLatencyHints(int latencyHints) {
this.latencyHints = latencyHints;
}
public int getLatencyErrors() {
return latencyErrors;
}
public void setLatencyErrors(int latencyErrors) {
this.latencyErrors = latencyErrors;
}
public boolean isShowLantency() {
return showLantency;
}
public void setShowLantency(boolean showLantency) {
this.showLantency = showLantency;
}
public double getLatency() {
double latency = latencyHints > 0 ? currentLatency / latencyHints : 0;
this.currentLatency = 0;
this.latencyHints = 0;
return latency;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy