Skip to content

Commit ca77455

Browse files
Merge pull request #47 from citrix/mulint
Updated the standalone doc with ADC integration with multiple COE ins…
2 parents 2ca1749 + e5658a5 commit ca77455

1 file changed

Lines changed: 52 additions & 1 deletion

File tree

coe-on-standalone-linux.md

Lines changed: 52 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,55 @@ Perform the following steps to deploy Citrix ADC Observability Exporter on a sta
6161

6262
3. Run the `docker-compose up` command.
6363

64-
Citrix ADC Observability Exporter is deployed and exposed on port 5557 and port 5563 for Citrix ADC transaction data and metrics data respectively.
64+
Citrix ADC Observability Exporter is deployed and exposed on port 5557 and port 5563 for Citrix ADC transaction data and metrics data respectively.
65+
66+
## Integrate Citrix ADC with multiple Citrix ADC Observability Exporter instances manually
67+
68+
You can configure Citrix ADC Observability Exporter manually in Citrix ADC. Manual configuration is suitable for Citrix ADC in MPX and VPX form factors. We recommend deploying the Citrix ADC Observability Exporter in the automated way with the YAML file as described in the preceding sections.
69+
70+
For information about deploying Citrix ADC Observability Exporter (coe-kafka.yaml) and web application (webserver-kafka.yaml), see the preceding sections.
71+
72+
```
73+
enable feature appflow
74+
enable ns mode ULFD
75+
add service COE_svc1 <COE IP1> LOGSTREAM <COE PORT1>
76+
add service COE_svc2 <COE IP2> LOGSTREAM <COE PORT2>
77+
add service COE_svc3 <COE IP3> LOGSTREAM <COE PORT3>
78+
add lb vserver COE LOGSTREAM 0.0.0.0 0
79+
bind lb vserver COE COE_svc1
80+
bind lb vserver COE COE_svc2
81+
bind lb vserver COE COE_svc3
82+
add analytics profile web_profile -collectors COE -type webinsight -httpURL ENABLED -httpHost ENABLED -httpMethod ENABLED -httpUserAgent ENABLED -httpContentType ENABLED
83+
add analytics profile tcp_profile -collectors COE -type tcpinsight
84+
bind lb/cs vserver <WEB-PROXY> -analyticsProfile web_profile
85+
bind lb/cs vserver <WEB-PROXY> -analyticsProfile tcp_profile
86+
87+
# To enable metrics push to prometheus
88+
add service metrichost_SVC <IP> HTTP <PORT>
89+
set analyticsprofile ns_analytics_time_series_profile -collectors metrichost_SVC -metrics ENABLED -outputMode prometheus
90+
91+
```
92+
93+
Add Citrix ADC Observability Exporter using FQDN
94+
95+
```
96+
enable feature appflow
97+
enable ns mode ULFD
98+
add dns nameserver <KUBE-CoreDNS>
99+
add server COEsvr <FQDN>
100+
add servicegroup COEsvcgrp LOGSTREAM -autoScale DNS
101+
bind servicegroup COEsvcgrp COEsvr <PORT>
102+
add lb vserver COE LOGSTREAM 0.0.0.0 0
103+
bind lb vserver COE COEsvcgrp
104+
add analytics profile web_profile -collectors COE -type webinsight -httpURL ENABLED -httpHost ENABLED -httpMethod ENABLED -httpUserAgent ENABLED -httpContentType ENABLED
105+
add analytics profile tcp_profile -collectors COE -type tcpinsight
106+
bind lb vserver <WEB-VSERVER> -analyticsProfile web_profile
107+
bind lb vserver <WEB-VSERVER> -analyticsProfile tcp_profile
108+
109+
# To enable metrics push to prometheus
110+
add service metrichost_SVC <IP> HTTP <PORT>
111+
set analyticsprofile ns_analytics_time_series_profile -collectors metrichost_SVC -metrics ENABLED -outputMode prometheus
112+
113+
```
114+
115+
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).

0 commit comments

Comments
 (0)