<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Skyline on ElasticXL in OpenTelemetry/Skyline</title>
    <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-on-ElasticXL/m-p/281682#M765</link>
    <description>&lt;P&gt;I have a relatively simple Skyline config for my personal ElasticXL lab (R82 jumbo 122 in a 2x2 cluster):&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;[Expert@DallasticXL-s01-01:0]# cat /home/admin/payload.json
{
	"enabled": true,
	"export-targets": {
		"rebase": [
			{
				"enabled": true,
				"name": "internal",
				"type": "prometheus-remote-write",
				"url": "http://10.0.3.23:30104/api/v1/write"
			}
		]
	}
}

[Expert@DallasticXL-s01-01:0]# jq -c . /home/admin/payload.json
{"enabled":true,"export-targets":{"rebase":[{"enabled":true,"name":"internal","type":"prometheus-remote-write","url":"http://10.0.3.23:30104/api/v1/write"}]}}&lt;/LI-CODE&gt;
&lt;P&gt;I go to the &lt;A href="https://sc1.checkpoint.com/documents/Appliances/Skyline/Content/Topics-AG/Configuration-on-Servers-Gaia-OS-Prometheus-with-Grafana.htm?TocPath=Skyline%20Configuration%20on%20Check%20Point%20Servers%20that%20run%20Gaia%20OS%20-%20Prometheus%20with%20Grafana%7C_____4#Step_4_-_Configure_the_OpenTelemetry_Collector_on_the_Check_Point_Server_to_w..." target="_self"&gt;Skyline Administration Guide's&lt;/A&gt; directions for "Step 4 - Configure the OpenTelemetry Collector on the Check Point Server to work with the Prometheus Server" &amp;gt; "Procedure to work with an on-premises Prometheus Server" &amp;gt; "Run the configuration command to apply the payload", and it says to run this for a Scalable Platform Security Group:&lt;/P&gt;
&lt;P&gt;g_all sklnctl export --set "$(cat /home/admin/payload.json)"&lt;/P&gt;
&lt;P&gt;But when I run it, it definitely doesn't work:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;[Expert@DallasticXL-s01-01:0]# g_all sklnctl export --set "$(cat /home/admin/payload.json)"
sklnctl export --set {{
	"enabled": true,
	"export-targets": {
		"rebase": [
			{
				"enabled": true,
				"name": "internal",
				"type": "prometheus-remote-write",
				"url": "http://10.0.3.23:30104/api/v1/write"
			}
		]
	}
}}: command not found

[Expert@DallasticXL-s01-01:0]# g_all sklnctl export --set "$(jq -c . /home/admin/payload.json)"
sklnctl export --set {{"enabled":true,"export-targets":{"rebase":[{"enabled":true,"name":"internal","type":"prometheus-remote-write","url":"http://10.0.3.23:30104/api/v1/write"}]}}}: command not found&lt;/LI-CODE&gt;
&lt;P&gt;It's obviously running the command substitution before running the g_all, so I also tried this to get it to pass the command verbatim to the other members:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;[Expert@DallasticXL-s01-01:0]# g_all sklnctl export --set "\$(jq -c . /home/admin/payload.json)"
1_01:
Error: invalid character '{' looking for beginning of object key string
1_02:
Error: invalid character '{' looking for beginning of object key string
2_01:
Error: invalid character '{' looking for beginning of object key string
2_02:
Error: invalid character '{' looking for beginning of object key string

[Expert@DallasticXL-s01-01:0]# g_all sklnctl export --set '$(jq -c . /home/admin/payload.json)'
1_01:
Error: invalid character '{' looking for beginning of object key string
1_02:
Error: invalid character '{' looking for beginning of object key string
2_01:
Error: invalid character '{' looking for beginning of object key string
2_02:
Error: invalid character '{' looking for beginning of object key string&lt;/LI-CODE&gt;
&lt;P&gt;For now, I can just move to each member and run the 'sklnctl export --set "$(cat /home/admin/payload.json)"' command by hand. It's just annoying.&lt;/P&gt;
&lt;P&gt;Since the command in the documentation doesn't work, how should this be done using g_all?&lt;/P&gt;</description>
    <pubDate>Mon, 31 Aug 2026 15:29:15 GMT</pubDate>
    <dc:creator>Bob_Zimmerman</dc:creator>
    <dc:date>2026-08-31T15:29:15Z</dc:date>
    <item>
      <title>Skyline on ElasticXL</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-on-ElasticXL/m-p/281682#M765</link>
      <description>&lt;P&gt;I have a relatively simple Skyline config for my personal ElasticXL lab (R82 jumbo 122 in a 2x2 cluster):&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;[Expert@DallasticXL-s01-01:0]# cat /home/admin/payload.json
{
	"enabled": true,
	"export-targets": {
		"rebase": [
			{
				"enabled": true,
				"name": "internal",
				"type": "prometheus-remote-write",
				"url": "http://10.0.3.23:30104/api/v1/write"
			}
		]
	}
}

