forked from vmware-archive/cloud-foundry-nozzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.yml
32 lines (32 loc) · 1.27 KB
/
manifest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
applications:
- name: wavefront-firehose-nozzle
instances: 1
memory: 2G
no-route: true
health-check-type: process
path: <ReplaceMe with path to the wavefront-nozzle JAR>
buildpack: https://github.com/cloudfoundry/java-buildpack.git
env:
# Reactor HTTP client settings
JAVA_OPTS: '-Dreactor.ipc.netty.pool.maxConnections=32'
# PCF properties
# Replace the values below
pcf.host: <ReplaceMe with PCF FQDN. Example: api.local.pcfdev.io>
pcf.user: <ReplaceMe>
pcf.password: <ReplaceMe>
pcf.skipSslValidation: <ReplaceMe with either true|false>
# Firehose properties
# Replace the values below
# Valid firehose event types - { COUNTER_EVENT, VALUE_METRIC, CONTAINER_METRIC, ERROR, HTTP_START_STOP, LOG_MESSAGE }
pcf.firehose.eventTypes: <Replace me with one or more values from above list. Example: COUNTER_EVENT, VALUE_METRIC>
# Choose a value between 1 and 8 inclusive. Default to 4
pcf.firehose.parallelism: 4
pcf.firehose.subscriptionId: firehose-to-wavefront-proxy
# PCF AppInfo properties
pcf.appInfo.fetchAppInfo: true
pcf.appInfo.appInfoCacheSize: 5000
pcf.appInfo.cacheExpireIntervalHours: 6
# Wavefront-Proxy properties
wavefront.proxy.hostname: <ReplaceMe>
wavefront.proxy.port: <ReplaceMe>