25.4. 메서드
25.4.1. 이벤트 검색
이벤트
컬렉션은 다른 리소스 컬렉션과 유사한 검색 쿼리를 제공합니다. 이벤트
컬렉션을 검색할 때 추가 기능은 특정 이벤트에서 검색할 수 있는 기능입니다. 지정된 이벤트 이후의 모든 이벤트를 쿼리합니다.
이벤트에서 쿼리하려면 검색 쿼리 전에 추가
from
매개변수가 추가됩니다. 인수 에서
이 값은 이벤트 id
코드를 참조합니다.
예 25.3. 이벤트 검색
GET /ovirt-engine/api/events;from=1012?search=type%3D30 HTTP/1.1 Accept: application/xml
id="1012"
로 설정된 type
이 30으로 설정된 모든 이벤트가 표시됩니다.
HTTP/1.1 200 OK Content-Type: application/xml <events> <event id="1018" href="/ovirt-engine/api/events/1018"> <description>User admin logged in.</description> <code>30</code> <severity>normal</severity> <time>2011-07-11T14:03:22.485+10:00</time> <user id="80b71bae-98a1-11e0-8f20-525400866c73" href="/ovirt-engine/api/users/80b71bae-98a1-11e0-8f20-525400866c73"/> </event> <event id="1016" href="/ovirt-engine/api/events/1016"> <description>User admin logged in.</description> <code>30</code> <severity>normal</severity> <time>2011-07-11T14:03:07.236+10:00</time> <user id="80b71bae-98a1-11e0-8f20-525400866c73" href="/ovirt-engine/api/users/80b71bae-98a1-11e0-8f20-525400866c73"/> </event> <event id="1014" href="/ovirt-engine/api/events/1014"> <description>User admin logged in.</description> <code>30</code> <severity>normal</severity> <time>2011-07-11T14:02:16.009+10:00</time> <user id="80b71bae-98a1-11e0-8f20-525400866c73" href="/ovirt-engine/api/users/80b71bae-98a1-11e0-8f20-525400866c73"/> </event> </events>
예 25.4. 특정 이벤트 심각도를 사용하여 검색
GET /ovirt-engine/api/events?search=severity>normal HTTP/1.1 Accept: application/xml
이렇게 하면 심각도가
정상
보다 높은 모든 이벤트가 표시됩니다. 심각도 수준에는 일반
,경고
,오류
및 경고가
포함됩니다.
HTTP/1.1 200 OK Content-Type: application/xml <events> <event id="2823" href="/ovirt-engine/api/events/2823"> <description>Host Host-05 has time-drift of 36002 seconds while maximum configured value is 300 seconds.</description> <code>604</code> <severity>warning</severity> <time>2015-07-11T14:03:22.485+10:00</time> <host href= "/ovirt-engine/api/hosts/44e52bb2-27d6-4d35-8038-0c4b4db89789" id="44e52bb2-27d6-4d35-8038-0c4b4db89789"/> <cluster href= "/ovirt-engine/api/clusters/00000001-0001-0001-0001-00000000021b" id="00000001-0001-0001-0001-00000000021b"/> <origin>oVirt</origin> <custom_id>-1</custom_id> <flood_rate>30</flood_rate> </event> ... </events>