<?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: Custom http Header for Export and HTTPS without authentication (Grafana Mimir Prometheus) in OpenTelemetry/Skyline</title>
    <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Custom-http-Header-for-Export-and-HTTPS-without-authentication/m-p/209585#M344</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/6901"&gt;@Alexander_Wilke&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For now it is an exclusive list - so it is only possible to use one, you can open an official RFE request for CheckPoint, and we will try to see how we include it as part of our roadmap.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 25 Mar 2024 09:24:59 GMT</pubDate>
    <dc:creator>Elad_Chomsky</dc:creator>
    <dc:date>2024-03-25T09:24:59Z</dc:date>
    <item>
      <title>Custom http Header for Export and HTTPS without authentication (Grafana Mimir Prometheus)</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Custom-http-Header-for-Export-and-HTTPS-without-authentication/m-p/209533#M340</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I deployed Grafana Mimir which is a scalable Prometheus solution with multi Tenancy Support .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To send metrics via Skyline to Mimir in Prometheus Format I have 2 Features I need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. TLS encrypted Connection but without any authentication. No Basic auth, No Client cert. Only unautheticated but TLS encrypted Traffic.&lt;/P&gt;
&lt;P&gt;2. I need to add at least one Custom Header named "X-Scope-OrgId" which is the Indikator for Grafana Mimir to Route These metrics to the correct tenant.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://grafana.com/docs/mimir/latest/manage/secure/authentication-and-authorization/" target="_blank"&gt;https://grafana.com/docs/mimir/latest/manage/secure/authentication-and-authorization/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;At the moment I send all Skyline metrics to a Prometheus Server and then do remote_write to Grafana Mimir encrypted, without authentication and I add my Custom X-Scope-OrgId http Header.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it possible with the latest Version to add a http Header and If yes how to do it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Same for TLS without any authentication.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Mar 2024 11:44:32 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Custom-http-Header-for-Export-and-HTTPS-without-authentication/m-p/209533#M340</guid>
      <dc:creator>Alexander_Wilke</dc:creator>
      <dc:date>2024-03-24T11:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: Custom http Header for Export and HTTPS without authentication (Grafana Mimir Prometheus)</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Custom-http-Header-for-Export-and-HTTPS-without-authentication/m-p/209546#M341</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/6901"&gt;@Alexander_Wilke&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You can use the following payload template to use a custom header instead of basic authentication.&amp;nbsp;&lt;/P&gt;
&lt;PRE class="code"&gt;{
  "enabled": true,
  "export-targets": {
    "add/remove": [
      {
        "client-auth": {
          "token": {
            "custom-header": {
              "key": "Header",
              "value": "Value"
            }
          }
        },
        "enabled": false,
        "server-auth": {
          "ca-public-key": {
            "type": "PEM-X509",
            "value": "-----BEGIN CERTIFICATE-----BASE64TEXTHERE-----END CERTIFICATE-----"
          }
        },
        "type": "prometheus-remote-write",
        "url": "https://example.com/api/v1/write"
      }
    ]
  }
}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Mar 2024 18:14:03 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Custom-http-Header-for-Export-and-HTTPS-without-authentication/m-p/209546#M341</guid>
      <dc:creator>Elad_Chomsky</dc:creator>
      <dc:date>2024-03-24T18:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: Custom http Header for Export and HTTPS without authentication (Grafana Mimir Prometheus)</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Custom-http-Header-for-Export-and-HTTPS-without-authentication/m-p/209571#M342</link>
      <description>&lt;P&gt;Hello&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;thanks you for your reply. I will give this a try. As an additional question, can this payload be extended bei Basic_Auth username and password? So Username/Password (BasicAuth), TLS and Custom-Header?&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2024 06:53:49 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Custom-http-Header-for-Export-and-HTTPS-without-authentication/m-p/209571#M342</guid>
      <dc:creator>Alexander_Wilke</dc:creator>
      <dc:date>2024-03-25T06:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: Custom http Header for Export and HTTPS without authentication (Grafana Mimir Prometheus)</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Custom-http-Header-for-Export-and-HTTPS-without-authentication/m-p/209585#M344</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/6901"&gt;@Alexander_Wilke&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For now it is an exclusive list - so it is only possible to use one, you can open an official RFE request for CheckPoint, and we will try to see how we include it as part of our roadmap.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2024 09:24:59 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Custom-http-Header-for-Export-and-HTTPS-without-authentication/m-p/209585#M344</guid>
      <dc:creator>Elad_Chomsky</dc:creator>
      <dc:date>2024-03-25T09:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: Custom http Header for Export and HTTPS without authentication (Grafana Mimir Prometheus)</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Custom-http-Header-for-Export-and-HTTPS-without-authentication/m-p/222712#M432</link>
      <description>&lt;P&gt;Did it work ?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2024 09:29:35 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Custom-http-Header-for-Export-and-HTTPS-without-authentication/m-p/222712#M432</guid>
      <dc:creator>ww1m6</dc:creator>
      <dc:date>2024-08-05T09:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: Custom http Header for Export and HTTPS without authentication (Grafana Mimir Prometheus)</title>
      <link>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Custom-http-Header-for-Export-and-HTTPS-without-authentication/m-p/226698#M469</link>
      <description>&lt;P&gt;No, it did not work for me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need "Basic Auth" + "TLS" + "Custom Headers" (for Grafana Mimir as Prometheus replacement.). Or best option would be to do a variation of these options. Basic Auth (on/off), TLS (on/off/verify/skip_tls_verify), "Custom Header(s) / Custom values" e.g. (X-Scope-OrgID:"tenant01|tenant02"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And as&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/5970"&gt;@Elad_Chomsky&lt;/a&gt;&amp;nbsp;said it is exclusive - basic auth OR custom header - however it does not seem to work in the needed combination.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I asked my Presales to open an RfE for that but not sure if he did already and which progress the RfE has.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Sep 2024 06:41:56 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/OpenTelemetry-Skyline/Custom-http-Header-for-Export-and-HTTPS-without-authentication/m-p/226698#M469</guid>
      <dc:creator>Alexander_Wilke</dc:creator>
      <dc:date>2024-09-16T06:41:56Z</dc:date>
    </item>
  </channel>
</rss>

