Skip to content

Commit dfaff5e

Browse files
authored
Merge pull request #55 from citrix/prometheus-fix
updated the splunk file with server url example
2 parents 043a6e6 + 57f7a81 commit dfaff5e

1 file changed

Lines changed: 38 additions & 1 deletion

File tree

docs/deploy-coe-with-splunk.md

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,44 @@ The following is a sample application deployment procedure.
6565

6666
## Deploy Citrix ADC Observability Exporter using the YAML file
6767

68-
You can deploy Citrix ADC Observability Exporter using the YAML file. Download the YAML file from [coe-splunk.yaml](https://raw.githubusercontent.com/citrix/citrix-observability-exporter/master/examples/splunk/coe-splunk.yaml). Ensure to specify the Splunk server address for the right namespace.
68+
You can deploy Citrix ADC Observability Exporter using the YAML file. Download the YAML file from [coe-splunk.yaml](https://raw.githubusercontent.com/citrix/citrix-observability-exporter/master/examples/splunk/coe-splunk.yaml). Ensure to specify the Splunk server address for the right namespace by editing the `coe-splunk.yaml` file.
69+
70+
Following is an example of how to specify the `ServerUrl` in the `lstreamd_default.conf` section in the `coe-splunk.yaml` file . Here, `ServerUrl` means the address of the Splunk server.
71+
72+
```
73+
lstreamd_default.conf: |
74+
{
75+
"Endpoints": {
76+
"SPLUNK": {
77+
"ServerUrl": "http://10.102.34.155:8088",
78+
"AuthToken": "",
79+
"Index": "",
80+
"RecordType": {
81+
"HTTP": "all",
82+
"TCP": "all",
83+
"SWG": "all",
84+
"VPN": "all",
85+
"NGS": "all",
86+
"ICA": "all",
87+
"APPFW": "none",
88+
"BOT": "all",
89+
"VIDEOOPT": "none",
90+
"BURST_CQA": "none",
91+
"SLA": "none",
92+
"MONGO": "none"
93+
},
94+
"TimeSeries": {
95+
"EVENTS": "yes",
96+
"AUDITLOGS": "yes"
97+
},
98+
"ProcessAlways": "no",
99+
"ProcessYieldTimeOut": "500",
100+
"MaxConnections": "512",
101+
"JsonFileDump": "no"
102+
}
103+
}
104+
}
105+
```
69106

70107
**Note**: While deploying Citrix ADC Observability Exporter using the YAML file, along with the Splunk server address, you can provide the `Index` name to which the data to be sent in Splunk Enterprise. By default, this `IndexPrefix` option is empty and the data is uploaded to the default index, that is `main`, in Splunk Enterprise.
71108

0 commit comments

Comments
 (0)