You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ace.apache.org by "Niclas Hedhman (JIRA)" <ji...@apache.org> on 2015/01/13 10:38:34 UTC

[jira] [Created] (ACE-507) Gogo LogCommands gets more functions

Niclas Hedhman created ACE-507:
----------------------------------

             Summary: Gogo LogCommands gets more functions
                 Key: ACE-507
                 URL: https://issues.apache.org/jira/browse/ACE-507
             Project: ACE
          Issue Type: Improvement
            Reporter: Niclas Hedhman
            Priority: Minor


I have added a few functions to retrieve Log events from the ACE LogStore.

They are;

list - Get all Descriptors of TargetID and StoreID.
   scope: ace-log

list - Get all Descriptors of a particular TargetID.
   scope: ace-log
   parameters:
      String   targetId - Identifier of the Target.

get - Get all the Log Events in the given TargetID and StoreID.
   scope: ace-log
   parameters:
      String   targetId - Identifier of the Target.
      long   storeId  - Identity of the Store on the given Target.

get - Get all the Log Events from the given TargetID
   scope: ace-log
   parameters:
      String   targetId - Identifier of the Target.

get - Get all the Log Events from the given TargetID and StoreID, after a given time.
   scope: ace-log
   parameters:
      String   targetId - Identifier of the Target.
      long   storeId  - Identity of the Store on the given Target.
      long   start    - The starting time of the time range requested.(millis)

get - Get all the Log Events from the given TargetID and StoreID, within a time range.
   scope: ace-log
   parameters:
      String   targetId - Identifier of the Target.
      long   storeId  - Identity of the Store on the given Target.
      long   start    - The starting time of the time range requested.(millis)
      long   end      - The ending time of the time range requested. (millis)

getAll - Get all the Log Events available. USE WITH EXTREME CARE!
   scope: ace-log




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)