<?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: How do one setup an alert to send email for when the temperature goes up. in Alerting</title>
    <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25900#M12133</link>
    <description>&lt;P&gt;The steps you've stated above worked. the additional question I was asking you is could one also do it this way using this parameter: &lt;BR /&gt;
index=main sourcetype="temperature" | rex "UPS1 Warm: (?&lt;WARM&gt;[^ ]+) UPS2 Cool: (?&lt;COOL&gt;[^ ]+)" &lt;BR /&gt;
?&lt;BR /&gt;
I am happy your step above worked.&lt;/COOL&gt;&lt;/WARM&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 13 Apr 2012 12:50:12 GMT</pubDate>
    <dc:creator>babs101</dc:creator>
    <dc:date>2012-04-13T12:50:12Z</dc:date>
    <item>
      <title>How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25889#M12122</link>
      <description>&lt;P&gt;I have got the following parameter defined within Splunk report which works perfectly well for temperature detection !&lt;/P&gt;

&lt;P&gt;index=main sourcetype="temperature" | head 10 | rex "UPS2 Cool:  (?&lt;COOL&gt;[^ ]+)" | stats avg(COOL)&lt;/COOL&gt;&lt;/P&gt;

&lt;P&gt;I want to create an alert that will send am email when the cool  temperature on Splunk gets above 30 degrees &lt;BR /&gt;
Do anyone have an idea how to set this up?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Apr 2012 16:42:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25889#M12122</guid>
      <dc:creator>babs101</dc:creator>
      <dc:date>2012-04-12T16:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25890#M12123</link>
      <description>&lt;P&gt;You will need to add a condition to the end of your current search. Add the following and test that it only shows the values above 30. &lt;/P&gt;

&lt;P&gt;yoursearch | rename avg(COOL) AS avgcool|search avgcool&amp;gt;30&lt;/P&gt;

&lt;P&gt;-or-&lt;/P&gt;

&lt;P&gt;yoursearch | rename avg(COOL) AS avgcool|where avgcool&amp;gt;30&lt;/P&gt;

