<?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 can I determine who modified a dashboard? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-determine-who-modified-a-dashboard/m-p/543357#M37252</link>
    <description>&lt;P&gt;try this:&amp;nbsp;&lt;A href="https://ideas.splunk.com/ideas/E-I-49" target="_blank"&gt;Better Audit Logs | Ideas (splunk.com)&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Mar 2021 12:23:56 GMT</pubDate>
    <dc:creator>jaxjohnny2000</dc:creator>
    <dc:date>2021-03-11T12:23:56Z</dc:date>
    <item>
      <title>How can I determine who modified a dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-determine-who-modified-a-dashboard/m-p/267069#M16852</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I have a customer who needs to know who/when a dashboard was last modified.  Is this possible?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2015 13:50:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-determine-who-modified-a-dashboard/m-p/267069#M16852</guid>
      <dc:creator>a212830</dc:creator>
      <dc:date>2015-10-08T13:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: How can I determine who modified a dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-determine-who-modified-a-dashboard/m-p/267070#M16853</link>
      <description>&lt;P&gt;you could check&lt;/P&gt;

&lt;P&gt;index=_audit sourcetype=audittrail&lt;/P&gt;

&lt;P&gt;then, take a look at the actions field. It may be there what you are trying to find&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2015 15:29:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-determine-who-modified-a-dashboard/m-p/267070#M16853</guid>
      <dc:creator>asimagu</dc:creator>
      <dc:date>2015-10-08T15:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: How can I determine who modified a dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-determine-who-modified-a-dashboard/m-p/267071#M16854</link>
      <description>&lt;P&gt;Take a look at this answer (question) and it should give you a good start:&lt;/P&gt;

&lt;P&gt;&lt;A href="http://answers.splunk.com/answers/316312/ever-wonder-which-dashboards-are-being-used-and-wh.html"&gt;http://answers.splunk.com/answers/316312/ever-wonder-which-dashboards-are-being-used-and-wh.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2015 15:58:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-determine-who-modified-a-dashboard/m-p/267071#M16854</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-10-08T15:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: How can I determine who modified a dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-determine-who-modified-a-dashboard/m-p/267072#M16855</link>
      <description>&lt;P&gt;I think is more in line with what you're looking for. It shows who updated or deleted any knowledge object. It breaks out the different portions so you can throw it into a form dashboard for filtering.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal sourcetype=splunkd_access
( method=POST OR method=DELETE )
( user!=splunk-system-user user!=- )
( uri_path=/servicesNS/* uri_path!="*/user-prefs/*" uri_path!="/servicesNS/*/*/*/jobs/*/control" uri_path!=/servicesNS/*/mobile_access* )
 | replace "*/ui/views*" with "*/ui_views*", "*/props*" with "**", "*/distributed/peers*" with "*/distributed_peers*", "*/server/serverclasses*" with "*/server_class*" in uri_path
 | where mvcount( split( uri_path , "/" ) ) &amp;gt; 6
 | eval activity = case( method=="POST" AND like( uri_path , "%/acl" ) , "Permissions Update", method=="POST" AND NOT like( uri_path , "%/acl" ) , "Edited" , method="DELETE" , "Deleted" )
 | rex field=uri_path "/servicesNS(/[^\/]+){3}/(?&amp;lt;object_type&amp;gt;[^\/]+)/(?&amp;lt;object_name&amp;gt;[^\/]+)"
 | eval object_name = urldecode( object_name )
 | table _time, user, object_name, object_type, activity
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Oct 2015 00:05:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-determine-who-modified-a-dashboard/m-p/267072#M16855</guid>
      <dc:creator>sloshburch</dc:creator>
      <dc:date>2015-10-20T00:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: How can I determine who modified a dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-determine-who-modified-a-dashboard/m-p/267073#M16856</link>
      <description>&lt;P&gt;How can I get to know if any of my scheduled alerts have been modified, deleted or anyone created a new alert?&lt;/P&gt;

&lt;P&gt;i tried the above query and got the results as well for index=_internal but not for index=_audit. &lt;/P&gt;

&lt;P&gt;Also my main concern is about the activity performed on existing Alerts.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 23:56:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-determine-who-modified-a-dashboard/m-p/267073#M16856</guid>
      <dc:creator>adm_rashi</dc:creator>
      <dc:date>2020-09-29T23:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: How can I determine who modified a dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-determine-who-modified-a-dashboard/m-p/267074#M16857</link>
      <description>&lt;P&gt;Thank you, adm_rashi - I see you've also created your own question out of this.  That's much more effective.  &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2019 12:32:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-determine-who-modified-a-dashboard/m-p/267074#M16857</guid>
      <dc:creator>Richfez</dc:creator>
      <dc:date>2019-04-03T12:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: How can I determine who modified a dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-determine-who-modified-a-dashboard/m-p/543357#M37252</link>
      <description>&lt;P&gt;try this:&amp;nbsp;&lt;A href="https://ideas.splunk.com/ideas/E-I-49" target="_blank"&gt;Better Audit Logs | Ideas (splunk.com)&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 12:23:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-determine-who-modified-a-dashboard/m-p/543357#M37252</guid>
      <dc:creator>jaxjohnny2000</dc:creator>
      <dc:date>2021-03-11T12:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: How can I determine who modified a dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-determine-who-modified-a-dashboard/m-p/705464#M57788</link>
      <description>&lt;P&gt;I tried the suggestions above. The SPL against the _internal index doesn't show modifications to dashboards. The SPL against the _audit index does but it shows a numeric ID for the user which I believe to be unrelated to the actual user. I say this as because this same ID is responsible for 99% of action=modify events across the platform. So I would presume it to be the splunk system user.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2024 07:35:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-can-I-determine-who-modified-a-dashboard/m-p/705464#M57788</guid>
      <dc:creator>jonaclough</dc:creator>
      <dc:date>2024-11-28T07:35:07Z</dc:date>
    </item>
  </channel>
</rss>

