Skip to content

Commit 1e1aa1e

Browse files
committed
Fix core file generation path
1 parent 2c8207c commit 1e1aa1e

10 files changed

Lines changed: 10 additions & 10 deletions

coe-on-standalone-linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Perform the following steps to deploy Citrix ADC Observability Exporter on a sta
2525
privileged: true
2626
volumes:
2727
- ./lstreamd_default.conf:/var/logproxy/lstreamd/conf/lstreamd_default.conf:rw
28-
- ./cores/:/cores/:rw
28+
- ./var/crash/:/var/crash/:rw
2929
```
3030
3131
**Note:** Currently the image tag `quay.io/citrix/citrix-observability-exporter:latest` corresponds to Citrix ADC Observability Exporter version 1.2.001 and not 1.4.001.

docs/coe-troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This document explains how to troubleshoot issues that you may encounter while u
4141

4242
If Citrix ADC Observability Exporter fails, you can collect logs available at the following location and contact Citrix Support.
4343

44-
/cores/ (Loation of coredump files, if any.)
44+
/var/crash/ (Loation of coredump files, if any.)
4545
/var/ulflog/ (Location of `libulfd` logs and counter details.)
4646
/var/log (Location of console logs, lstreamd logs and so on.)
4747

docs/deploy-coe-with-Kafka.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ To edit the YAML file for the required changes, perform the following steps:
155155
mountPath: /var/logproxy/lstreamd/conf/lstreamd_default.conf
156156
subPath: lstreamd_default.conf
157157
- name: core-data
158-
mountPath: /cores/
158+
mountPath: /var/crash/
159159
volumes:
160160
- name: lstreamd-config-kafka
161161
configMap:

docs/deploy-coe-with-es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ To verify if Citrix ADC sends application data logs to Citrix ADC Observability
213213

214214
If Citrix ADC Observability Exporter fails, you can collect logs and files available at the following location and contact Citrix Support.
215215

216-
/cores/ (Loation of the coredump files, if any.)
216+
/var/crash/ (Loation of the coredump files, if any.)
217217
/var/ulflog/ (Location of the `libulfd` logs and counter details.)
218218
/var/log (Location of the console logs, lstreamd logs and so on.)
219219

examples/elasticsearch/coe-es-mongodb.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ spec:
6767
mountPath: /var/logproxy/lstreamd/conf/lstreamd_default.conf
6868
subPath: lstreamd_default.conf
6969
- name: core-data
70-
mountPath: /cores/
70+
mountPath: /var/crash/
7171
volumes:
7272
- name: lstreamd-config-es
7373
configMap:

examples/elasticsearch/coe-es-prometheus.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ spec:
7474
mountPath: /var/logproxy/lstreamd/conf/lstreamd_default.conf
7575
subPath: lstreamd_default.conf
7676
- name: core-data
77-
mountPath: /cores/
77+
mountPath: /var/crash/
7878
volumes:
7979
- name: lstreamd-config-es
8080
configMap:

examples/elasticsearch/coe-es.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ spec:
6767
mountPath: /var/logproxy/lstreamd/conf/lstreamd_default.conf
6868
subPath: lstreamd_default.conf
6969
- name: core-data
70-
mountPath: /cores/
70+
mountPath: /var/crash/
7171
volumes:
7272
- name: lstreamd-config-es
7373
configMap:

examples/kafka/coe-kafka.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ spec:
7474
mountPath: /var/logproxy/lstreamd/conf/lstreamd_default.conf
7575
subPath: lstreamd_default.conf
7676
- name: core-data
77-
mountPath: /cores/
77+
mountPath: /var/crash/
7878
volumes:
7979
- name: lstreamd-config-kafka
8080
configMap:

examples/prometheus/coe-prometheus.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ spec:
4444
mountPath: /var/logproxy/lstreamd/conf/lstreamd_default.conf
4545
subPath: lstreamd_default.conf
4646
- name: core-data
47-
mountPath: /cores/
47+
mountPath: /var/crash/
4848
volumes:
4949
- name: lstreamd-config-prometheus
5050
configMap:

examples/tracing/coe-zipkin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ spec:
5858
mountPath: /var/logproxy/lstreamd/conf/lstreamd_default.conf
5959
subPath: lstreamd_default.conf
6060
- name: core-data
61-
mountPath: /cores/
61+
mountPath: /var/crash/
6262
volumes:
6363
- name: lstreamd-config-zipkin
6464
configMap:

0 commit comments

Comments
 (0)