<?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: Splunk Add-on for Amazon Web Services: How can I configure Splunk to look for CloudWatch logs group names using RegEx? in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213362#M22938</link>
    <description>&lt;P&gt;@mwiora - it's possible that the images are not loading on your end due to their size. Here's a direct &lt;A href="http://blogs.splunk.com/wp-content/uploads/2017/02/2.-Configure-Lambda-env-vars-and-role.png"&gt;link&lt;/A&gt; to one of the images for example.&lt;/P&gt;

&lt;P&gt;Best place to investigate is usually your browser console. Otherwise, try clearing your cache and refresh.&lt;/P&gt;</description>
    <pubDate>Tue, 07 Feb 2017 16:58:49 GMT</pubDate>
    <dc:creator>rarsan_splunk</dc:creator>
    <dc:date>2017-02-07T16:58:49Z</dc:date>
    <item>
      <title>Splunk Add-on for Amazon Web Services: How can I configure Splunk to look for CloudWatch logs group names using RegEx?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213356#M22932</link>
      <description>&lt;P&gt;I'm configuring the Splunk Add-on for Amazon Web Services and want to forward CloudWatch logs into Splunk.  I can do this if I know the exact loggroup name in CloudWatch logs however if the lambda function is created using CloudFormation it creates a dynamic name with an ID in the loggroup.  How can I tell Splunk to look for CloudWatch log groupnames using regex?&lt;/P&gt;

&lt;P&gt;I'm configuring using this file: aws_cloudwatch_logs_tasks.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[direct data wildcard]
account = splunk-aws-lob-npd
delay = 1800
groups = /aws/lambda/directdata-dev.*
index = default
interval = 60
only_after = 1970-01-01T00:00:00
region = us-east-1
sourcetype = aws:cloudwatchlogs:directdatawildcard
stream_matcher = .*
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 29 Sep 2020 11:09:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213356#M22932</guid>
      <dc:creator>a263534</dc:creator>
      <dc:date>2020-09-29T11:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Amazon Web Services: How can I configure Splunk to look for CloudWatch logs group names using RegEx?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213357#M22933</link>
      <description>&lt;P&gt;I don't think you can. I tried almost every combination as well and wasn't able to do it myself. I ended resorting to this   &lt;CODE&gt;aws logs describe-log-groups   --output text   --query 'logGroups[*].[logGroupName]' |tr '\n' ','&lt;/CODE&gt; . This however leads to other issues where a large amount of log_groups can cause ThrottlingExceptions&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2016 20:31:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213357#M22933</guid>
      <dc:creator>lcasey001</dc:creator>
      <dc:date>2016-10-04T20:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Amazon Web Services: How can I configure Splunk to look for CloudWatch logs group names using RegEx?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213358#M22934</link>
      <description>&lt;P&gt;Thank you - yeah I ended up opening a case w\ splunk and they are aware of this issue and it will be added in a future release.  I also created a script that used aws CLI but I'm pulling directly from the list of lambda functions to only get the most current CW log groups which is helping with throttling. &lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2016 16:41:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213358#M22934</guid>
      <dc:creator>a263534</dc:creator>
      <dc:date>2016-10-06T16:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Amazon Web Services: How can I configure Splunk to look for CloudWatch logs group names using RegEx?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213359#M22935</link>
      <description>&lt;P&gt;To avoid CloudWatch Logs API throttling issues due to polling, you may want to consider the near real-time streaming of CloudWatch Logs into Splunk via Lambda (i.e. &lt;STRONG&gt;CloudWatch Logs&lt;/STRONG&gt; --&amp;gt; &lt;STRONG&gt;Lambda&lt;/STRONG&gt; --&amp;gt; &lt;STRONG&gt;Splunk&lt;/STRONG&gt;) as explained in this blog post:&lt;BR /&gt;
