Tabnine Logo
DataProxy.send
Code IndexAdd Tabnine to your IDE (free)

How to use
send
method
in
scouter.agent.netio.data.DataProxy

Best Java code snippets using scouter.agent.netio.data.DataProxy.send (Showing top 6 results out of 315)

origin: scouter-project/scouter

  @Counter(interval = 500)
  public void enduser(CounterBasket pw) {
    long time = System.currentTimeMillis();
    long now = DateUtil.getMinUnit(time) / 5;
    if (now == last_sent)
      return;
    last_sent = now;
    time = (time - 10000) / DateUtil.MILLIS_PER_FIVE_MINUTE * DateUtil.MILLIS_PER_FIVE_MINUTE;

    SummaryPack p = EndUserSummary.getInstance().getAndClearNavTable();
    if (p != null) {
      p.time = time;
      DataProxy.send(p);
    }
    p = EndUserSummary.getInstance().getAndClearAjaxTable();
    if (p != null) {
      p.time = time;
      DataProxy.send(p);
    }
    p = EndUserSummary.getInstance().getAndClearErrorTable();
    if (p != null) {
      p.time = time;
      DataProxy.send(p);
    }
  }
}
origin: scouter-project/scouter

  @Counter(interval = 500)
  public void enduser(CounterBasket pw) {
    long time = System.currentTimeMillis();
    long now = DateUtil.getMinUnit(time) / 5;
    if (now == last_sent)
      return;
    last_sent = now;
    time = (time - 10000) / DateUtil.MILLIS_PER_FIVE_MINUTE * DateUtil.MILLIS_PER_FIVE_MINUTE;

    SummaryPack p = EndUserSummary.getInstance().getAndClearNavTable();
    if (p != null) {
      p.time = time;
      DataProxy.send(p);
    }
    p = EndUserSummary.getInstance().getAndClearAjaxTable();
    if (p != null) {
      p.time = time;
      DataProxy.send(p);
    }
    p = EndUserSummary.getInstance().getAndClearErrorTable();
    if (p != null) {
      p.time = time;
      DataProxy.send(p);
    }
  }
}
origin: scouter-project/scouter

if (p != null) {
  p.time = time;
  DataProxy.send(p);
  DataProxy.send(p);
  DataProxy.send(p);
if (p != null) {
  p.time = time;
  DataProxy.send(p);
  DataProxy.send(p);
  DataProxy.send(p);
origin: scouter-project/scouter

if (p != null) {
  p.time = time;
  DataProxy.send(p);
  DataProxy.send(p);
  DataProxy.send(p);
if (p != null) {
  p.time = time;
  DataProxy.send(p);
  DataProxy.send(p);
  DataProxy.send(p);
origin: io.github.scouter-project/scouter-agent-java

  @Counter(interval = 500)
  public void enduser(CounterBasket pw) {
    long time = System.currentTimeMillis();
    long now = DateUtil.getMinUnit(time) / 5;
    if (now == last_sent)
      return;
    last_sent = now;
    time = (time - 10000) / DateUtil.MILLIS_PER_FIVE_MINUTE * DateUtil.MILLIS_PER_FIVE_MINUTE;

    SummaryPack p = EndUserSummary.getInstance().getAndClearNavTable();
    if (p != null) {
      p.time = time;
      DataProxy.send(p);
    }
    p = EndUserSummary.getInstance().getAndClearAjaxTable();
    if (p != null) {
      p.time = time;
      DataProxy.send(p);
    }
    p = EndUserSummary.getInstance().getAndClearErrorTable();
    if (p != null) {
      p.time = time;
      DataProxy.send(p);
    }
  }
}
origin: io.github.scouter-project/scouter-agent-java

if (p != null) {
  p.time = time;
  DataProxy.send(p);
  DataProxy.send(p);
  DataProxy.send(p);
if (p != null) {
  p.time = time;
  DataProxy.send(p);
  DataProxy.send(p);
  DataProxy.send(p);
scouter.agent.netio.dataDataProxysend

Popular methods of DataProxy

  • reset
  • sendAlert
  • sendCounter
  • sendDirect
  • sendHeartBeat
  • getSqlHash
  • sendApicall
  • sendDesc
  • sendError
  • sendGroup
  • sendHashedMessage
  • sendLogin
  • sendHashedMessage,
  • sendLogin,
  • sendMethodName,
  • sendObjName,
  • sendProfile,
  • sendServiceName,
  • sendSqlText,
  • sendStackElement,
  • sendWebName

Popular in Java

  • Running tasks concurrently on multiple threads
  • scheduleAtFixedRate (Timer)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • startActivity (Activity)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • Kernel (java.awt.image)
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • JLabel (javax.swing)
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now