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: content/en/docs/deployment/mendix-cloud-deploy/monitoring-with-apm/splunk-metrics.md
+10-3Lines changed: 10 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,9 +43,16 @@ To send your runtime information to Splunk Cloud Platform, you need to set it up
43
43
|`SPLUNK_TOKEN`| An access token to the Splunk Cloud Platform. To create a new token on the Splunk Cloud dashboard, open the Splunk Cloud dashboard in a browser, go to **Settings** > **Data Input** > **HTTP Event Collector**, and click **New Token** (on the upper-right corner of the page). ||
44
44
|`LOGS_REDACTION`| Email addresses are automatically redacted before log entries are sent to Splunk Cloud Platform. To disable this redaction, set `LOGS_REDACTION` to `false`. The environment variable `SPLUNK_LOGS_REDACTION` is now deprecated in Cloud Foundry and is not supported for apps with Kubernetes deployment. Its use is not recommended. |`true`|
45
45
|`FLUENTBIT_LOGS_BUFFER_SIZE`| Sets the maximum amount of data (in KB) that the TCP input plugin reads from the socket per read operation. Increasing this value can help to get rid of data flow delay, and errors related to queue buffer overflow. |`128`|
46
-
|`FLUENTBIT_LOGS_MEM_BUF_LIMIT`| Defines the maximum total memory an input plugin can use for buffering log records before they are processed or flushed to storage/output. Limits memory which can be consumed by the Fluentbit agent. |`50MB`|
47
-
|`SPLUNK_ENABLE_METRICS`| Sends application metrics to Splunk when it's set to `true`. Disabled by default. |`false`|
48
-
|`APM_ENABLE_ACCESS_LOGS`| Sends access logs to Splunk when it's set to `true`. Disabled by default. |`false`|
46
+
|`FLUENTBIT_LOGS_MEM_BUF_LIMIT`| Defines the maximum total memory an input plugin can use for buffering log records before they are processed or flushed to storage/output. Limits memory which can be consumed by the Fluentbit agent. |`50MB`|
47
+
|`SPLUNK_ENABLE_METRICS`| Sends application metrics to Splunk when it's set to `true`. Disabled by default. An additional metrics index is also required as explained in below warning panel. |`false`|
48
+
|`APM_ENABLE_ACCESS_LOGS`| Sends access logs to Splunk when it's set to `true`. Disabled by default. |`false`|
49
+
50
+
{{% alert color="warning" %}}
51
+
Splunk Enterprise supports two types of indexes:
52
+
Events indexes. Events indexes impose minimal structure and can accommodate any type of data, including metrics data. Events indexes are the default index type. To get logs, you must use an event index as a default index within your HEC token.
53
+
Metrics indexes. Metrics indexes use a highly structured format to handle the higher volume and lower latency demands associated with metrics data. To get metrics, you must create an index called `mxmetrics` and add it into the allowed indexes list within your HEC token. More details on metrics indexes can be seen at [Splunk docs](https://help.splunk.com/en/splunk-cloud-platform/get-data-in/metrics/9.2.2406/introduction-to-metrics/overview-of-metrics).
54
+
{{% /alert %}}
55
+
49
56
50
57
5. Return to the **Environments** page for your app and **Deploy** or **Transport** your app into the selected environment.
0 commit comments