[Expert@DallasticXL-s01-01:0]# jq -c . /home/admin/payload.json
{"enabled":true,"export-targets":{"rebase":[{"enabled":true,"name":"internal","type":"prometheus-remote-write","url":"http://10.0.3.23:30104/api/v1/write"}]}}&lt;/LI-CODE&gt;
&lt;P&gt;I go to the &lt;A href="https://sc1.checkpoint.com/documents/Appliances/Skyline/Content/Topics-AG/Configuration-on-Servers-Gaia-OS-Prometheus-with-Grafana.htm?TocPath=Skyline%20Configuration%20on%20Check%20Point%20Servers%20that%20run%20Gaia%20OS%20-%20Prometheus%20with%20Grafana%7C_____4#Step_4_-_Configure_the_OpenTelemetry_Collector_on_the_Check_Point_Server_to_w..." target="_self"&gt;Skyline Administration Guide's&lt;/A&gt; directions for "Step 4 - Configure the OpenTelemetry Collector on the Check Point Server to work with the Prometheus Server" &amp;gt; "Procedure to work with an on-premises Prometheus Server" &amp;gt; "Run the configuration command to apply the payload", and it says to run this for a Scalable Platform Security Group:&lt;/P&gt;
&lt;P&gt;g_all sklnctl export --set "$(cat /home/admin/payload.json)"&lt;/P&gt;
&lt;P&gt;But when I run it, it definitely doesn't work:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;[Expert@DallasticXL-s01-01:0]# g_all sklnctl export --set "$(cat /home/admin/payload.json)"
sklnctl export --set {{
	"enabled": true,
	"export-targets": {
		"rebase": [
			{
				"enabled": true,
				"name": "internal",
				"type": "prometheus-remote-write",
				"url": "http://10.0.3.23:30104/api/v1/write"
			}
		]
	}
}}: command not found

[Expert@DallasticXL-s01-01:0]# g_all sklnctl export --set "$(jq -c . /home/admin/payload.json)"
sklnctl export --set {{"enabled":true,"export-targets":{"rebase":[{"enabled":true,"name":"internal","type":"prometheus-remote-write","url":"http://10.0.3.23:30104/api/v1/write"}]}}}: command not found&lt;/LI-CODE&gt;
&lt;P&gt;It's obviously running the command substitution before running the g_all, so I also tried this to get it to pass the command verbatim to the other members:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;[Expert@DallasticXL-s01-01:0]# g_all sklnctl export --set "\$(jq -c . /home/admin/payload.json)"
1_01:
Error: invalid character '{' looking for beginning of object key string
1_02:
Error: invalid character '{' looking for beginning of object key string
2_01:
Error: invalid character '{' looking for beginning of object key string
2_02:
Error: invalid character '{' looking for beginning of object key string

[Expert@DallasticXL-s01-01:0]# g_all sklnctl export --set '$(jq -c . /home/admin/payload.json)'
1_01:
Error: invalid character '{' looking for beginning of object key string
1_02:
Error: invalid character '{' looking for beginning of object key string
2_01:
Error: invalid character '{' looking for beginning of object key string
2_02:
Error: invalid character '{' looking for beginning of object key string&lt;/LI-CODE&gt;
&lt;P&gt;For now, I can just move to each member and run the 'sklnctl export --set "$(cat /home/admin/payload.json)"' command by hand. It's just annoying.&lt;/P&gt;
&lt;P&gt;Since the command in the documentation doesn't work, how should this be done using g_all?&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2026 15:29:15 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-on-ElasticXL/m-p/281682#M765</guid>
      <dc:creator>Bob_Zimmerman</dc:creator>
      <dc:date>2026-08-31T15:29:15Z</dc:date>
    </item>
  </channel>
</rss>

