类org.springframework.boot.actuate.trace.http.HttpTraceEndpoint源码实例Demo

下面列出了怎么用org.springframework.boot.actuate.trace.http.HttpTraceEndpoint的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: ssh-shell-spring-boot   文件: ActuatorCommand.java
public ActuatorCommand(ApplicationContext applicationContext, Environment environment,
                       SshShellProperties properties, SshShellHelper helper,
                       @Lazy AuditEventsEndpoint audit, @Lazy BeansEndpoint beans,
                       @Lazy ConditionsReportEndpoint conditions,
                       @Lazy ConfigurationPropertiesReportEndpoint configprops, @Lazy EnvironmentEndpoint env,
                       @Lazy HealthEndpoint health,
                       @Lazy HttpTraceEndpoint httptrace, @Lazy InfoEndpoint info, @Lazy LoggersEndpoint loggers,
                       @Lazy MetricsEndpoint metrics,
                       @Lazy MappingsEndpoint mappings, @Lazy ScheduledTasksEndpoint scheduledtasks,
                       @Lazy ShutdownEndpoint shutdown,
                       @Lazy ThreadDumpEndpoint threaddump) {
    this.applicationContext = applicationContext;
    this.environment = environment;
    this.properties = properties;
    this.helper = helper;
    this.audit = audit;
    this.beans = beans;
    this.conditions = conditions;
    this.configprops = configprops;
    this.env = env;
    this.health = health;
    this.httptrace = httptrace;
    this.info = info;
    this.loggers = loggers;
    this.metrics = metrics;
    this.mappings = mappings;
    this.scheduledtasks = scheduledtasks;
    this.shutdown = shutdown;
    this.threaddump = threaddump;
}
 
源代码2 项目: ssh-shell-spring-boot   文件: ActuatorCommand.java
/**
 * Http traces method
 *
 * @return httptrace
 */
@ShellMethod(key = "httptrace", value = "Display httptrace endpoint.")
@ShellMethodAvailability("httptraceAvailability")
public HttpTraceEndpoint.HttpTraceDescriptor httptrace() {
    return httptrace.traces();
}
 
源代码3 项目: ssh-shell-spring-boot   文件: ActuatorCommand.java
/**
 * @return whether `httptrace` command is available
 */
public Availability httptraceAvailability() {
    return availability("httptrace", HttpTraceEndpoint.class);
}
 
源代码4 项目: sshd-shell-spring-boot   文件: HttpTraceCommand.java
HttpTraceCommand(@Value("${sshd.system.command.roles.httpTrace}") String[] systemRoles,
        HttpTraceEndpoint httpTraceEndpoint) {
    super(systemRoles);
    this.httpTraceEndpoint = httpTraceEndpoint;
}
 
 类所在包
 类方法
 同包方法