You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -107,13 +107,13 @@ This is recommended for dev environments only.
107
107
* `HEC_RETRIES`: Retry count for sending events to Splunk. After expiring, events will begin dropping causing data loss. (Default: 5)
108
108
* `HEC_WORKERS`: Set the amount of Splunk HEC workers to increase concurrency while ingesting in Splunk. (Default: 8)
109
109
* `ENABLE_EVENT_TRACING`: Enables event trace logging. Splunk events will now contain a UUID, Splunk Nozzle Event Counts, and a Subscription-ID for Splunk correlation searches. (Default: false)
110
-
* `SPLUNK_LOGGING_INDEX`: The Splunk index where logs from the nozzle of the sourcetype `cf:splunknozzle` will be sent to. Warning: Setting an invalid index will cause events to be lost. This index must match one of the selected indexes for the Splunk HTTP event collector token used for the SPLUNK_TOKEN parameter. When not provided, all logging events will be forwarded to the default SPLUNK_INDEX. The default value is `""`
111
-
* `STATUS_MONITOR_INTERVAL`: Time interval (in s/m/h. For example, 3600s or 60m or 1h) for Enabling Monitoring (Metric data of insights with in the connectors). Default is 0s (Disabled).
110
+
* `SPLUNK_LOGGING_INDEX`: The Splunk index where logs from the nozzle of the sourcetype `cf:splunknozzle` will be sent to. Warning: Setting an invalid index will cause events to be lost. This index must match one of the selected indexes for the Splunk HTTP event collector token used for the SPLUNK_TOKEN parameter. When not provided, all logging events will be forwarded to the default SPLUNK_INDEX. (Default: "")
111
+
* `STATUS_MONITOR_INTERVAL`: Time interval (in s/m/h. For example, 3600s or 60m or 1h) to enable monitoring of metric data within the connector. (This increases CPU load and should be used only for insights purposes. Default: 0s).
112
112
* `SPLUNK_METRIC_INDEX`: Index in which metric data will be ingested when monitoring module is enabled
113
113
* `SELECTED_MONITORING_METRICS`: Name of the metrics that you want to monitor and add using comma seprated values. List of the metrics that are supported in the metrics modules are given below
114
114
* `REFRESH_SPLUNK_CONNECTION`: If set to true, PCF will periodically refresh connection to Splunk (how often depends on KEEP_ALIVE_TIMER value). If set to false connection will be kept alive and reused. (Default: false)
115
115
* `KEEP_ALIVE_TIMER`: Time after which connection to Splunk will be refreshed, if `REFRESH_SPLUNK_CONNECTION` is set to true (in s/m/h. For example, 3600s or 60m or 1h). (Default: 30s)
116
-
* `MEMORY_BALLAST_SIZE`: Size of memory allocated to reduce GC cycles. Size should be less than the total memory. Default is 0.
116
+
* `MEMORY_BALLAST_SIZE`: Size of memory allocated to reduce GC cycles. Size should be less than the total memory. (Default: 0).
117
117
118
118
__About app cache params:__
119
119
@@ -418,7 +418,7 @@ A correct setup logs a start message with configuration parameters of the Nozzle
418
418
skip-ssl: true
419
419
splunk-host: http://localhost:8088
420
420
splunk-index: atomic
421
-
subscription-id: splunk-firehose
421
+
firehose-subscription-id: splunk-firehose
422
422
trace-logging: true
423
423
status-monitor-interval: 0s
424
424
version:
@@ -487,7 +487,7 @@ sourcetype="cf:counterevent"
487
487
488
488
### 7. Nozzle is not collecting any data with 'websocket' (bad handshake) error
489
489
490
-
If the nozzle reports below error, then check if the configured "subscription-id" has '#' as a prefix. Please remove the prefix or prepend any other character than '#' to fix this issue.
490
+
If the nozzle reports below error, then check if the configured "firehose-subscription-id" has '#' as a prefix. Please remove the prefix or prepend any other character than '#' to fix this issue.
491
491
```
492
492
Error dialing trafficcontroller server: websocket: bad handshake.\nPlease ask your Cloud Foundry Operator to check the platform configuration (trafficcontroller is wss://****:443).
Copy file name to clipboardExpand all lines: tile/tile.yml
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -28,11 +28,11 @@ forms:
28
28
- name: splunk_host
29
29
type: string
30
30
label: HTTP Event Collector Endpoint URL
31
-
description: Splunk HTTP Event Collector endpoint URL. It is required parameter.
31
+
description: Splunk HTTP Event Collector endpoint URL. It is a required parameter.
32
32
- name: splunk_token
33
33
type: secret
34
34
label: HTTP Event Collector Token
35
-
description: Splunk HTTP Event Collector token. It is required parameter.
35
+
description: Splunk HTTP Event Collector token. It is a required parameter.
36
36
- name: skip_ssl_validation_splunk
37
37
type: boolean
38
38
label: Skip SSL Validation
@@ -41,12 +41,12 @@ forms:
41
41
- name: splunk_index #It's a required parameter in config.go and doesn't have default, but here it has default value
42
42
type: string
43
43
label: Index
44
-
description: The name of the Splunk index that events will be sent to. It is required parameter. WARNING:Setting an invalid index will cause events to be lost.
44
+
description: The name of the Splunk index that events will be sent to. It is a required parameter. WARNING:Setting an invalid index will cause events to be lost.
45
45
default: main
46
46
- name: splunk_logging_index
47
47
type: string
48
48
label: Logging Index
49
-
description: The name of the Splunk index where logging events will be sent to. When not provided, all logging events will be forwarded to the splunk_index. WARNING:Setting an invalid index will cause events to be lost.
49
+
description: The name of the Splunk index where logging events will be sent to. When not provided, all logging events will be forwarded to the splunk_index. WARNING:Setting an invalid index will cause internal events to be lost.
50
50
default: ""
51
51
optional: true
52
52
@@ -57,15 +57,15 @@ forms:
57
57
- name: api_endpoint
58
58
type: string
59
59
label: API Endpoint
60
-
description: Cloud Foundry API endpoint. It is required parameter.
60
+
description: Cloud Foundry API endpoint. It is a required parameter.
61
61
- name: client_id
62
62
type: string
63
63
label: Client ID
64
-
description: CF UAA Client ID. It is required parameter.
64
+
description: CF UAA Client ID. It is a required parameter.
65
65
- name: client_secret
66
66
type: secret
67
67
label: Client Secret
68
-
description: CF UAA Client Secret. It is required parameter.
68
+
description: CF UAA Client Secret. It is a required parameter.
69
69
- name: skip_ssl_validation_cf
70
70
type: boolean
71
71
label: Skip SSL Validation
@@ -102,7 +102,7 @@ forms:
102
102
- name: scale_out_nozzle
103
103
type: integer
104
104
label: Scale Out Nozzle
105
-
description: Adds more Splunk nozzle components to spread the load. Recommendation:Run 2 or more nozzles for high availability.
105
+
description: Adds more Splunk nozzle instances to spread the load. Recommendation:Run 2 or more nozzles for high availability.
106
106
default: 2
107
107
- name: firehose_subscription_id
108
108
type: string
@@ -160,7 +160,7 @@ forms:
160
160
type: string
161
161
label: Status Monitor Interval
162
162
default: 0s
163
-
description: Time interval (in s/m/h. For example, 3600s or 60m or 1h) for Enabling Monitoring - metric data of insights with in the connectors. (Increases CPU load. Use for insights purposes only) Default is 0s (Disabled).
163
+
description: Time interval (in s/m/h. For example, 3600s or 60m or 1h) to enable monitoring of metric data within the connector. (This increases CPU load and should be used only for insights purposes. Default:0s)
164
164
- name: flush_interval
165
165
type: string
166
166
label: Flush Interval
@@ -180,7 +180,7 @@ forms:
180
180
type: string
181
181
label: Org Space Cache Invalidate TTL
182
182
default: 72h
183
-
description: Time interval (in s/m/h. For example, 3600s or 60m or 1h) between refreshing the organization and space cache. Defaults to 72h.
183
+
description: Time interval (in s/m/h. For example, 3600s or 60m or 1h) between refreshing the organization and space cache. (Default:72h)
184
184
- name: app_limits
185
185
type: integer
186
186
label: App Limits
@@ -189,7 +189,7 @@ forms:
189
189
- name: nozzle_memory
190
190
type: string
191
191
label: Nozzle Memory
192
-
description: Nozzle memory in MB. Default is 256 MB.
192
+
description: Nozzle memory in MB. (Default:256M)
193
193
default: 256M
194
194
- name: firehose_keep_alive
195
195
type: string
@@ -277,7 +277,7 @@ forms:
277
277
type: integer
278
278
label: Memory Ballast Size
279
279
default: 0
280
-
description: Size of memory allocated to reduce GC cycles. Size should be less than the total memory. Default is 0.
280
+
description: Size of memory allocated to reduce GC cycles. Size should be less than the total memory (Default:0).
281
281
282
282
migration: |
283
283
if (typeof properties['properties']['.properties.add_app_info']['value'] == "boolean") {
0 commit comments