[Engine-devel] java SDK question

Hi, When i do the api call for events from , i only get 100 events. Can someone tell me how to get all the events ? List<Event> evlst=api.getEvents().list(); for(Event obj:evlst) { System.out.println(obj.getDescription() + ":" +obj.getSeverity() +":"+obj.getTime().toString()+":"+k.toString()); } Regards, Navin

On 02/01/2013 12:56 PM, navin p wrote:
Hi, When i do the api call for events from , i only get 100 events. Can someone tell me how to get all the events ?
There are 2 options: 1. Use the overloaded Event.list method and specify the amount of result you wish to get. In the next example you'll get 1000 entries. Events events = api.getEvents(); events.list("", false, "", 1000); You can use this method to retrieve events by extents. 2. Increase the value of the configuration value 'SearchResultsLimit' to the desired reasonable value.
List<Event> evlst=api.getEvents().list(); for(Event obj:evlst) { System.out.println(obj.getDescription() + ":" +obj.getSeverity() +":"+obj.getTime().toString()+":"+k.toString()); }
Regards, Navin
_______________________________________________ Engine-devel mailing list Engine-devel@ovirt.org http://lists.ovirt.org/mailman/listinfo/engine-devel

On 02/01/2013 03:17 PM, Moti Asayag wrote:
On 02/01/2013 12:56 PM, navin p wrote:
Hi, When i do the api call for events from , i only get 100 events. Can someone tell me how to get all the events ?
There are 2 options: 1. Use the overloaded Event.list method and specify the amount of result you wish to get. In the next example you'll get 1000 entries.
Events events = api.getEvents(); events.list("", false, "", 1000);
You can use this method to retrieve events by extents.
2. Increase the value of the configuration value 'SearchResultsLimit' to the desired reasonable value.
There is a third option, you can use pagination via engine search interface, just append to your query string "page N".
List<Event> evlst=api.getEvents().list(); for(Event obj:evlst) { System.out.println(obj.getDescription() + ":" +obj.getSeverity() +":"+obj.getTime().toString()+":"+k.toString()); }
Regards, Navin
_______________________________________________ Engine-devel mailing list Engine-devel@ovirt.org http://lists.ovirt.org/mailman/listinfo/engine-devel
_______________________________________________ Engine-devel mailing list Engine-devel@ovirt.org http://lists.ovirt.org/mailman/listinfo/engine-devel
-- Michael Pasternak RedHat, ENG-Virtualization R&D
participants (3)
-
Michael Pasternak
-
Moti Asayag
-
navin p