&lt;P&gt;Once you have run that search and verified the results. You can do this from the flashtimeline (where you will be probably testing this command), by selecting "Create" dropdown button (on the right-hand side of your view by default) and then "Alert". This will show a pop-up containing you search. You should then follow the setup selecting your time period and alert method (Alert Docs:&lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Admin/howdoesalertingworkinSplunk"&gt;HERE&lt;/A&gt; and &lt;A href="http://docs.splunk.com/Documentation/Splunk/4.3.1/user/SchedulingSavedSearches"&gt;HERE&lt;/A&gt;)&lt;/P&gt;

&lt;P&gt;You will also need to configure you email settings, which can be done through the Manager and then "System Settings" (Email Docs: &lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Admin/howdoesalertingworkinSplunk#Specify_overall_email_settings_for_alerts"&gt;HERE&lt;/A&gt;)&lt;/P&gt;

&lt;P&gt;Hope this helps,&lt;/P&gt;

&lt;P&gt;Regards,&lt;/P&gt;

&lt;P&gt;MHibbin&lt;/P&gt;

&lt;P&gt;EDIT: Modified the searches above&lt;/P&gt;</description>
      <pubDate>Thu, 12 Apr 2012 16:52:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25890#M12123</guid>
      <dc:creator>MHibbin</dc:creator>
      <dc:date>2012-04-12T16:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25891#M12124</link>
      <description>&lt;P&gt;I have now tried to test the above conditions as follows &lt;BR /&gt;
index=main sourcetype="temperature" | head 10 | rex "UPS2 Cool: (?&lt;COOL&gt;[^ ]+)" | stats avg(COOL) |search avg(COOL)&amp;gt;30&lt;BR /&gt;
and it generated the following errors.&lt;BR /&gt;
"Error in 'search' command: Unable to parse the search comparator '&amp;gt;' has an invalid term on the left hand side".&lt;BR /&gt;
and &lt;BR /&gt;
index=main sourcetype="temperature" | head 10 | rex "UPS2 Cool: (?&lt;COOL&gt;[^ ]+)" | stats avg(COOL) |where avg(COOL)&amp;gt;30&lt;/COOL&gt;&lt;/COOL&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Apr 2012 17:22:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25891#M12124</guid>
      <dc:creator>babs101</dc:creator>
      <dc:date>2012-04-12T17:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25892#M12125</link>
      <description>&lt;P&gt;shows the following error &lt;BR /&gt;
"Error in 'where' command: The 'avg' function is unsupported or undefined.&lt;/P&gt;

&lt;P&gt;is there any thing I am doing wrong in terms of the parameter I am passing?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Apr 2012 17:23:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25892#M12125</guid>
      <dc:creator>babs101</dc:creator>
      <dc:date>2012-04-12T17:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25893#M12126</link>
      <description>&lt;P&gt;OK sorry I just checked, apparently Splunk doesn't like the "()" in the search... try this...&lt;/P&gt;

&lt;P&gt;index=main sourcetype="temperature" | head 10 | rex "UPS2 Cool: (?&lt;COOL&gt;[^ ]+)" | stats avg(COOL) | rename avg(COOL)AS avgcool | where avgcool&amp;gt;30&lt;/COOL&gt;&lt;/P&gt;

&lt;P&gt;-OR-&lt;/P&gt;

&lt;P&gt;index=main sourcetype="temperature" | head 10 | rex "UPS2 Cool: (?&lt;COOL&gt;[^ ]+)" | stats avg(COOL) | rename avg(COOL) AS avgcool |search avgcool&amp;gt;30&lt;/COOL&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Apr 2012 18:03:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25893#M12126</guid>
      <dc:creator>MHibbin</dc:creator>
      <dc:date>2012-04-12T18:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25894#M12127</link>
      <description>&lt;P&gt;note that I used added the rename command and changed the final function.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Apr 2012 18:03:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25894#M12127</guid>
      <dc:creator>MHibbin</dc:creator>
      <dc:date>2012-04-12T18:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25895#M12128</link>
      <description>&lt;P&gt;I tried both steps above, and I got a better result as it was showing 10 matching events with the linear bar graph.but in the result field I got "0 result in the last 30 days "from 12:00:00 AM March 14 to 11:55:32 AM April 13, 2012" I decided to check the threshold of my warm and cool temperature by doing the following:&lt;BR /&gt;
ndex=main sourcetype="temperature" | head 10 | rex "UPS2 Cool:  (?&lt;COOL&gt;[^ ]+)" | stats avg(COOL)&lt;BR /&gt;
index=main sourcetype="temperature" | head 10 | rex "UPS1 Warm:  (?&lt;WARM&gt;[^ ]+)" | stats avg(WARM)&lt;/WARM&gt;&lt;/COOL&gt;&lt;/P&gt;

&lt;P&gt;mine stats avg(COOL) temp is 20.0000&lt;BR /&gt;
mine stats avg(WARM) temp is 28.0000&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2012 11:06:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25895#M12128</guid>
      <dc:creator>babs101</dc:creator>
      <dc:date>2012-04-13T11:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25896#M12129</link>
      <description>&lt;P&gt;so I went back to your steps and reduced the temperature threshold at which I expect an alert to be send to 19&lt;BR /&gt;
index=main sourcetype="temperature" | head 10 | rex "UPS2 Cool:  (?&lt;COOL&gt;[^ ]+)" | stats avg(COOL) | rename avg(COOL) AS avgcool | where avgcool&amp;gt;19&lt;BR /&gt;
and I got a  result 20.0000&lt;/COOL&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2012 11:08:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25896#M12129</guid>
      <dc:creator>babs101</dc:creator>
      <dc:date>2012-04-13T11:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25897#M12130</link>
      <description>&lt;P&gt;OK, does that mean this question has been resolved? - Or is there something else that needs sorting (my reading of this, is that you have it working).&lt;/P&gt;

&lt;P&gt;If it has answered your question, and there are no more questions, can you mark the answer as accepted. Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2012 11:15:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25897#M12130</guid>
      <dc:creator>MHibbin</dc:creator>
      <dc:date>2012-04-13T11:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25898#M12131</link>
      <description>&lt;P&gt;Thanks very much MHibbin for the tip. I should not have a problem setting this up in a real time I guess. &lt;BR /&gt;
I have now combined the temperature threshold parameters &lt;BR /&gt;
index=main sourcetype="temperature" | rex "UPS1 Warm:  (?&lt;WARM&gt;[^ ]+) UPS2 Cool:  (?&lt;COOL&gt;[^ ]+)"&lt;BR /&gt;&lt;BR /&gt;
Is it possible to use the your steps above as I tried it as stated below but failed.&lt;/COOL&gt;&lt;/WARM&gt;&lt;/P&gt;

&lt;P&gt;index=main sourcetype="temperature" | rex "UPS1 Warm:  (?&lt;WARM&gt;[^ ]+) UPS2 Cool:  (?&lt;COOL&gt;[^ ]+)"  | rename avg(COOL) AS avgcool | search avgcool&amp;gt;19, rename avg(WARM) AS avgwarm | search avgwarm&amp;gt;27&lt;/COOL&gt;&lt;/WARM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2012 12:30:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25898#M12131</guid>
      <dc:creator>babs101</dc:creator>
      <dc:date>2012-04-13T12:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25899#M12132</link>
      <description>&lt;P&gt;I guess I can use the parameter that works since they both using the same sourcetype I should still get the same results and I just need to set mine threshold to &amp;gt;29 since I want my alert when it hits 30 degrees&lt;BR /&gt;
index=main sourcetype="temperature" | head 10 | rex "UPS2 Cool: (?&lt;COOL&gt;[^ ]+)" | stats avg(COOL) | rename avg(COOL) AS avgcool | where avgcool&amp;gt;29&lt;/COOL&gt;&lt;/P&gt;

&lt;P&gt;I hope this is useful to others out there. not if its useful also my temperature data came from cacti.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2012 12:34:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25899#M12132</guid>
      <dc:creator>babs101</dc:creator>
      <dc:date>2012-04-13T12:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25900#M12133</link>
      <description>&lt;P&gt;The steps you've stated above worked. the additional question I was asking you is could one also do it this way using this parameter: &lt;BR /&gt;
index=main sourcetype="temperature" | rex "UPS1 Warm: (?&lt;WARM&gt;[^ ]+) UPS2 Cool: (?&lt;COOL&gt;[^ ]+)" &lt;BR /&gt;
?&lt;BR /&gt;
I am happy your step above worked.&lt;/COOL&gt;&lt;/WARM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2012 12:50:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25900#M12133</guid>
      <dc:creator>babs101</dc:creator>
      <dc:date>2012-04-13T12:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25901#M12134</link>
      <description>&lt;P&gt;I clicked on the acceptable and it says the question already has an acceptable answear.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2012 12:50:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25901#M12134</guid>
      <dc:creator>babs101</dc:creator>
      <dc:date>2012-04-13T12:50:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25902#M12135</link>
      <description>&lt;P&gt;I want to give you 100 point but to my surprise the points slid bar stops at 51.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2012 12:56:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25902#M12135</guid>
      <dc:creator>babs101</dc:creator>
      <dc:date>2012-04-13T12:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25903#M12136</link>
      <description>&lt;P&gt;Thanks very much! - The main reason I mentioned this, is so the community can both judge how useful the answer was, and whether a question still requires input.&lt;/P&gt;

&lt;P&gt;OK, I've played around with some of my data, not exactly the same...&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2012 13:22:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25903#M12136</guid>
      <dc:creator>MHibbin</dc:creator>
      <dc:date>2012-04-13T13:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25904#M12137</link>
      <description>&lt;P&gt;So you wish to be alerted when the "cool" temperature is above 19 OR "warm" is above 29? If so...&lt;/P&gt;

&lt;P&gt;index=main sourcetype="temperature" | rex "UPS1 Warm: (?&lt;WARM&gt;[^ ]+) UPS2 Cool: (?&lt;COOL&gt;[^ ]+)" | stats avg(COOL), avg(WARM)|rename avg(COOL) AS avgcool,  avg(WARM) as avgwarm | where avgcool&amp;gt;19 OR avgwarm&amp;gt;29&lt;/COOL&gt;&lt;/WARM&gt;&lt;/P&gt;

&lt;P&gt;Let me know if this is what you meant?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2012 13:26:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25904#M12137</guid>
      <dc:creator>MHibbin</dc:creator>
      <dc:date>2012-04-13T13:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25905#M12138</link>
      <description>&lt;P&gt;As these are two different values I would think it might be better to have two searches... i.e. one for "cool" and one for "warm", then you could have devices for example and have temperature by device... e.g. &lt;/P&gt;

&lt;P&gt;index=main sourcetype="temperature" | rex "UPS1 Warm: (?&lt;WARM&gt;[^ ]+) | stats avg(warm) by host| rename avg(warm) as avgwarm | where avgwarm&amp;gt;29&lt;/WARM&gt;&lt;/P&gt;

&lt;P&gt;and then another for avgcool, for a lower temperature.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2012 13:29:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25905#M12138</guid>
      <dc:creator>MHibbin</dc:creator>
      <dc:date>2012-04-13T13:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25906#M12139</link>
      <description>&lt;P&gt;Thanks for this information I am even wondering if I can make it simple in this format index="main" sourcetype="temperature" "30"&lt;BR /&gt;
but I ran into problem with the evaluation part of it I just want to say where cool&amp;gt;29 than it would not have to pick the warm. I am thinking using the stat part of this could cause some time delay please what do you think.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Apr 2012 14:06:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25906#M12139</guid>
      <dc:creator>babs101</dc:creator>
      <dc:date>2012-04-26T14:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25907#M12140</link>
      <description>&lt;P&gt;Sorry I miss one of your questions, I want to be alerted when the cool temperature is &amp;gt;29 but I do not want it to do the  stats avg(CooL) before given the result.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Apr 2012 14:23:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25907#M12140</guid>
      <dc:creator>babs101</dc:creator>
      <dc:date>2012-04-26T14:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: How do one setup an alert to send email for when the temperature goes up.</title>
      <link>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25908#M12141</link>
      <description>&lt;P&gt;OK in that case, you would probably need to do something like..&lt;/P&gt;

&lt;P&gt;index=main sourcetype="temperature" | rex "UPS2 Cool: (?&lt;COOL&gt;[^ ]+)" | where cool&amp;gt;29 | head 1&lt;/COOL&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Apr 2012 15:07:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-do-one-setup-an-alert-to-send-email-for-when-the-temperature/m-p/25908#M12141</guid>
      <dc:creator>MHibbin</dc:creator>
      <dc:date>2012-04-26T15:07:36Z</dc:date>
    </item>
  </channel>
</rss>

