-
Notifications
You must be signed in to change notification settings - Fork 26.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(actuator):Adding Support for Spring Boot Actuator (#14596)
* feat(dubbo-actuator):add actuator * fix:Illegal logger method invocations * fix:add automatically generate properties,simplify the invoke process,fixed an error where Class name duplicate DubboEndpoint in dubbo-spring-boot-compatible * fix:Actuator offline and gracefulshutdown operations are disabled by default * fix:Only enable live, ready and startup by default * fix:Remove development comments * fix:Remove automatically generate properties feature * fix:Change the configuration format * fix:Set endpoint enablement to be opt-in rather than opt-out, modify README.md
- Loading branch information
1 parent
93fa6c3
commit 6982695
Showing
14 changed files
with
353 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
...-plugin/dubbo-qos/src/main/java/org/apache/dubbo/qos/command/ActuatorCommandExecutor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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.apache.dubbo.qos.command; | ||
|
||
import org.apache.dubbo.common.logger.Logger; | ||
import org.apache.dubbo.common.logger.LoggerFactory; | ||
import org.apache.dubbo.qos.api.BaseCommand; | ||
import org.apache.dubbo.qos.api.CommandContext; | ||
import org.apache.dubbo.rpc.model.ApplicationModel; | ||
|
||
import java.util.Arrays; | ||
|
||
public class ActuatorCommandExecutor implements ActuatorExecutor { | ||
private static final Logger logger = LoggerFactory.getLogger(ActuatorCommandExecutor.class); | ||
private final ApplicationModel applicationModel; | ||
|
||
public ActuatorCommandExecutor(ApplicationModel applicationModel) { | ||
this.applicationModel = applicationModel; | ||
} | ||
|
||
@Override | ||
public String execute(String commandName, String[] parameters) { | ||
CommandContext commandContext; | ||
|
||
if (parameters == null || parameters.length == 0) { | ||
commandContext = CommandContextFactory.newInstance(commandName); | ||
commandContext.setHttp(true); | ||
} else { | ||
commandContext = CommandContextFactory.newInstance(commandName, parameters, true); | ||
} | ||
|
||
logger.info("[Dubbo Actuator QoS] Command Process start. Command: " + commandContext.getCommandName() | ||
+ ", Args: " + Arrays.toString(commandContext.getArgs())); | ||
|
||
BaseCommand command; | ||
try { | ||
command = applicationModel | ||
.getExtensionLoader(BaseCommand.class) | ||
.getExtension(commandContext.getCommandName()); | ||
return command.execute(commandContext, commandContext.getArgs()); | ||
} catch (Throwable t) { | ||
logger.info( | ||
"[Dubbo Actuator QoS] Command Process Failed. Command: " + commandContext.getCommandName() | ||
+ ", Args: " + Arrays.toString(commandContext.getArgs()), | ||
t); | ||
throw t; | ||
} | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
dubbo-plugin/dubbo-qos/src/main/java/org/apache/dubbo/qos/command/ActuatorExecutor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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.apache.dubbo.qos.command; | ||
|
||
public interface ActuatorExecutor { | ||
|
||
String execute(String command, String[] args); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.