Interface LogCounter
-
public interface LogCounter
This interface represents a log counter for IServer performance logging.- Since:
- MicroStrategy Web 7.5.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getName()
Returns the name of this counter.boolean
isLoggingEnabled()
Conveys if logging is enabled for this counter.boolean
isPersistToStatistics()
Conveys if logging to Statistic is enabled for this counter.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the name of this counter.- Returns:
- String the name of this counter.
-
isLoggingEnabled
boolean isLoggingEnabled()
Conveys if logging is enabled for this counter. Note that if logging has been enabled (or disabled) for this counter using APIs likePerformanceLoggingConfiguration.enableLogging(String, String)
one must callPerformanceLoggingConfiguration.save(boolean)
to make sure that the changes are effected on the corresponding IServer.- Returns:
- boolean True if logging is enabled for this counter.
-
isPersistToStatistics
boolean isPersistToStatistics()
Conveys if logging to Statistic is enabled for this counter. Note that if logging has been enabled (or disabled) for this counter using APIs likePerformanceLoggingConfiguration.enableLogStats(String, String)
one must callPerformanceLoggingConfiguration.save(boolean)
to make sure that the changes are effected on the corresponding IServer.- Returns:
- boolean True if logging to Statistic is enabled for this counter.
- Since:
- MicroStrategy Web 9.0.0
-
-