<?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 Re: Skyline + VSX:  &amp;quot;OpenTelemetry Components are not up yet&amp;quot; in OpenTelemetry/Skyline</title>
    <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/213435#M360</link>
    <description>&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;I guess my account is not associated with valid support. Do you have any solutions? because in grafana for vsx not showing the data. I already attached screenshot for vsx0, vsx1, and vsx2&lt;/P&gt;</description>
    <pubDate>Tue, 07 May 2024 06:31:52 GMT</pubDate>
    <dc:creator>rizkyw</dc:creator>
    <dc:date>2024-05-07T06:31:52Z</dc:date>
    <item>
      <title>Skyline + VSX:  "OpenTelemetry Components are not up yet"</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/171035#M18</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;we try to use Skyline on R81.10, following sk178566. Our version is&lt;/P&gt;&lt;PRE&gt;Product version Check Point Gaia R81.10&lt;BR /&gt;OS build 335&lt;BR /&gt;OS kernel version 3.10.0-957.21.3cpx86_64&lt;BR /&gt;OS edition 64-bit&lt;/PRE&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Running '/opt/CPotelcol/REST.py --set_open_telemetry "$(cat payload.json)"' throws an&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exception: OpenTelemetry Components are not up yet&lt;/P&gt;&lt;P&gt;This seems to be due to the result from '/opt/CPviewExporter/CPviewExporterCli.sh show':&lt;/P&gt;&lt;PRE&gt;{&lt;BR /&gt;"active_after_reboot":"false",&lt;BR /&gt;"status":"Agents are down"&lt;BR /&gt;}&lt;/PRE&gt;&lt;P&gt;Looking into CPviewExporterCli.sh, we see that the "show" parameter branches into the function product_status_json.&lt;/P&gt;&lt;P&gt;I assume that this function should check each virtual systems (loop over $(vslist) ) and either return "Agents are down", "All agents are up" or "Agents are partially up". To that end,&amp;nbsp; it sets state variables FOUND_ONE_NON_ACTIVE and FOUND_ACTIVE:&lt;/P&gt;&lt;PRE&gt;function product_status_json() {&lt;BR /&gt; for VS in $(vslist); do&lt;BR /&gt;     STAT=$(${COMPONENT_DIR}/otlp_wd.bash -o stat ${VS})&lt;BR /&gt;     FOUND_ONE_NON_ACTIVE=false&lt;BR /&gt;     FOUND_ACTIVE=false&lt;BR /&gt;     if [[ ${STAT} == "Agent is not running" ]]; then&lt;BR /&gt;       FOUND_ONE_NON_ACTIVE=true&lt;BR /&gt;     elif [[ ${STAT} == "Agent is running" ]]; then&lt;BR /&gt;       FOUND_ACTIVE=true&lt;BR /&gt;     fi&lt;BR /&gt;     if ${FOUND_ONE_NON_ACTIVE} &amp;amp;&amp;amp; ${FOUND_ACTIVE}; then&lt;BR /&gt;       RC_EXPORTER="Agents are partially up"&lt;BR /&gt;     elif ${FOUND_ONE_NON_ACTIVE}; then&lt;BR /&gt;       RC_EXPORTER="Agents are down"&lt;BR /&gt;     elif ${FOUND_ACTIVE}; then&lt;BR /&gt;       RC_EXPORTER="All agents are up"&lt;BR /&gt;      else&lt;BR /&gt;        RC_EXPORTER="Unknown"&lt;BR /&gt;     fi&lt;BR /&gt;  done&lt;BR /&gt;&lt;BR /&gt;  echo "{" &lt;BR /&gt;  if [[ $(is_product_active) -eq 1 ]]; then&lt;BR /&gt;    echo -e "\t\"active_after_reboot\":\"true\","&lt;BR /&gt;  else&lt;BR /&gt;    echo -e "\t\"active_after_reboot\":\"false\","&lt;BR /&gt;  fi&lt;BR /&gt;  echo -e "\t\"status\":\"${RC_EXPORTER}\""&lt;BR /&gt;  echo "}"&lt;BR /&gt;}&lt;/PRE&gt;&lt;P&gt;However, the state variables get set to default values &lt;STRONG&gt;inside&lt;/STRONG&gt; the for loop (instead of before), and the evaluation logic setting RC_EXPORTER also runs inside the loop (instead of after). I wonder if this is really intended?&lt;/P&gt;&lt;P&gt;As a consequence, the final result only depends on the VS with the highest number, not on any of the other VSs; and "Agents are partially up" will never be a result.&lt;/P&gt;&lt;P&gt;At least, that is my interpretation... I might also have misunderstood this functions intent or working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In our setup, the highest-numbered VS is a virtual switch for which the test in line 3 of product_status_json()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; otlp_wd.bash -o stat ${VS})&lt;/P&gt;&lt;P&gt;returns "not running", so&amp;nbsp; the above /opt/CPotelcol/REST.py will always fail.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After that lengthy prologue, I wonder:&lt;/P&gt;&lt;P&gt;- Is the above behaviour correct&amp;nbsp; in CPviewExporterCli.sh?&lt;BR /&gt;- Can/should we activate the CpviewExporter agent in the virtual switches?&lt;BR /&gt;- If so, how?&lt;BR /&gt;- or is it safe to modify "CPviewExporterCli.sh show" to always return "All agents are up"?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;Bernhard&lt;/P&gt;</description>
      <pubDate>Fri, 10 Feb 2023 15:48:47 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/171035#M18</guid>
      <dc:creator>Toolmaker</dc:creator>
      <dc:date>2023-02-10T15:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Skyline + VSX:  "OpenTelemetry Components are not up yet"</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/171085#M19</link>
      <description>&lt;P&gt;To confirm the system in question is running Jumbo take 79 or higher? To check run:&lt;/P&gt;
