public interface

CounterData

com.microstrategy.web.objects.admin.monitors.CounterData

Class Overview

This interface represents one data point for one counter. It contains methods to get both the value associated with the data point and the timestamp of the data reading.

Summary

Public Methods
abstract String getDataValue()
Returns the string representation of the last data point.
abstract Date getTimeStamp()
Returns the time stamp which the data was taken at.

Public Methods

public abstract String getDataValue ()

Returns the string representation of the last data point.

Returns
  • The string representation of the last data point. This will be null if data has never been collected for this counter.

public abstract Date getTimeStamp ()

Returns the time stamp which the data was taken at.

Returns
  • a java.util.Date object containing the timestamp of the data collection, or null if data has never been collected.