Search in sources :

Example 1 with Collection

use of com.yahoo.log.event.Collection in project vespa by vespa-engine.

the class EventTestCase method setUp.

public void setUp() {
    countEvent = new Count("thecounter", 1234);
    floatCountEvent = new Count("thecounter", 1234.23);
    valueEvent = new Value("thevalue", 4566);
    floatValueEvent = new Value("thevalue", 4566.23);
    crashEvent = new Crash("appname", 1234, 11);
    progressEvent1 = new Progress("thename", 1);
    progressEvent2 = new Progress("thename", 1.0, 2.0);
    reloadingEvent = new Reloading("thefilewereloading");
    reloadedEvent = new Reloaded("thefilewereloaded");
    startingEvent = new Starting("startingName");
    startedEvent = new Started("startedName");
    stoppingEvent = new Stopping("stoppingName", "because we want to");
    stoppedEvent = new Stopped("stoppedName", 1234, 1);
    collectionEvent = new Collection(123456, "thename");
    unknownEvent = new Unknown();
}
Also used : Crash(com.yahoo.log.event.Crash) Progress(com.yahoo.log.event.Progress) Reloaded(com.yahoo.log.event.Reloaded) Started(com.yahoo.log.event.Started) Unknown(com.yahoo.log.event.Unknown) Stopped(com.yahoo.log.event.Stopped) Starting(com.yahoo.log.event.Starting) Value(com.yahoo.log.event.Value) Stopping(com.yahoo.log.event.Stopping) Collection(com.yahoo.log.event.Collection) Reloading(com.yahoo.log.event.Reloading) Count(com.yahoo.log.event.Count)

Aggregations

Collection (com.yahoo.log.event.Collection)1 Count (com.yahoo.log.event.Count)1 Crash (com.yahoo.log.event.Crash)1 Progress (com.yahoo.log.event.Progress)1 Reloaded (com.yahoo.log.event.Reloaded)1 Reloading (com.yahoo.log.event.Reloading)1 Started (com.yahoo.log.event.Started)1 Starting (com.yahoo.log.event.Starting)1 Stopped (com.yahoo.log.event.Stopped)1 Stopping (com.yahoo.log.event.Stopping)1 Unknown (com.yahoo.log.event.Unknown)1 Value (com.yahoo.log.event.Value)1