[ 
https://issues.apache.org/jira/browse/AMBARI-7778?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14172905#comment-14172905
 ] 

Hudson commented on AMBARI-7778:
--------------------------------

SUCCESS: Integrated in Ambari-trunk-Commit #598 (See 
[https://builds.apache.org/job/Ambari-trunk-Commit/598/])
AMBARI-7778 - Alerts: Expose Alert Notices via REST APIs (jonathanhurley) 
(jhurley: 
http://git-wip-us.apache.org/repos/asf?p=ambari.git&a=commit&h=3befc557a9550f0bff5fce85eacd985b57707138)
* 
ambari-server/src/main/java/org/apache/ambari/server/api/resources/AlertNoticeResourceDefinition.java
* 
ambari-server/src/main/java/org/apache/ambari/server/controller/AmbariServer.java
* 
ambari-server/src/main/java/org/apache/ambari/server/controller/internal/AlertNoticeResourceProvider.java
* 
ambari-server/src/main/java/org/apache/ambari/server/orm/entities/AlertDefinitionEntity.java
* 
ambari-server/src/main/java/org/apache/ambari/server/api/resources/ResourceInstanceFactoryImpl.java
* 
ambari-server/src/test/java/org/apache/ambari/server/orm/dao/AlertDispatchDAOTest.java
* 
ambari-server/src/main/java/org/apache/ambari/server/controller/AlertNoticeRequest.java
* ambari-server/src/test/java/org/apache/ambari/server/orm/AlertDaoHelper.java
* 
ambari-server/src/main/java/org/apache/ambari/server/events/listeners/AlertReceivedListener.java
* 
ambari-server/src/main/java/org/apache/ambari/server/orm/entities/AlertHistoryEntity_.java
* 
ambari-server/src/main/java/org/apache/ambari/server/orm/entities/AlertTargetEntity_.java
* 
ambari-server/src/main/java/org/apache/ambari/server/api/services/ServiceService.java
* 
ambari-server/src/test/java/org/apache/ambari/server/controller/internal/AlertHistoryResourceProviderTest.java
* 
ambari-server/src/test/java/org/apache/ambari/server/controller/internal/AlertNoticeResourceProviderTest.java
* 
ambari-server/src/main/java/org/apache/ambari/server/api/services/AlertNoticeService.java
* 
ambari-server/src/main/java/org/apache/ambari/server/controller/internal/AlertHistoryResourceProvider.java
* 
ambari-server/src/test/java/org/apache/ambari/server/orm/dao/AlertsDAOTest.java
* 
ambari-server/src/main/java/org/apache/ambari/server/controller/internal/DefaultProviderModule.java
* 
ambari-server/src/main/java/org/apache/ambari/server/orm/dao/AlertDispatchDAO.java
* 
ambari-server/src/main/java/org/apache/ambari/server/api/services/HostService.java
* 
ambari-server/src/main/java/org/apache/ambari/server/controller/spi/Resource.java
* 
ambari-server/src/main/java/org/apache/ambari/server/orm/entities/AlertNoticeEntity_.java
* 
ambari-server/src/main/java/org/apache/ambari/server/api/services/ClusterService.java


> Alerts: Expose Alert Notices via REST APIs
> ------------------------------------------
>
>                 Key: AMBARI-7778
>                 URL: https://issues.apache.org/jira/browse/AMBARI-7778
>             Project: Ambari
>          Issue Type: Task
>          Components: ambari-server
>    Affects Versions: 2.0.0
>            Reporter: Jonathan Hurley
>            Assignee: Jonathan Hurley
>             Fix For: 2.0.0
>
>         Attachments: AMBARI-7778.patch
>
>
> For every outbound notification, Ambari currently keeps track of the dispatch 
> state (PENDING, DELIVERED, FAILURE). This data needs to be exposed via the 
> REST APIs so that it can be queried.
> {code}
> http://localhost:8080/api/v1/clusters/c1/alert_notices?fields=*
> http://localhost:8080/api/v1/clusters/c1/alert_notices?AlertNotice/notification_state=DELIVERED&fields=*
> {
>   "href" : "http://localhost:8080/api/v1/clusters/c1/alert_notices?fields=*";,
>   "items" : [
>     {
>       "href" : "http://localhost:8080/api/v1/clusters/c1/alert_notices/1";,
>       "AlertNotice" : {
>         "cluster_name" : "c1",
>         "history_id" : 1,
>         "id" : 1,
>         "notification_state" : "DELIVERED",
>         "service_name" : "HDFS",
>         "target_id" : 1,
>         "target_name" : "Administrators",
>         "uuid" : "106ecdb4-0970-4c50-22d3-706d53571321"
>       }
>     },
>     {
>       "href" : "http://localhost:8080/api/v1/clusters/c1/alert_notices/2";,
>       "AlertNotice" : {
>         "cluster_name" : "c1",
>         "history_id" : 2,
>         "id" : 2,
>         "notification_state" : "DELIVERED",
>         "service_name" : "HDFS",
>         "target_id" : 1,
>         "target_name" : "Administrators",
>         "uuid" : "fffecdb4-0970-4dd0-22d3-706d53571321"
>       }
>     }
>   ]
> }
> {code}



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

Reply via email to