This document describes how to view and manage app information from Spring Boot Actuator in Apps Manager.

Prerequisites

The Apps Manager integration with Spring Boot Actuator requires:

View Build and Git Information for Your App

To view the data that your app sends to its /info Actuator endpoint, select the Settings tab:

App info page for hello-spring-cloud app

In the upper right of the app page, Apps Manager also displays the SHA of your app code repository from the latest build:

App info page for hello-spring-cloud app showing app code repository SHA.

View App Health

To view the health-check data that your app sends to its /health Actuator endpoints:

  1. Select the Overview tab.

  2. Click an instance under the Instances section:

    Instances Health Check page

View Thread Dump

To trigger and view a thread dump from your app to its /dump Actuator endpoint:

  1. Select the Threads tab.

  2. Click Refresh.

    App status display showing Thread dump,

You can click each thread to expand and view its details. You can also modify which threads appear on the page using the Instance and Show dropdowns.

View Request Traces

To retrieve and view tracing information from the /trace Actuator endpoint of your app:

  1. Select the Trace tab.

  2. Click Refresh.

This page displays the last 100 requests from your app. You can click each individual request to expand and view its trace details. You can modify which requests appear on the page using the Instance dropdown.

By default, the Trace tab does not show requests and responses from Apps Manager polling app instances for data. To include these requests, clear the Hide Apps Manager Requests checkbox next to the Instance dropdown.

Download Heap Dump

To trigger and view a heap dump from your app to its /heapdump endpoint:

  1. Select the settings dropdown for an instance of your app.

  2. Click Heap Dump. This downloads a .zip file.

    Instances page showing App Health, CPU, Memory, Disk, and Uptime.

View Mappings

To view a collated list of the endpoints an app serves:

  1. Select the Settings tab.

  2. Click View Mappings.

    App Settings page: View Mappings

Manage Log Levels for Apps Mapped to External Routes

Spring Boot apps include loggers for many provided and user components of the app. You can set the log level for each logger in Apps Manager.

To view the Configure Logging Levels screen:

  1. Select the Logs tab.

  2. Click Configure Logging Levels.

    Logs tab: Configure Logging Levels button

Apps Manager displays the default log level for each logger in gray.

Configure Logging levels: shows level selector for each logger

You can change the log level for a logger by clicking the desired level in the logger row, as shown in the following image. Whenever you set a log level, the following happens:

  • The log level displays in blue to indicate that it is user-configured.
  • Each child namespace of the logger inherits the log level.

    Note You can manually set any of the child loggers to override this inheritance.

Configure Logging levels: shows level selector for each logger.

All of the loggers with user-configured logging levels go to the top of the list.

Configure Logging levels: shows level selector for each logger.

You can reset log levels by clicking the white dot displayed on the current log level.

Configure Logging levels: shows level selector for each logger.

You can also filter which loggers you see using the Filter Loggers text box.

Configure which loggers are displayed.

Troubleshoot Spring Boot Actuator Integration

This section describes how to troubleshoot common issues with the integration of Apps Manager and Spring Boot Actuator.

/cloudfoundryapplication Failed Request

Symptom

You see the following failed request message in your app logs:

Could not find resource for relative : /cloudfoundryapplication of full path: http://example.com/cloudfoundryapplication

Explanation

Apps Manager uses the /cloudfoundryapplication endpoint as the root for Spring Boot Actuator integrations. It calls this endpoint for an app when you view the app in the Apps Manager UI, regardless of whether you have configured Spring Boot Actuator endpoints for Apps Manager.

Solution

If you are not using the Spring Boot Actuator integrations for Apps Manager, you can ignore this failed request message.

check-circle-line exclamation-circle-line close-line
Scroll to top icon