项目作者: wavefrontHQ

项目描述 :
Wavefront Cloud Foundry (Spring Boot) Sample Application
高级语言: Java
项目地址: git://github.com/wavefrontHQ/cloud-foundry-sampleapp.git
创建时间: 2017-08-07T22:34:42Z
项目社区:https://github.com/wavefrontHQ/cloud-foundry-sampleapp

开源协议:

下载


Warning

This repository is no longer maintained.

Wavefront Cloud Foundry Sample Spring Boot Application

This project describes how to send application metrics from a Spring Boot app running in PCF to a Wavefront proxy.

Requirements

Wavefront Proxy

The rest of this document assumes the wavefront proxy service instance provisioned in PCF is called wfproxy-service. Replace the service name accordingly if different.

Application Manifest

A manifest.yml file is used to provide parameters to a PCF application. The developer needs to identify the wavefront proxy running in PCF and add it to the manifest file.

Here is a sample manifest file:

  1. ---
  2. services:
  3. - wfproxy-service

Maven pom.xml File

Update the Maven pom.xml file to include the wavefrontHQ public repositories and dependencies dropwizard-metrics-3.1. It should also include spring-boot-maven-plugin and maven-shade-plugin.

Parse VCAP_SERVICES

The VCAP_SERVICES present in the manifest file (or externally bound to the application using cf bind-services ... command) are passed to the application as environment variable. It is parsed to retrieve the wavefront-proxy hostname and port:

  1. VCAP_SERVICES =
  2. {
  3. "wavefront-proxy": [
  4. {
  5. "credentials": {
  6. "hostname": "10.202.1.15",
  7. "port": 2878
  8. },
  9. "syslog_drain_url": null,
  10. "volume_mounts": [],
  11. "label": "wavefront-proxy",
  12. "provider": null,
  13. "plan": "standard",
  14. "name": "wfproxy-service",
  15. "tags": [
  16. "wavefront",
  17. "metrics"
  18. ]
  19. }
  20. ]
  21. }

Send metrics from the application

Most of the sample code is present in the MetricSystem.java file. It determines all the metrics to be reported and adds them to the metricRegistry. The WavefrontReporter is then used to send the metrics to the proxy.

  1. WavefrontReporter wfReporter = WavefrontReporter.forRegistry(metricRegistry)
  2. .withSource("springboot")
  3. .prefixedWith("pcf")
  4. .bindToCloudFoundryService("wavefront-proxy", true);
  5. wfReporter.start(10, TimeUnit.SECONDS);

The wavefront-proxy is the name of the wavefront proxy service running in PCF. The Wavefront
tile should be used to install the wavefront proxy service. Once the tile is installed, the
default name of the wavefront proxy service will be wavefront-proxy.

There are additional overloaded methods available in WavefrontReporter class, which can be used
to bind to wavefront proxy (e.g., bindToCloudFoundryService()).

Build and push the application

  1. mvn clean install -DskipTests
  2. cf login -a <pcf-api-url> --skip-ssl-validation --sso
  3. cf push wavefront-sample-app -f src/main/resources/manifest.yml -p target/springboot-0.0.1-SNAPSHOT.jar
  4. cf logs wavefront-sample-app --recent

If the manifest does not have wavefront-proxy service info, then the service can be bound to it
later using the following commands:

  1. cf bind-service wavefront-sample-app wfproxy-service
  2. cf restage wavefront-sample-app