Skip to content

Commit d442261

Browse files
authored
Merge pull request #60 from citrix/coe-release-1.6.001
COE Release 1.6.001
2 parents b7c7a2e + 2111447 commit d442261

18 files changed

Lines changed: 34 additions & 32 deletions

coe-on-standalone-linux.md

Lines changed: 2 additions & 2 deletions
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+
- ./cores:/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.
@@ -165,4 +165,4 @@ set analyticsprofile ns_analytics_time_series_profile -collectors metrichost_SVC
165165

166166
```
167167
168-
For information on troubleshooting related to Citrix ADC Observability Exporter, see [Citrix ADC CPX troubleshooting](https://docs.citrix.com/en-us/citrix-adc-cpx/current-release/cpx-troubleshooting.html).
168+
For information on troubleshooting related to Citrix ADC Observability Exporter, see [Citrix ADC CPX troubleshooting](https://docs.citrix.com/en-us/citrix-adc-cpx/current-release/cpx-troubleshooting.html).

deployment/coe-es-mongodb.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ spec:
5757
spec:
5858
containers:
5959
- name: coe-es
60-
image: "quay.io/citrix/citrix-observability-exporter:1.5.001"
60+
image: "quay.io/citrix/citrix-observability-exporter:1.6.001"
6161
imagePullPolicy: Always
6262
ports:
6363
- containerPort: 5557
@@ -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:

deployment/coe-es-prometheus.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ spec:
6060
spec:
6161
containers:
6262
- name: coe-es
63-
image: "quay.io/citrix/citrix-observability-exporter:1.5.001"
63+
image: "quay.io/citrix/citrix-observability-exporter:1.6.001"
6464
imagePullPolicy: Always
6565
securityContext:
6666
privileged: true
@@ -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:

deployment/coe-es.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ spec:
5757
spec:
5858
containers:
5959
- name: coe-es
60-
image: "quay.io/citrix/citrix-observability-exporter:1.5.001"
60+
image: "quay.io/citrix/citrix-observability-exporter:1.6.001"
6161
imagePullPolicy: Always
6262
ports:
6363
- containerPort: 5557
@@ -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:

deployment/coe-kafka.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ data:
99
"KAFKA": {
1010
"ServerUrl": "X.X.X.X:9092",
1111
"KafkaTopic": "HTTP",
12+
"DataFormat": "AVRO",
1213
"RecordType": {
1314
"HTTP": "all",
1415
"TCP": "all",
@@ -63,7 +64,7 @@ spec:
6364
- "kafka-node3"
6465
containers:
6566
- name: coe-kafka
66-
image: "quay.io/citrix/citrix-observability-exporter:1.5.001"
67+
image: "quay.io/citrix/citrix-observability-exporter:1.6.001"
6768
imagePullPolicy: Always
6869
ports:
6970
- containerPort: 5557
@@ -73,7 +74,7 @@ spec:
7374
mountPath: /var/logproxy/lstreamd/conf/lstreamd_default.conf
7475
subPath: lstreamd_default.conf
7576
- name: core-data
76-
mountPath: /cores/
77+
mountPath: /var/crash/
7778
volumes:
7879
- name: lstreamd-config-kafka
7980
configMap:

deployment/coe-prometheus.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
spec:
3333
containers:
3434
- name: coe-prometheus
35-
image: "quay.io/citrix/citrix-observability-exporter:1.5.001"
35+
image: "quay.io/citrix/citrix-observability-exporter:1.6.001"
3636
imagePullPolicy: Always
3737
securityContext:
3838
privileged: true
@@ -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:

deployment/coe-splunk.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ spec:
6363
spec:
6464
containers:
6565
- name: coe-splunk
66-
image: "quay.io/citrix/citrix-observability-exporter:1.5.001"
66+
image: "quay.io/citrix/citrix-observability-exporter:1.6.001"
6767
imagePullPolicy: Always
6868
ports:
6969
- containerPort: 5557
@@ -75,7 +75,7 @@ spec:
7575
mountPath: /var/logproxy/lstreamd/conf/lstreamd_default.conf
7676
subPath: lstreamd_default.conf
7777
- name: core-data
78-
mountPath: /cores/
78+
mountPath: /var/crash/
7979
volumes:
8080
- name: lstreamd-config-splunk
8181
configMap:

deployment/coe-zipkin.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ spec:
4646
spec:
4747
containers:
4848
- name: coe-zipkin
49-
image: "quay.io/citrix/citrix-observability-exporter:1.5.001"
49+
image: "quay.io/citrix/citrix-observability-exporter:1.6.001"
5050
imagePullPolicy: Always
5151
securityContext:
5252
privileged: true
@@ -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:

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:

0 commit comments

Comments
 (0)