Package | Description |
---|---|
com.gigaspaces.internal.log | |
com.gigaspaces.log | |
com.sun.jini.reggie |
Provides implementations of
ServiceRegistrar . |
org.openspaces.admin |
Entry point for Admin API, allowing to use AdminFactory in order to create an Admin instance.
|
org.openspaces.admin.gsa |
Support for managing of Grid Service Agent(s) through the Admin API.
|
org.openspaces.admin.internal.gsa |
Internally Used.
|
org.openspaces.admin.internal.gsc |
Internally Used.
|
org.openspaces.admin.internal.gsm |
Internally Used.
|
org.openspaces.admin.internal.lus |
Internally Used.
|
Modifier and Type | Method and Description |
---|---|
static LogEntries |
InternalLogHelper.clientSideProcess(LogEntryMatcher matcher,
LogEntries entries) |
static CompoundLogEntries |
InternalLogHelper.logEntries(LogProcessType[] types,
long[] pids,
LogEntryMatcher matcher) |
static CompoundLogEntries |
InternalLogHelper.logEntries(LogProcessType type,
LogEntryMatcher matcher) |
static LogEntries |
InternalLogHelper.logEntries(LogProcessType type,
long pid,
LogEntryMatcher matcher) |
static LogEntries |
InternalLogHelper.logEntriesDirect(File[] files,
long pid,
LogProcessType type,
LogEntryMatcher matcher)
Retrieves the log entries.
|
LogEntries |
InternalLogProvider.logEntriesDirect(LogEntryMatcher matcher) |
static LogEntries |
InternalLogHelper.logEntriesDirect(LogProcessType type,
LogEntryMatcher matcher) |
Modifier and Type | Interface and Description |
---|---|
interface |
ClientLogEntryMatcherCallback
A marker interface for a specific
LogEntryMatcher marking it as needed
to have extra processing step when it is received on the client side. |
interface |
StreamLogEntryMatcher
A marker interface indicating that a log entry matcher can be used for streaming (i.e.
|
Modifier and Type | Class and Description |
---|---|
class |
AfterEntryLogEntryMatcher
A matcher filter that will return log entries that happened from (after) the provided log entry.
|
class |
AfterTimeLogEntryMatcher
A matcher filter that will match only on log entries that occurred after the specified time.
|
class |
AllLogEntryMatcher
A matcher that returns all the log entries.
|
class |
BeforeEntryLogEntryMatcher
A matcher filter that will return log entries that happened till the provided log entry.
|
class |
BeforeTimeLogEntryMatcher
A matcher filter that will match only on log entries that occurred before the specified time.
|
class |
ContainsStringLogEntryMatcher
A matcher filter that will filter out all log entries that do not contain the provided string.
|
class |
ContinuousLogEntryMatcher
A reusable matcher (not thread safe) which accepts a matcher that returns the log entries for the
first call, and for any other call, a
AfterEntryLogEntryMatcher will be used with the
last log entry returned. |
class |
FirstFileLogEntryMatcher
A matcher that will be executed only on the first log file.
|
class |
ForwardChunkLogEntryMatcher
A forward chunk that iterates over all the log files, from start to end.
|
class |
LastNLogEntryMatcher
Returns the last N log entries.
|
class |
LogEntryMatcherFilter
A base class for entry matchers that act as filters to a delegated matcher.
|
class |
NoneLogEntryMatcher
A log entry matcher filter that matches on nothing.
|
class |
RegexLogEntryMatcher
A log entry matcher filter that will match on log entries which match on the given regular
expression.
|
class |
ReverseLogEntryMatcher
A streaming log entry matcher that allows to traverse the log entries in a streaming manner in a
reverse order.
|
class |
SameFileLogEntryMatcher
A log entry matcher filter that matches on logs that only exists within the same log file.
|
class |
SizeLogEntryMatcher
A matcher that returns only stores the last N entries but does not break (basically, will return
the last N elements processed).
|
Modifier and Type | Method and Description |
---|---|
static AfterEntryLogEntryMatcher |
LogEntryMatchers.afterEntry(LogEntries logEntries,
LogEntry logEntry,
boolean inclusive,
LogEntryMatcher matcher) |
static AfterEntryLogEntryMatcher |
LogEntryMatchers.afterEntry(LogEntries logEntries,
LogEntry logEntry,
LogEntryMatcher matcher) |
static AfterTimeLogEntryMatcher |
LogEntryMatchers.afterTime(long timestamp,
boolean inclusive,
LogEntryMatcher matcher) |
static AfterTimeLogEntryMatcher |
LogEntryMatchers.afterTime(long timestamp,
LogEntryMatcher matcher) |
static AfterTimeLogEntryMatcher |
LogEntryMatchers.afterTime(String time,
boolean inclusive,
LogEntryMatcher matcher) |
static AfterTimeLogEntryMatcher |
LogEntryMatchers.afterTime(String time,
LogEntryMatcher matcher) |
static AfterTimeLogEntryMatcher |
LogEntryMatchers.afterTime(String time,
String format,
boolean inclusive,
LogEntryMatcher matcher) |
static AfterTimeLogEntryMatcher |
LogEntryMatchers.afterTime(String time,
String format,
LogEntryMatcher matcher) |
static BeforeEntryLogEntryMatcher |
LogEntryMatchers.beforeEntry(LogEntries logEntries,
LogEntry logEntry,
boolean inclusive,
LogEntryMatcher matcher) |
static BeforeEntryLogEntryMatcher |
LogEntryMatchers.beforeEntry(LogEntries logEntries,
LogEntry logEntry,
LogEntryMatcher matcher) |
static BeforeTimeLogEntryMatcher |
LogEntryMatchers.beforeTime(long timestamp,
boolean inclusive,
LogEntryMatcher matcher) |
static BeforeTimeLogEntryMatcher |
LogEntryMatchers.beforeTime(long timestamp,
LogEntryMatcher matcher) |
static BeforeTimeLogEntryMatcher |
LogEntryMatchers.beforeTime(String time,
boolean inclusive,
LogEntryMatcher matcher) |
static BeforeTimeLogEntryMatcher |
LogEntryMatchers.beforeTime(String time,
LogEntryMatcher matcher) |
static BeforeTimeLogEntryMatcher |
LogEntryMatchers.beforeTime(String time,
String format,
boolean inclusive,
LogEntryMatcher matcher) |
static BeforeTimeLogEntryMatcher |
LogEntryMatchers.beforeTime(String time,
String format,
LogEntryMatcher matcher) |
static ContainsStringLogEntryMatcher |
LogEntryMatchers.containsString(String str,
LogEntryMatcher matcher) |
static ContinuousLogEntryMatcher |
LogEntryMatchers.continuous(LogEntryMatcher initialMatcher) |
static ContinuousLogEntryMatcher |
LogEntryMatchers.continuous(LogEntryMatcher initialMatcher,
LogEntryMatcher continousMatcher) |
static FirstFileLogEntryMatcher |
LogEntryMatchers.firstFile(LogEntryMatcher matcher) |
static ForwardChunkLogEntryMatcher |
LogEntryMatchers.forwardChunk(LogEntryMatcher matcher) |
static LastNLogEntryMatcher |
LogEntryMatchers.lastN(int lastN,
LogEntryMatcher matcher) |
static RegexLogEntryMatcher |
LogEntryMatchers.regex(String regex,
LogEntryMatcher matcher) |
static ReverseLogEntryMatcher |
LogEntryMatchers.reverse(LogEntryMatcher matcher) |
Modifier and Type | Method and Description |
---|---|
LogEntries |
GigaRegistrar.logEntriesDirect(LogEntryMatcher matcher) |
Modifier and Type | Method and Description |
---|---|
LogEntries |
LogProviderGridComponent.logEntries(LogEntryMatcher matcher)
Returns the log entries matching the given matcher for the specific grid component.
|
LogEntries |
LogProviderGridComponent.logEntriesDirect(LogEntryMatcher matcher)
Same as
LogProviderGridComponent.logEntries(com.gigaspaces.log.LogEntryMatcher) , but does not try and get the
logs from the agent. |
Modifier and Type | Method and Description |
---|---|
CompoundLogEntries |
GridServiceAgent.allLogEntries(LogProcessType type,
LogEntryMatcher matcher)
Extracts all the log entries for the provided process type including both "live" runtime
components and ones that are no longer running.
|
CompoundLogEntries |
GridServiceAgent.liveLogEntries(LogEntryMatcher matcher)
Extracts all the log entries of all the "live" runtime components that this agent is running
matching the given matcher.
|
LogEntries |
GridServiceAgent.logEntries(LogProcessType type,
long pid,
LogEntryMatcher matcher)
Extract the log entries matching the provided matcher for the process type and process id.
|
Modifier and Type | Method and Description |
---|---|
CompoundLogEntries |
DefaultGridServiceAgent.allLogEntries(LogProcessType type,
LogEntryMatcher matcher) |
CompoundLogEntries |
DefaultGridServiceAgent.liveLogEntries(LogEntryMatcher matcher) |
LogEntries |
DefaultGridServiceAgent.logEntries(LogEntryMatcher matcher) |
LogEntries |
DefaultGridServiceAgent.logEntries(LogProcessType type,
long pid,
LogEntryMatcher matcher) |
LogEntries |
DefaultGridServiceAgent.logEntriesDirect(LogEntryMatcher matcher) |
Modifier and Type | Method and Description |
---|---|
LogEntries |
DefaultGridServiceContainer.logEntries(LogEntryMatcher matcher) |
LogEntries |
DefaultGridServiceContainer.logEntriesDirect(LogEntryMatcher matcher) |
Modifier and Type | Method and Description |
---|---|
LogEntries |
DefaultGridServiceManager.logEntries(LogEntryMatcher matcher) |
LogEntries |
DefaultGridServiceManager.logEntriesDirect(LogEntryMatcher matcher) |
Modifier and Type | Method and Description |
---|---|
LogEntries |
DefaultLookupService.logEntries(LogEntryMatcher matcher) |
LogEntries |
DefaultLookupService.logEntriesDirect(LogEntryMatcher matcher) |
Copyright © GigaSpaces.