List<Events.Event> |
Events.dimension(String namespace,
String dimensionKey,
long startTimestampMillis,
long endTimestampMillis,
Map<String,String> metadataQuery,
Map<String,String> dimensionsQuery) |
Get a list of events values where each event only contains the specified dimension, for events in the given
namespace, with timestamp between the start and end, metadata and dimensions matching the given queries.
|
default List<Events.Event> |
Events.get(String namespace,
long startTimestampMillis,
long endTimestampMillis) |
Get all events in the given namespace, with timestamp between the start and end.
|
default List<Events.Event> |
Events.get(String namespace,
long startTimestampMillis,
long endTimestampMillis,
boolean includePayloads) |
Get all events in the given namespace, with timestamp between the start and end.
|
default List<Events.Event> |
Events.get(String namespace,
long startTimestampMillis,
long endTimestampMillis,
Map<String,String> metadataQuery,
Map<String,String> dimensionsQuery) |
Get all events in the given namespace, with timestamp between the start and end, and metadata and dimensions
matching the given queries.
|
default List<Events.Event> |
Events.get(String namespace,
long startTimestampMillis,
long endTimestampMillis,
Map<String,String> metadataQuery,
Map<String,String> dimensionsQuery,
boolean includePayloads) |
Get all events in the given namespace, with timestamp between the start and end, and metadata and dimensions
matching the given queries.
|
List<Events.Event> |
Events.get(String namespace,
long startTimestampMillis,
long endTimestampMillis,
Map<String,String> metadataQuery,
Map<String,String> dimensionsQuery,
boolean includePayloads,
boolean ascending,
int limit) |
Get all events in the given namespace, with timestamp between the start and end, and metadata and dimensions
matching the given queries.
|