&lt;A href="http://blogs.splunk.com/2017/02/03/how-to-easily-stream-aws-cloudwatch-logs-to-splunk/"&gt;http://blogs.splunk.com/2017/02/03/how-to-easily-stream-aws-cloudwatch-logs-to-splunk/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;To help with automation, these Lambda functions, acting as logs forwarders, could even be created along with your original logs-producing Lambda functions (or other AWS services) within the same CloudFormation template.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2017 04:33:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213359#M22935</guid>
      <dc:creator>rarsan_splunk</dc:creator>
      <dc:date>2017-02-06T04:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Amazon Web Services: How can I configure Splunk to look for CloudWatch logs group names using RegEx?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213360#M22936</link>
      <description>&lt;P&gt;Hi rarsan,&lt;/P&gt;

&lt;P&gt;this seems to be your blogpost.&lt;BR /&gt;
Could you please have a look on the image-issues?&lt;/P&gt;

&lt;P&gt;Cheers and thanks in advance,&lt;BR /&gt;
µatthias&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/1909i5B91CF60FDA907F0/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 16:43:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213360#M22936</guid>
      <dc:creator>mwiora</dc:creator>
      <dc:date>2017-02-07T16:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Amazon Web Services: How can I configure Splunk to look for CloudWatch logs group names using RegEx?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213361#M22937</link>
      <description>&lt;P&gt;Hi a263534,&lt;/P&gt;

&lt;P&gt;can you share your script? It would be a great help!&lt;BR /&gt;
Cheers,&lt;BR /&gt;
µatthias&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 16:52:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213361#M22937</guid>
      <dc:creator>mwiora</dc:creator>
      <dc:date>2017-02-07T16:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Amazon Web Services: How can I configure Splunk to look for CloudWatch logs group names using RegEx?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213362#M22938</link>
      <description>&lt;P&gt;@mwiora - it's possible that the images are not loading on your end due to their size. Here's a direct &lt;A href="http://blogs.splunk.com/wp-content/uploads/2017/02/2.-Configure-Lambda-env-vars-and-role.png"&gt;link&lt;/A&gt; to one of the images for example.&lt;/P&gt;

&lt;P&gt;Best place to investigate is usually your browser console. Otherwise, try clearing your cache and refresh.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 16:58:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213362#M22938</guid>
      <dc:creator>rarsan_splunk</dc:creator>
      <dc:date>2017-02-07T16:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Amazon Web Services: How can I configure Splunk to look for CloudWatch logs group names using RegEx?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213363#M22939</link>
      <description>&lt;P&gt;@rarsan yeah - thanks for the fast reply!&lt;BR /&gt;
It turned out that blogs.spunk.com has been provided with a SHA1 signed Certificate and you included the pictures by using HTTPS (probably by default).&lt;/P&gt;

&lt;P&gt;As of Google Chrome 56.0.2924.87 does not recognize SHA1 signed Certificates as secure, the images are not displayed - yay &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="https://security.googleblog.com/2016/11/sha-1-certificates-in-chrome.html"&gt;https://security.googleblog.com/2016/11/sha-1-certificates-in-chrome.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Splunk should take action and update their certificates - especially, since this is the main wildcard-certificate &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 17:20:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213363#M22939</guid>
      <dc:creator>mwiora</dc:creator>
      <dc:date>2017-02-07T17:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Amazon Web Services: How can I configure Splunk to look for CloudWatch logs group names using RegEx?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213364#M22940</link>
      <description>&lt;P&gt;Thanks @mwiora. I've reported this to our web dev team.&lt;BR /&gt;
You're right, the explicit https was default behavior. I've also updated the images sources to follow page protocol. &lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 23:12:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Amazon-Web-Services-How-can-I-configure-Splunk/m-p/213364#M22940</guid>
      <dc:creator>rarsan_splunk</dc:creator>
      <dc:date>2017-02-07T23:12:22Z</dc:date>
    </item>
  </channel>
</rss>

