Browse Source
Rename invoke JMX operation to getData for endpoints that provide actuator data. Special case for ShutdownEndpoint to provide a shutdown method.pull/176/head
5 changed files with 101 additions and 11 deletions
@ -0,0 +1,41 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2013 the original author or authors. |
||||||
|
* |
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
* you may not use this file except in compliance with the License. |
||||||
|
* You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.springframework.boot.actuate.endpoint.jmx; |
||||||
|
|
||||||
|
import org.springframework.boot.actuate.endpoint.Endpoint; |
||||||
|
import org.springframework.jmx.export.annotation.ManagedAttribute; |
||||||
|
import org.springframework.jmx.export.annotation.ManagedResource; |
||||||
|
|
||||||
|
/** |
||||||
|
* Simple wrapper around {@link Endpoint} implementations that provide actuator data of |
||||||
|
* some sort. |
||||||
|
* |
||||||
|
* @author Christian Dupuis |
||||||
|
*/ |
||||||
|
@ManagedResource |
||||||
|
public class DataEndpointMBean extends EndpointMBean { |
||||||
|
|
||||||
|
public DataEndpointMBean(String beanName, Endpoint<?> endpoint) { |
||||||
|
super(beanName, endpoint); |
||||||
|
} |
||||||
|
|
||||||
|
@ManagedAttribute(description = "Invoke the underlying endpoint") |
||||||
|
public Object getData() { |
||||||
|
return convert(getEndpoint().invoke()); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,38 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2013 the original author or authors. |
||||||
|
* |
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
* you may not use this file except in compliance with the License. |
||||||
|
* You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.springframework.boot.actuate.endpoint.jmx; |
||||||
|
|
||||||
|
import org.springframework.boot.actuate.endpoint.Endpoint; |
||||||
|
import org.springframework.boot.actuate.endpoint.ShutdownEndpoint; |
||||||
|
import org.springframework.jmx.export.annotation.ManagedOperation; |
||||||
|
|
||||||
|
/** |
||||||
|
* Special endpoint wrapper for {@link ShutdownEndpoint}. |
||||||
|
* |
||||||
|
* @author Christian Dupuis |
||||||
|
*/ |
||||||
|
public class ShutdownEndpointMBean extends EndpointMBean { |
||||||
|
|
||||||
|
public ShutdownEndpointMBean(String beanName, Endpoint<?> endpoint) { |
||||||
|
super(beanName, endpoint); |
||||||
|
} |
||||||
|
|
||||||
|
@ManagedOperation(description = "Shutdown the ApplicationContext") |
||||||
|
public Object shutdown() { |
||||||
|
return convert(getEndpoint().invoke()); |
||||||
|
} |
||||||
|
} |
||||||
Loading…
Reference in new issue