CtrlK
BlogDocsLog inGet started
Tessl Logo

giuseppe-trisciuoglio/developer-kit

Comprehensive developer toolkit providing reusable skills for Java/Spring Boot, TypeScript/NestJS/React/Next.js, Python, PHP, AWS CloudFormation, AI/RAG, DevOps, and more.

89

Quality

89%

Does it follow best practices?

Impact

Pending

No eval scenarios have been run

SecuritybySnyk

Risky

Do not use without reviewing

Overview
Quality
Evals
Security
Files

cloud-foundry.mdplugins/developer-kit-java/skills/spring-boot-actuator/references/

Cloud Foundry Support

Spring Boot Actuator includes additional support when you deploy to a compatible Cloud Foundry instance. The /cloudfoundryapplication path provides an alternative secured route to all @Endpoint beans.

Cloud Foundry Configuration

When running on Cloud Foundry, Spring Boot automatically configures:

  • Cloud Foundry-specific health indicators
  • Cloud Foundry application information
  • Secure endpoint access through Cloud Foundry's security model

Basic Configuration

management:
  cloudfoundry:
    enabled: true
  endpoints:
    web:
      exposure:
        include: "*"

Cloud Foundry Health

@Component
public class CloudFoundryHealthIndicator implements HealthIndicator {

    @Override
    public Health health() {
        // Cloud Foundry specific health checks
        return Health.up()
            .withDetail("cloud-foundry", "available")
            .withDetail("instance-index", System.getenv("CF_INSTANCE_INDEX"))
            .withDetail("application-id", System.getenv("VCAP_APPLICATION"))
            .build();
    }
}

Best Practices

  1. Security: Use Cloud Foundry's built-in security for actuator endpoints
  2. Service Binding: Leverage VCAP_SERVICES for automatic configuration
  3. Health Checks: Configure appropriate health endpoints for load balancer checks
  4. Metrics: Export metrics to Cloud Foundry monitoring systems

plugins

developer-kit-java

skills

README.md

CHANGELOG.md

context7.json

CONTRIBUTING.md

README_CN.md

README_ES.md

README_IT.md

README.md

tessl.json

tile.json