<?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 many email triggered in a day and how to schedule a report to the user? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-many-email-triggered-in-a-day-and-how-to-schedule-a-report/m-p/614412#M213516</link>
    <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/36591"&gt;@risingflight143&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;good for you, see next time!&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated by all the contributors &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 24 Sep 2022 05:14:23 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2022-09-24T05:14:23Z</dc:date>
    <item>
      <title>How many email triggered in a day and how to schedule a report to the user?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-many-email-triggered-in-a-day-and-how-to-schedule-a-report/m-p/614312#M213464</link>
      <description>&lt;P&gt;Hi All&lt;/P&gt;
&lt;P&gt;i am using the below query and it works fine. i.e how many emails were triggered to a Distribution list in a Month.&lt;/P&gt;
&lt;P&gt;sourcetype="ms:o365:reporting:messagetrace"&amp;nbsp; &amp;nbsp;SenderAddress=*** RecipientAddress=*dl1@contoso.com* Status IN (*) subject="***" MessageId=*** | timechart span=1mon count&lt;/P&gt;
&lt;P&gt;I have the below requirement please guide me with query.&lt;/P&gt;
&lt;P&gt;How many email triggered to the DL &lt;A href="mailto:dl1@contoso.com" target="_blank" rel="noopener"&gt;dl1@contoso.com&lt;/A&gt; on a day and subject of that email and sender address and i want to schedule this report to the user &lt;A href="mailto:user1@contoso.com" target="_blank" rel="noopener"&gt;user1@contoso.com&lt;/A&gt;&amp;nbsp;on daily basis.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 15:41:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-many-email-triggered-in-a-day-and-how-to-schedule-a-report/m-p/614312#M213464</guid>
      <dc:creator>risingflight143</dc:creator>
      <dc:date>2022-09-23T15:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: Message Trace</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-many-email-triggered-in-a-day-and-how-to-schedule-a-report/m-p/614316#M213466</link>
      <description>&lt;P&gt;&lt;SPAN&gt;sourcetype="ms:o365:reporting:messagetrace"&amp;nbsp; &amp;nbsp;SenderAddress=* RecipientAddress=*dl1@contoso.com* Status IN (*) subject=* MessageId=*&lt;/SPAN&gt;&lt;BR /&gt;| stats values(subject) as subject values(SenderAddress) as SenderAddress count by RecipientAddress&lt;/P&gt;&lt;P&gt;Does this achieve what you want?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 13:53:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-many-email-triggered-in-a-day-and-how-to-schedule-a-report/m-p/614316#M213466</guid>
      <dc:creator>FelixLeh</dc:creator>
      <dc:date>2022-09-23T13:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Message Trace</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-many-email-triggered-in-a-day-and-how-to-schedule-a-report/m-p/614317#M213467</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/36591"&gt;@risingflight143&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;let me understand:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;you have a search that dispaly the cout per day of the emails to&amp;nbsp;&lt;A href="mailto:dl1@contoso.com" target="_blank" rel="nofollow noopener noreferrer"&gt;dl1@contoso.com&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;now to the count of the emails per day, you want to add also the list of subjects and the list of senders,&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;is this correct?&lt;/P&gt;&lt;P&gt;If this is your requirement, please try this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;sourcetype="ms:o365:reporting:messagetrace" SenderAddress=*** RecipientAddress=*dl1@contoso.com* Status IN (*) subject="***" MessageId=*** 
| bin span=1mon _time
| stats values(subject) AS subject values(sender) AS sender count BY _time&lt;/LI-CODE&gt;&lt;P&gt;One additional hint: use always the index in your searches: they will be faster.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 13:56:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-many-email-triggered-in-a-day-and-how-to-schedule-a-report/m-p/614317#M213467</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-09-23T13:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: How many email triggered in a day and how to schedule a report to the user?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-many-email-triggered-in-a-day-and-how-to-schedule-a-report/m-p/614350#M213481</link>
      <description>&lt;P&gt;The below syntax works fine , how do i add email received date.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;sourcetype="ms:o365:reporting:messagetrace"&amp;nbsp; &amp;nbsp;SenderAddress=* RecipientAddress=*dl1@contoso.com* Status IN (*) subject=* MessageId=*&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;| stats values(subject) as subject values(SenderAddress) as SenderAddress count by RecipientAddress&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 16:41:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-many-email-triggered-in-a-day-and-how-to-schedule-a-report/m-p/614350#M213481</guid>
      <dc:creator>risingflight143</dc:creator>
      <dc:date>2022-09-23T16:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: How many email triggered in a day and how to schedule a report to the user?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-many-email-triggered-in-a-day-and-how-to-schedule-a-report/m-p/614356#M213483</link>
      <description>&lt;P&gt;I tried the below i have added received:date_month but i am not getting output&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;sourcetype="ms:o365:reporting:messagetrace"&amp;nbsp; &amp;nbsp;SenderAddress=* RecipientAddress=*dl1@contoso.com* Status IN (*) subject=* MessageId=*&lt;BR /&gt;| stats values(subject) as subject values(SenderAddress) as SenderAddress count by RecipientAddress Received:date_month&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 17:11:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-many-email-triggered-in-a-day-and-how-to-schedule-a-report/m-p/614356#M213483</guid>
      <dc:creator>risingflight143</dc:creator>
      <dc:date>2022-09-23T17:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: How many email triggered in a day and how to schedule a report to the user?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-many-email-triggered-in-a-day-and-how-to-schedule-a-report/m-p/614390#M213507</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/36591"&gt;@risingflight143&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;to add a date similar to timechart, you have to use the bin command to group some timestamps otherwise you'll not be able to group events.&lt;/P&gt;&lt;P&gt;For this reason I used bin and in the stats command I added _time, that aren't present in your search.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 21:12:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-many-email-triggered-in-a-day-and-how-to-schedule-a-report/m-p/614390#M213507</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-09-23T21:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: How many email triggered in a day and how to schedule a report to the user?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-many-email-triggered-in-a-day-and-how-to-schedule-a-report/m-p/614391#M213508</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/36591"&gt;@risingflight143&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;are you sure that in the same events there are&amp;nbsp;&lt;SPAN&gt;RecipientAddress and Received:date_month?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;this is the only reason to haven't&amp;nbsp; results.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Ciao.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Giuseppe&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 21:14:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-many-email-triggered-in-a-day-and-how-to-schedule-a-report/m-p/614391#M213508</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-09-23T21:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: How many email triggered in a day and how to schedule a report to the user?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-many-email-triggered-in-a-day-and-how-to-schedule-a-report/m-p/614412#M213516</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/36591"&gt;@risingflight143&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;good for you, see next time!&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated by all the contributors &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Sep 2022 05:14:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-many-email-triggered-in-a-day-and-how-to-schedule-a-report/m-p/614412#M213516</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-09-24T05:14:23Z</dc:date>
    </item>
  </channel>
</rss>

