<?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: PRO TIP - Business hours in Dynatrace for SLOs or metric events in Custom Solutions Spotlight</title>
    <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/246176#M163</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/3364"&gt;@Julius_Loman&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;You are so inspiring !&amp;nbsp;I have created my own python extension to create the custom metric but I use declarative endpoints with a specific format :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AurelienGravier_1-1716285184703.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/19997i63033E3B8BB7ECC3/image-size/large?v=v2&amp;amp;px=999" role="button" title="AurelienGravier_1-1716285184703.png" alt="AurelienGravier_1-1716285184703.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I'm encountering a limitation when I define a new business opening hours, I have to wait 1 month before use it in my SLO definition otherwise my SLO is null before the custom metric dimension creation.&lt;/P&gt;&lt;P&gt;Did you experiment the same behaviour with your extension ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;BR /&gt;Regards Aurelien.&lt;/P&gt;</description>
    <pubDate>Tue, 21 May 2024 10:13:34 GMT</pubDate>
    <dc:creator>AurelienGravier</dc:creator>
    <dc:date>2024-05-21T10:13:34Z</dc:date>
    <item>
      <title>PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/240367#M153</link>
      <description>&lt;P&gt;It's quite common you don't provide your services 24x7, but you will run them also during non-business hours. Until business hours or business calendar features land into the Dynatrace product natively, it's possible to have a simple solution.&lt;BR /&gt;&lt;BR /&gt;My approach below works for both Dynatrace Managed and SaaS.&lt;BR /&gt;&lt;BR /&gt;For this feature, we will introduce a new metric - in this example &lt;STRONG&gt;business_hours&lt;/STRONG&gt; which will provide just static values:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;1&lt;/STRONG&gt; during business hours&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;no value&lt;/STRONG&gt; outside of business hours&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;value between 0 and 1&lt;/STRONG&gt; to decrease priorities during "low business hours" (if applicable to your case)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Of course, in your environment you probably have different business hours for different services, thus you will likely need to have a dimension for it, such as level (24x7, 10x5, etc... ). See example below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Julius_Loman_0-1715850578739.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/19894i76C6A1F33DF05884/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Julius_Loman_0-1715850578739.png" alt="Julius_Loman_0-1715850578739.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, values for an &lt;STRONG&gt;8x5&lt;/STRONG&gt; service level will look like this - a value of &lt;STRONG&gt;1&lt;/STRONG&gt;&amp;nbsp;between 9:00 and 17:00 for each day and no value outside these times.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Julius_Loman_2-1715850967716.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/19896iC4467D09B111ED74/image-size/large?v=v2&amp;amp;px=999" role="button" title="Julius_Loman_2-1715850967716.png" alt="Julius_Loman_2-1715850967716.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Then in the SLO definition, you will simply use &lt;A href="https://docs.dynatrace.com/docs/shortlink/api-metrics-v2-metric-expressions" target="_self"&gt;metric expression&lt;/A&gt; and multiply your desired metric with the business hours metric with the desired dimension representing your business hours, for example - for SLO on key requests:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(
    builtin:service.keyRequest.successes.server.rate:splitBy():auto
    * 
    business_hours:filter(and(or(eq(level,"8x5")))):splitBy():auto
):setUnit(Percent)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You may also commit the :setUnit transformation if you wish.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;IMPORTANT&lt;/STRONG&gt;: If the metric expression is displayed as a single value (Single value, table, etc) , please include :fold aggregation directly in the expression. This is needed due to the way Dynatrace queries metrics for single value charts. (infinite resolution).&lt;/P&gt;&lt;P&gt;So in the example - during business hours, your original metric will be unaffected (multiplied by 1) and outside of business hours, you will have no value. In this example I've chosen a service level of &lt;STRONG&gt;8x5&lt;/STRONG&gt;, so the result will look like this - notice there are no values during the weekend of 16th and 17th March, and during Monday - Friday we have values only between 8:00 to 16:00 - representing 8x5.&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Julius_Loman_1-1715850880208.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/19895i6C8BC9C5D6599139/image-size/large?v=v2&amp;amp;px=999" role="button" title="Julius_Loman_1-1715850880208.png" alt="Julius_Loman_1-1715850880208.png" /&gt;&lt;/span&gt;You can use this approach also in Data Explorer, for Metric event definitions or elsewhere you can utilize metric expressions!&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Extension for generating business hours metric&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I've decided to publish the extension which allows you to create this business_hours metric based on cron-like schedules or also from a real calendar! (defined in Office 365, Google Calendar or any remote calendar available in ical format).&amp;nbsp; So you can define your business hours using a shared calendar and the extension will generate the metric accordingly.&lt;BR /&gt;&lt;BR /&gt;You can download the extension from &lt;A href="https://github.com/juliusloman/dynatrace-extension-business-hours/releases" target="_self"&gt;here&lt;/A&gt;. You will need to import the CA certificate into your Dynatrace environment and upload the extension. See the README.md for details and links on how to share calendars from Office 365 or Google Calendar.&lt;BR /&gt;&lt;BR /&gt;Using calendar, you can freely define your business hours and exceptions. For example, define 8x5 as a recurring event in your calendar and just delete the occurrences, for example, for holidays.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;Changelog&lt;/STRONG&gt;&lt;/DIV&gt;v0.0.16&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;Improved logging&lt;/LI&gt;&lt;/UL&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;v0.0.15&lt;/SPAN&gt;&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Added support for generating negative levels&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Extension Dashboard with simple how-to and generated business hours metrics&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;v0.0.12&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Initial public version&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 01 May 2025 20:39:35 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/240367#M153</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2025-05-01T20:39:35Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/242100#M154</link>
      <description>&lt;P&gt;Hi&amp;nbsp; Julius,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(you have fans (-;)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am very interested in your Extension, can you share?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;KR Henk&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2024 14:26:42 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/242100#M154</guid>
      <dc:creator>henk_stobbe</dc:creator>
      <dc:date>2024-04-08T14:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/242285#M155</link>
      <description>&lt;P&gt;Hi Julius,&lt;/P&gt;&lt;P&gt;I am very interested.&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2024 08:10:43 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/242285#M155</guid>
      <dc:creator>jiri_stefanek</dc:creator>
      <dc:date>2024-04-10T08:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/243149#M156</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/30685"&gt;@jiri_stefanek&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;can you please reach out to me directly at julius.loman (at) alanata.sk ?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2024 07:58:14 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/243149#M156</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2024-04-18T07:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/243153#M157</link>
      <description>&lt;P&gt;Hi Julius,&lt;/P&gt;&lt;P&gt;I just send you email.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2024 08:13:57 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/243153#M157</guid>
      <dc:creator>jiri_stefanek</dc:creator>
      <dc:date>2024-04-18T08:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/244002#M158</link>
      <description>&lt;P&gt;Hi Julius,&lt;/P&gt;&lt;P&gt;I just sent you an email directly as well. Hope to hear from you soon. Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2024 18:16:44 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/244002#M158</guid>
      <dc:creator>hy</dc:creator>
      <dc:date>2024-04-25T18:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/244003#M159</link>
      <description>&lt;P&gt;&lt;SPAN&gt;How did you create the custom metric that defines the different business hours for different services, thus you will likely need to have a dimension for it, such as level (24x7, 10x5, etc) in data explorer?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2024 18:38:50 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/244003#M159</guid>
      <dc:creator>hy</dc:creator>
      <dc:date>2024-04-25T18:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/244035#M160</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/49896"&gt;@hy&lt;/a&gt;&amp;nbsp; exactly. I've just replied to your email.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2024 07:08:55 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/244035#M160</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2024-04-26T07:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/245016#M161</link>
      <description>&lt;P&gt;Hi Julius, this is great! I would also be interested in your extension please &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2024 16:32:57 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/245016#M161</guid>
      <dc:creator>elodie_lam</dc:creator>
      <dc:date>2024-05-07T16:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/245788#M162</link>
      <description>&lt;P&gt;Sent an email to you and looking forward for your reply mate. Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2024 05:06:57 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/245788#M162</guid>
      <dc:creator>kanthv</dc:creator>
      <dc:date>2024-05-16T05:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/246176#M163</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/3364"&gt;@Julius_Loman&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;You are so inspiring !&amp;nbsp;I have created my own python extension to create the custom metric but I use declarative endpoints with a specific format :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AurelienGravier_1-1716285184703.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/19997i63033E3B8BB7ECC3/image-size/large?v=v2&amp;amp;px=999" role="button" title="AurelienGravier_1-1716285184703.png" alt="AurelienGravier_1-1716285184703.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I'm encountering a limitation when I define a new business opening hours, I have to wait 1 month before use it in my SLO definition otherwise my SLO is null before the custom metric dimension creation.&lt;/P&gt;&lt;P&gt;Did you experiment the same behaviour with your extension ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;BR /&gt;Regards Aurelien.&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 10:13:34 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/246176#M163</guid>
      <dc:creator>AurelienGravier</dc:creator>
      <dc:date>2024-05-21T10:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/246232#M164</link>
      <description>&lt;P&gt;I'm not sure if I got your question. The only issue I ever encountered is that you cannot post metrics back in time. So if you define a service level you can only use it for the calculating SLO from current time.so plan accordingly and define your service levels in advance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 17:13:28 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/246232#M164</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2024-05-21T17:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/246250#M165</link>
      <description>&lt;P&gt;That's exactly the limitation I'm encountering : you cannot post metrics back in time.&lt;/P&gt;&lt;P&gt;Thank you for your confirmation.&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 07:33:47 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/246250#M165</guid>
      <dc:creator>AurelienGravier</dc:creator>
      <dc:date>2024-05-22T07:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/246251#M166</link>
      <description>&lt;P&gt;Yes, that's impossible as metrics can be ingested only one hour back in time. This will likely change soon with Grail, but not for Managed.&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 07:57:19 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/246251#M166</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2024-05-22T07:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/246663#M167</link>
      <description>&lt;P&gt;This could be one of the most clever tricks i seen, thank you for share it &lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/3364"&gt;@Julius_Loman&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 May 2024 16:45:21 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/246663#M167</guid>
      <dc:creator>rgarzon1</dc:creator>
      <dc:date>2024-05-27T16:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/247288#M168</link>
      <description>&lt;P&gt;Hi Julius,&lt;/P&gt;&lt;P&gt;Thanks a lot for your great post.&lt;BR /&gt;I also just sent you and email and like "hy" user I’m interested to know how to create the custom metric that defines the different business hours for different services.&lt;/P&gt;&lt;P&gt;Thanks again.&lt;BR /&gt;Regards,&lt;BR /&gt;Elena&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jun 2024 06:22:11 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/247288#M168</guid>
      <dc:creator>erh_inetum</dc:creator>
      <dc:date>2024-06-04T06:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/248863#M169</link>
      <description>&lt;P&gt;Hi Julius, any ETA for this extension to be in the hub?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jun 2024 11:58:17 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/248863#M169</guid>
      <dc:creator>germanriezu</dc:creator>
      <dc:date>2024-06-21T11:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/248870#M170</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/42404"&gt;@germanriezu&lt;/a&gt;&amp;nbsp;unfortunately it was not accepted. Only Dynatrace signed extensions can be in the HUB as of today, no 3rd party extensions. So at least for upcoming months this will stay as it is. You can download it from the provided link including the certificate and use it as a 3rd party extension. In case of any issues, reach out back here in this thread.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jun 2024 12:35:16 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/248870#M170</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2024-06-21T12:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/274318#M187</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/3364"&gt;@Julius_Loman&lt;/a&gt;&amp;nbsp;Thank you for sharing the detailed explanation.&lt;BR /&gt;But the link shared above to download the extension is not accessible Are there some restrictions or any other issues? Can you kindly confirm?&lt;BR /&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2025 08:32:30 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/274318#M187</guid>
      <dc:creator>Kumari_Sapna</dc:creator>
      <dc:date>2025-04-03T08:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: PRO TIP - Business hours in Dynatrace for SLOs or metric events</title>
      <link>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/274362#M188</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/78352"&gt;@Kumari_Sapna&lt;/a&gt;,&amp;nbsp;apparently there have been some changes to the sharing policy where this was hosted. I moved this project to github. The link was updated. Thanks for reporting.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2025 13:37:43 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Custom-Solutions-Spotlight/PRO-TIP-Business-hours-in-Dynatrace-for-SLOs-or-metric-events/m-p/274362#M188</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2025-04-03T13:37:43Z</dc:date>
    </item>
  </channel>
</rss>

