View on GitHub

Caudit

Caudit is a simple library to log application performance related events.

Download this project as a .zip file Download this project as a tar.gz file

CAUDIT

Caudit is a simple library to log application performance, health and statistics in an organized manner. It has two basic audit types: stopwatches and quantities. Stopwatches are the ones which you keep track of the time passed for a specific operation. Quantities are variables that you want to monitor. Let's make it more understanding with examples.

Simple Stopwatch Example

In this example, we try to monitor how much time it takes to run doSomeWork() method.

//Mapping audit to integer is for performance(string comparison vs integer comparison)
private final static int BASIC_STOPWATCH_ID = Audits.mapAudit("example.basicStopwatch");

public void tryOut(){
  final Stopwatch stopwatch = Audits.getBasicStopwatch(BASIC_STOPWATCH_ID);
  stopwatch.start();
  doSomeWork();
  stopwatch.stop();
}

If we use default configuration we will see an output on the console as follows.

example.basicStopwatch : ElapsedTime[5679]

Pom Dependency

<dependency>
  <groupId>com.cetsoft</groupId>
  <artifactId>caudit</artifactId>
  <version>0.0.7</version><!--Can be updated for later versions-->
</dependency>

Simple Quantity Example

In this example, we try to monitor how many items we retrieve from database.

private final static int NO_OF_RETRIEVED_ITEMS_ID = Audits.mapAudit("example.noOfRetrievedItems");

public void tryOut(){
  final LongQuantity quantity = Audits.getLongQuantity(NO_OF_RETRIEVED_ITEMS_ID);
  int size = retrieveItems().size();
  quantity.increment(size);
}

If we use default configuration we will see an output on the console as follows.

example.noOfRetrievedItems : Quantity[2631]

Counting Stopwatch Example

In this example, we try to monitor how much time it takes to do specific number of operations.

private final static int COUNTING_STOPWATCH_ID = Audits.mapAudit("example.countingStopwatch");

public void tryOut(){
  final CountingStopwatch stopwatch = Audits.getCountingStopwatch(COUNTING_STOPWATCH_ID);
  stopwatch.start(0);
  int size = doSomeWork();
  stopwatch.stop(size);
}

If we use default configuration we will see an output on the console as follows.

example.countingStopwatch : Count[23] ElapsedTime[5679]

AuditProvider is called for each time interval. Thus, we can see updated output on the console.

Complex Audit Example

In this example, we try to monitor specific events that have many attributes.

private final static int TOTAL_CHANGES_ID = Audits.mapAudit("example.totalChanges");

public void tryOut(){
  final ComplexAudit audit = Audits.getComplexAudit(TOTAL_CHANGES_ID);
  audit.put("width",3);
  audit.put("length",5);
  audit.put("number",11);
}

If we use default configuration we will see an output on the console as follows.

example.totalChanges : width[3] length[5] number[11]

Default Audits

If you want to know how much memory you consume or how much threads you run, you can use default functions of caudit as follows.

public void tryOut(){
   Audits.monitorUsedMemoryInMB();
   Audits.monitorNumberOfThreads();
}

If we use default configuration we will see an output on the console as follows.

USED_MEMORY_IN_MB : Quantity[3]

NO_OF_THREADS : Quantity[5]

Specific Scenarios

stopwatch.shouldReset(true);
doubleQuantity.setProvider(new AuditProvider() {
  public void updateAudit(){
    doubleQuantity.set(Math.random());
  }
});
private final static int EVENT_ID = Audits.mapAudit("example.event");
public void startEvent(){
  Stopwatch stopwatch = Audits.getBasicStopwatch(EVENT_ID);
  stopwatch.setShouldReset(false);
  stopwatch.setObservable(false);// By setting observable to false will prevent it from being observed.
  stopwatch.setRemovalListener(new AuditRemovalListener() {
    public void onRemoval(AuditEvent auditEvent) {
      System.out.println(auditEvent);
    }
  });
  stopwatch.start();
}
public void stopEvent(){
  Stopwatch stopwatch = Audits.getBasicStopwatch(EVENT_ID);
  stopwatch.stop();
  Audits.unmapAudit(stopwatch);
}

Configuration

Caudit configuration is simple, you just give period of caudit and observers for audit events. Here is an example configuration. I would strongly recommend to use caudit-observers package additionally because it provides logging with log4j and mongodb. It's as simple as follows.

<?xml version="1.0" encoding="UTF-8" ?>
<caudit>
  <period>1000</period>
    <observers>
      <observer class="com.cetsoft.caudit.observer.ConsoleObserver" />
      <observer class="com.cetsoft.caudit.observers.Log4JObserver" />
      <observer class="com.cetsoft.caudit.observers.MongoObserver">
        <connection-string>some-url</connection-string>
        <dbname>mydb</dbname>
        <port>27017</port>
      </observer>
      <!-- MyObserver is just an example -->
      <observer class="com.cetsoft.caudit.observer.YourCustomObserver" />
    </observers>
</caudit>

Caudit tries to find caudit.xml in classpath or you can give its path by -Dcaudit.configuration.filePath=yourpath, otherwise, it loads the default configuration.

Licence

Caudit uses GNU Licence.