&lt;P&gt;cpinfo -y all&lt;/P&gt;</description>
      <pubDate>Fri, 10 Feb 2023 23:07:57 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/171085#M19</guid>
      <dc:creator>Chris_Atkinson</dc:creator>
      <dc:date>2023-02-10T23:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: Skyline + VSX:  "OpenTelemetry Components are not up yet"</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/171138#M20</link>
      <description>&lt;P&gt;Not sure who is the original code owner, but looks like the logic explained is pretty clear and the code should be revised.&lt;/P&gt;
&lt;P&gt;Looping in &lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/11958"&gt;@Arik_Ovtracht&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 11 Feb 2023 18:03:28 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/171138#M20</guid>
      <dc:creator>JozkoMrkvicka</dc:creator>
      <dc:date>2023-02-11T18:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: Skyline + VSX:  "OpenTelemetry Components are not up yet"</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/171142#M21</link>
      <description>&lt;P&gt;I followed the sk you mentioned using Grafana method and worked fine. I tested this on R81.10 jumbo 87, which is the latest, but as&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/3630"&gt;@Chris_Atkinson&lt;/a&gt;&amp;nbsp;mentioned, have you ensured you are on at least take 79 as indicated in the article?&lt;/P&gt;
&lt;P&gt;Just run cpinfo -y FW1 and it will give you the jumbo version.&lt;/P&gt;
&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Sat, 11 Feb 2023 20:05:57 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/171142#M21</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2023-02-11T20:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Skyline + VSX:  "OpenTelemetry Components are not up yet"</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/171159#M22</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/57763"&gt;@Toolmaker&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;we try to use Skyline on R81.10, following sk178566. Our version is&lt;/P&gt;
&lt;PRE&gt;Product version Check Point Gaia R81.10&lt;BR /&gt;OS build 335&lt;BR /&gt;OS kernel version 3.10.0-957.21.3cpx86_64&lt;BR /&gt;OS edition 64-bit&lt;/PRE&gt;
&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Running '/opt/CPotelcol/REST.py --set_open_telemetry "$(cat payload.json)"' throws an&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exception: OpenTelemetry Components are not up yet&lt;/P&gt;
&lt;P&gt;This seems to be due to the result from '/opt/CPviewExporter/CPviewExporterCli.sh show':&lt;/P&gt;
&lt;PRE&gt;{&lt;BR /&gt;"active_after_reboot":"false",&lt;BR /&gt;"status":"Agents are down"&lt;BR /&gt;}&lt;/PRE&gt;
&lt;P&gt;Looking into CPviewExporterCli.sh, we see that the "show" parameter branches into the function product_status_json.&lt;/P&gt;
&lt;P&gt;I assume that this function should check each virtual systems (loop over $(vslist) ) and either return "Agents are down", "All agents are up" or "Agents are partially up". To that end,&amp;nbsp; it sets state variables FOUND_ONE_NON_ACTIVE and FOUND_ACTIVE:&lt;/P&gt;
&lt;PRE&gt;function product_status_json() {&lt;BR /&gt; for VS in $(vslist); do&lt;BR /&gt;     STAT=$(${COMPONENT_DIR}/otlp_wd.bash -o stat ${VS})&lt;BR /&gt;     FOUND_ONE_NON_ACTIVE=false&lt;BR /&gt;     FOUND_ACTIVE=false&lt;BR /&gt;     if [[ ${STAT} == "Agent is not running" ]]; then&lt;BR /&gt;       FOUND_ONE_NON_ACTIVE=true&lt;BR /&gt;     elif [[ ${STAT} == "Agent is running" ]]; then&lt;BR /&gt;       FOUND_ACTIVE=true&lt;BR /&gt;     fi&lt;BR /&gt;     if ${FOUND_ONE_NON_ACTIVE} &amp;amp;&amp;amp; ${FOUND_ACTIVE}; then&lt;BR /&gt;       RC_EXPORTER="Agents are partially up"&lt;BR /&gt;     elif ${FOUND_ONE_NON_ACTIVE}; then&lt;BR /&gt;       RC_EXPORTER="Agents are down"&lt;BR /&gt;     elif ${FOUND_ACTIVE}; then&lt;BR /&gt;       RC_EXPORTER="All agents are up"&lt;BR /&gt;      else&lt;BR /&gt;        RC_EXPORTER="Unknown"&lt;BR /&gt;     fi&lt;BR /&gt;  done&lt;BR /&gt;&lt;BR /&gt;  echo "{" &lt;BR /&gt;  if [[ $(is_product_active) -eq 1 ]]; then&lt;BR /&gt;    echo -e "\t\"active_after_reboot\":\"true\","&lt;BR /&gt;  else&lt;BR /&gt;    echo -e "\t\"active_after_reboot\":\"false\","&lt;BR /&gt;  fi&lt;BR /&gt;  echo -e "\t\"status\":\"${RC_EXPORTER}\""&lt;BR /&gt;  echo "}"&lt;BR /&gt;}&lt;/PRE&gt;
&lt;P&gt;However, the state variables get set to default values &lt;STRONG&gt;inside&lt;/STRONG&gt; the for loop (instead of before), and the evaluation logic setting RC_EXPORTER also runs inside the loop (instead of after). I wonder if this is really intended?&lt;/P&gt;
&lt;P&gt;As a consequence, the final result only depends on the VS with the highest number, not on any of the other VSs; and "Agents are partially up" will never be a result.&lt;/P&gt;
&lt;P&gt;At least, that is my interpretation... I might also have misunderstood this functions intent or working.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In our setup, the highest-numbered VS is a virtual switch for which the test in line 3 of product_status_json()&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; otlp_wd.bash -o stat ${VS})&lt;/P&gt;
&lt;P&gt;returns "not running", so&amp;nbsp; the above /opt/CPotelcol/REST.py will always fail.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After that lengthy prologue, I wonder:&lt;/P&gt;
&lt;P&gt;- Is the above behaviour correct&amp;nbsp; in CPviewExporterCli.sh?&lt;BR /&gt;- Can/should we activate the CpviewExporter agent in the virtual switches?&lt;BR /&gt;- If so, how?&lt;BR /&gt;- or is it safe to modify "CPviewExporterCli.sh show" to always return "All agents are up"?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks,&lt;/P&gt;
&lt;P&gt;Bernhard&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Hi&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/57763"&gt;@Toolmaker&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;We have found the issue, it seems like this is happening when the last VS has a different status then the ones before it. We will fix the code, and it will be pushed as part of the next version. Out of curiosity, can you expend on why the last VS has a different status then the previous ones?&lt;BR /&gt;&lt;BR /&gt;You can modify the script as follows to fix this issue:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;   for VS in $(vslist); do
     STAT=$(${COMPONENT_DIR}/otlp_wd.bash -o stat ${VS})
     FOUND_ONE_NON_ACTIVE=false
     FOUND_ACTIVE=false
     if [[ ${STAT} == "Agent is not running" ]]; then
       FOUND_ONE_NON_ACTIVE=true
     elif [[ ${STAT} == "Agent is running" ]]; then
       FOUND_ACTIVE=true
     fi
     if ${FOUND_ONE_NON_ACTIVE} &amp;amp;&amp;amp; ${FOUND_ACTIVE}; then
       RC_EXPORTER="Agents are partially up"
     elif ${FOUND_ONE_NON_ACTIVE}; then
       RC_EXPORTER="Agents are down"
     elif ${FOUND_ACTIVE}; then
       RC_EXPORTER="All agents are up"
      else
        RC_EXPORTER="Unknown"
     fi
  done&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Change to:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;  FOUND_ONE_NON_ACTIVE=false
  FOUND_ONE_ACTIVE=false
  for VS in $(vslist); do
    STAT=$(${COMPONENT_DIR}/otlp_wd.bash -o stat ${VS})
    if [[ ${STAT} == "Agent is not running" ]]; then
      FOUND_ONE_NON_ACTIVE=true
    elif [[ ${STAT} == "Agent is running" ]]; then
      FOUND_ONE_ACTIVE=true
    fi
  done
  if ${FOUND_ONE_NON_ACTIVE} &amp;amp;&amp;amp; ${FOUND_ONE_ACTIVE}; then
    RC_EXPORTER="Agents are partially up"
  elif ${FOUND_ONE_NON_ACTIVE}; then
    RC_EXPORTER="Agents are down"
  elif ${FOUND_ONE_ACTIVE}; then
    RC_EXPORTER="All agents are up"
  else
    RC_EXPORTER="Unknown"
  fi&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Feb 2023 11:14:37 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/171159#M22</guid>
      <dc:creator>Elad_Chomsky</dc:creator>
      <dc:date>2023-02-12T11:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: Skyline + VSX:  "OpenTelemetry Components are not up yet"</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/171215#M23</link>
      <description>&lt;P&gt;Take 81:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;[Expert@fw-vsxa-01:0]# cpinfo -y FW1&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT face="courier new,courier"&gt;This is Check Point CPinfo Build 914000231 for GAIA&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;[FW1]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;HOTFIX_R81_10_JUMBO_HF_MAIN Take: 81&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2023 09:36:08 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/171215#M23</guid>
      <dc:creator>Toolmaker</dc:creator>
      <dc:date>2023-02-13T09:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: Skyline + VSX:  "OpenTelemetry Components are not up yet"</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/182468#M191</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;After changing the script, the result went from&lt;BR /&gt;"Agent is not running"&lt;/P&gt;&lt;P&gt;to&amp;nbsp;&lt;BR /&gt;"Agents are partially up"&lt;/P&gt;&lt;P&gt;Which is expected since the vsx environment&amp;nbsp; im testing has VS switches&lt;BR /&gt;&lt;BR /&gt;But&amp;nbsp;/opt/CPotelcol/REST.py&lt;BR /&gt;&lt;BR /&gt;Expects&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"All agents are up"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So&amp;nbsp;"Agents are partially up" doesnt do the job as expected&lt;BR /&gt;&lt;BR /&gt;if len(filter) == 0 or 'exporter' in filter:&lt;BR /&gt;status.append(json.loads(out_cpview_exporter)["status"] == "All agents are up")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nuno&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2023 07:23:23 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/182468#M191</guid>
      <dc:creator>NUNO_C</dc:creator>
      <dc:date>2023-05-30T07:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: Skyline + VSX:  "OpenTelemetry Components are not up yet"</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/182487#M192</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/24249"&gt;@NUNO_C&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please download REST.py from &lt;A href="https://support.checkpoint.com/results/download/126003" target="_self"&gt;here&lt;/A&gt;, (SHA1 should start with '55da7f....', please contact me on &lt;A href="mailto:eladch@checkpoint.com" target="_blank"&gt;eladch@checkpoint.com&lt;/A&gt;, if SHA1 on the website is mismatched ), Replace /opt/CPotelcol/REST.py with it , and retry to run the script. This is a newer version, that is going to be pushed as part of an upcoming &lt;A href="https://support.checkpoint.com/results/sk/sk165653" target="_self"&gt;AutoUpdater&lt;/A&gt; release ( Component name is CPotelcol ).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2023 09:21:27 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/182487#M192</guid>
      <dc:creator>Elad_Chomsky</dc:creator>
      <dc:date>2023-05-30T09:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: Skyline + VSX:  "OpenTelemetry Components are not up yet"</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/183022#M193</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/5970"&gt;@Elad_Chomsky&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;The new REST.py&amp;nbsp; and&amp;nbsp;&lt;SPAN&gt;CPviewExporterCli.sh modification did the job, skyline telemetry working as expected.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If we can get a notification in which take will be added would be great.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;BR /&gt;N&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jun 2023 07:44:34 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/183022#M193</guid>
      <dc:creator>NUNO_C</dc:creator>
      <dc:date>2023-06-02T07:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: Skyline + VSX:  "OpenTelemetry Components are not up yet"</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/211849#M354</link>
      <description>&lt;P&gt;Hi, I cant downlod REST.py file. with below information&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Missing software subscription to download this file.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2024 11:16:31 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/211849#M354</guid>
      <dc:creator>rizkyw</dc:creator>
      <dc:date>2024-04-19T11:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Skyline + VSX:  "OpenTelemetry Components are not up yet"</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/211858#M355</link>
      <description>&lt;P&gt;Do you have an account associated with a valid support contract?&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2024 14:24:08 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/211858#M355</guid>
      <dc:creator>Chris_Atkinson</dc:creator>
      <dc:date>2024-04-19T14:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: Skyline + VSX:  "OpenTelemetry Components are not up yet"</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/212094#M356</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/71869"&gt;@rizo&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please see the official sk, we moved to a new tool ( sklnctl ), please try to see if using it resolves the issue.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2024 14:36:32 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/212094#M356</guid>
      <dc:creator>Elad_Chomsky</dc:creator>
      <dc:date>2024-04-23T14:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: Skyline + VSX:  "OpenTelemetry Components are not up yet"</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/213435#M360</link>
      <description>&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;I guess my account is not associated with valid support. Do you have any solutions? because in grafana for vsx not showing the data. I already attached screenshot for vsx0, vsx1, and vsx2&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2024 06:31:52 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Skyline-VSX-quot-OpenTelemetry-Components-are-not-up-yet-quot/m-p/213435#M360</guid>
      <dc:creator>rizkyw</dc:creator>
      <dc:date>2024-05-07T06:31:52Z</dc:date>
    </item>
  </channel>
</rss>

