BrightSide Workbench Full Report + Source Code
org.turro.log.Logs Class Reference

Static Public Member Functions

static List< LogCountgetGeneratorActivityCount (Date from)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 30 of file Logs.java.

Member Function Documentation

◆ getGeneratorActivityCount()

static List<LogCount> org.turro.log.Logs.getGeneratorActivityCount ( Date  from)
static

Definition at line 32 of file Logs.java.

32  {
33  return SqlClause.select("new org.turro.log.LogCount(l.generatorPath, count(l))")
34  .from("SystemLog l")
35  .where().greaterOrEqual("l.dateLog", from)
36  .and("l.generatorPath like '/contact/%'")
37  .groupBy("l.generatorPath")
38  .dao(new ElephantPU())
39  .resultList(LogCount.class);
40  }
Here is the caller graph for this function:

The documentation for this class was generated from the following file: