Hi @Arik_Ovtracht,
I am currently working on deploying Skyline based on sk178566. However, I am facing an issue with adding multiple export targets to the config file.
Please take a look at my current payload-tls.json:
{
"enabled": true,
"export-targets": {"add": [
{
"client-auth": {
"basic": {
"username": "checkpoint",
"password": "<PASSWORD>"
}
},
"enabled": true,
"server-auth": {
"ca-public-key": {
"type": "PEM-X509",
"value":"<CERT>"
}
},
"type": "prometheus-remote-write",
"url": "https://u40.prometheus-collector.service.rockset-s.local/api/v1/write"
},
{
"client-auth": {
"basic": {
"username": "checkpoint",
"password": "<PASSWORD>"
}
},
"enabled": true,
"server-auth": {
"ca-public-key": {
"type": "PEM-X509",
"value":"<CERT>"
}
},
"type": "prometheus-remote-write",
"url": "https://m7.prometheus-collector.service.rockset-s.local/api/v1/write"
}
]}
}
Additionally, the output of the "/opt/CPotelcol/GetOTDynamicConfig.sh" command shows that only the last export target is being displayed. The output is as follows:
{"exporters": {"prometheusremotewrite": {"tls": {"ca_file": "/opt/CPotelcol/certs/ca-bundle.crt"}, "headers": {"Authorization": "Basic "}, "endpoint": "https://m7.prometheus-collector.service.rockset-s.local/api/v1/write"}}, "service": {"pipelines": {"metrics": {"exporters": ["prometheusremotewrite"]}}}}
I am wondering if there is an error in my Skyline json configuration.
I would greatly appreciate any advice or suggestions you may have regarding this issue.