All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.orientechnologies.orient.server.OClientConnectionStats Maven / Gradle / Ivy

The newest version!
package com.orientechnologies.orient.server;

import java.util.List;

/** Created by tglman on 17/02/16. */
public class OClientConnectionStats {

  public int totalRequests = 0;
  public String lastCommandInfo = null;
  public String lastCommandDetail = null;
  public long lastCommandExecutionTime = 0;
  public long lastCommandReceived = 0;
  public String lastDatabase = null;
  public String lastUser = null;
  public long totalCommandExecutionTime = 0;
  public List activeQueries;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy