Class TraceAppDeployer
- java.lang.Object
-
- org.springframework.cloud.sleuth.instrument.deployer.TraceAppDeployer
-
- All Implemented Interfaces:
org.springframework.cloud.deployer.spi.app.AppDeployer
public class TraceAppDeployer extends Object implements org.springframework.cloud.deployer.spi.app.AppDeployer
Trace representation of anAppDeployer.- Since:
- 3.1.0
- Author:
- Marcin Grzejszczak
-
-
Constructor Summary
Constructors Constructor Description TraceAppDeployer(org.springframework.cloud.deployer.spi.app.AppDeployer delegate, org.springframework.beans.factory.BeanFactory beanFactory, org.springframework.core.env.Environment environment)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringdeploy(org.springframework.cloud.deployer.spi.core.AppDeploymentRequest request)org.springframework.cloud.deployer.spi.core.RuntimeEnvironmentInfoenvironmentInfo()StringgetLog(String id)voidscale(org.springframework.cloud.deployer.spi.app.AppScaleRequest appScaleRequest)org.springframework.cloud.deployer.spi.app.AppStatusstatus(String id)reactor.core.publisher.Flux<org.springframework.cloud.deployer.spi.app.AppStatus>statusesReactive(String... ids)reactor.core.publisher.Mono<org.springframework.cloud.deployer.spi.app.AppStatus>statusReactive(String id)voidundeploy(String id)
-
-
-
Method Detail
-
deploy
public String deploy(org.springframework.cloud.deployer.spi.core.AppDeploymentRequest request)
- Specified by:
deployin interfaceorg.springframework.cloud.deployer.spi.app.AppDeployer
-
undeploy
public void undeploy(String id)
- Specified by:
undeployin interfaceorg.springframework.cloud.deployer.spi.app.AppDeployer
-
status
public org.springframework.cloud.deployer.spi.app.AppStatus status(String id)
- Specified by:
statusin interfaceorg.springframework.cloud.deployer.spi.app.AppDeployer
-
statusReactive
public reactor.core.publisher.Mono<org.springframework.cloud.deployer.spi.app.AppStatus> statusReactive(String id)
- Specified by:
statusReactivein interfaceorg.springframework.cloud.deployer.spi.app.AppDeployer
-
statusesReactive
public reactor.core.publisher.Flux<org.springframework.cloud.deployer.spi.app.AppStatus> statusesReactive(String... ids)
- Specified by:
statusesReactivein interfaceorg.springframework.cloud.deployer.spi.app.AppDeployer
-
environmentInfo
public org.springframework.cloud.deployer.spi.core.RuntimeEnvironmentInfo environmentInfo()
- Specified by:
environmentInfoin interfaceorg.springframework.cloud.deployer.spi.app.AppDeployer
-
getLog
public String getLog(String id)
- Specified by:
getLogin interfaceorg.springframework.cloud.deployer.spi.app.AppDeployer
-
scale
public void scale(org.springframework.cloud.deployer.spi.app.AppScaleRequest appScaleRequest)
- Specified by:
scalein interfaceorg.springframework.cloud.deployer.spi.app.AppDeployer
-
-