<?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: SharePoint List threshold Monitoring in Splunk AppDynamics</title>
    <link>https://community.splunk.com/t5/Splunk-AppDynamics/SharePoint-List-threshold-Monitoring/m-p/725293#M4651</link>
    <description>&lt;P&gt;Thank yo so much for the Info Raunak.&lt;/P&gt;

&lt;P&gt;If this is the case, what will be the impact to AppDynamics if a SharePoint Application is in Office365(Cloud Based platform version) of SharePoint?&lt;/P&gt;

&lt;P&gt;Does Appdynamics can still monitor Full cloud based application like office365?&lt;/P&gt;</description>
    <pubDate>Thu, 13 Sep 2018 07:19:56 GMT</pubDate>
    <dc:creator>CommunityUser</dc:creator>
    <dc:date>2018-09-13T07:19:56Z</dc:date>
    <item>
      <title>SharePoint List threshold Monitoring</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/SharePoint-List-threshold-Monitoring/m-p/725287#M4645</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Our team supports multiple SharePoint Apps \ Sites, We are starting to build AppDynamics on our SharePoint farms to proactively monitory our SP Applications. One of our idea is to monitor the SPList Item count to prevent SharePoint List Threshold issue.&lt;/P&gt;

&lt;P&gt;Hope we could get some piece of advice if someone already did this on their own servers \ Controllers\ SP Sites.&lt;/P&gt;

&lt;P&gt;Looking forward to start a discussion here.&lt;/P&gt;

&lt;P&gt;Thanks in Advance.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2018 15:10:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/SharePoint-List-threshold-Monitoring/m-p/725287#M4645</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2018-08-06T15:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: SharePoint List threshold Monitoring</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/SharePoint-List-threshold-Monitoring/m-p/725288#M4646</link>
      <description>&lt;P&gt;Hi Mervin,&lt;/P&gt;

&lt;P&gt;Apologies for the delay here. I suppose you are using .Net Agent to instrument your SharePoint applications.&lt;/P&gt;
&lt;P&gt;I think we should be able to&amp;nbsp;extract the value using Method Invocation Data Collectors or Info Point.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.appdynamics.com/display/PRO45/Data+Collectors#DataCollectors-TypesofDataCollectors" target="_blank" rel="nofollow noopener noreferrer"&gt;https://docs.appdynamics.com/display/PRO45/Data+Collectors#DataCollectors-TypesofDataCollectors&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.appdynamics.com/display/PRO45/Information+Points" target="_blank" rel="nofollow noopener noreferrer"&gt;https://docs.appdynamics.com/display/PRO45/Information+Points&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;We will need to identify the class and method and associated property which can be used to extract the length of items in a SPList. And once we have the current count we can create a Health Rule on the metric which will get fired when a certain threshold is breached.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Raunak&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 10:27:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/SharePoint-List-threshold-Monitoring/m-p/725288#M4646</guid>
      <dc:creator>Raunak_Mohanty</dc:creator>
      <dc:date>2018-08-14T10:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: SharePoint List threshold Monitoring</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/SharePoint-List-threshold-Monitoring/m-p/725289#M4647</link>
      <description>&lt;P&gt;Thank you so much, Raunak.&lt;/P&gt;

&lt;P&gt;Yes, We are using .Net agent.&lt;/P&gt;

&lt;P&gt;Agree on the Information Points option. However, If I have the&amp;nbsp;identified the class\method that will provide me the count, when and&amp;nbsp;how will be the trigger for the Information point&amp;nbsp;to get the values?&lt;/P&gt;

&lt;P&gt;Just want to get your expert opinion.&lt;/P&gt;

&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 21:41:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/SharePoint-List-threshold-Monitoring/m-p/725289#M4647</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2018-08-14T21:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: SharePoint List threshold Monitoring</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/SharePoint-List-threshold-Monitoring/m-p/725290#M4648</link>
      <description>&lt;P&gt;Hi Mervin,&lt;/P&gt;

&lt;P&gt;&amp;nbsp; Apologies for the delay. I will just try and explain it with sample cade.&lt;/P&gt;

&lt;P&gt;Assume you have code like this in your solution&lt;/P&gt;

&lt;P&gt;Namespace&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Namespace SPSolution {
     Class SPClass {
   ......
   .....

   Public void AddItem(SPList list, CustomObject item) {
    .......
    .......
   }
 }
}&lt;/PRE&gt;

&lt;P&gt;You can create Info Point like this&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Class&lt;/STRONG&gt;: SPSolution.SPClass&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Method&lt;/STRONG&gt; : AddItem&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Custom Metric Definition&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Collect Data from&lt;/STRONG&gt; Method Param&amp;nbsp;@index 0&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Getter Chain&lt;/STRONG&gt;: this.Items.Count&lt;/P&gt;


&lt;P&gt;SPList has Count property which we can use to get the current count.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Raunak&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 07:38:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/SharePoint-List-threshold-Monitoring/m-p/725290#M4648</guid>
      <dc:creator>Raunak_Mohanty</dc:creator>
      <dc:date>2018-09-11T07:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: SharePoint List threshold Monitoring</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/SharePoint-List-threshold-Monitoring/m-p/725291#M4649</link>
      <description>&lt;P&gt;Hi, Raunak.&lt;/P&gt;

&lt;P&gt;Thank you so much for the response.&lt;/P&gt;
&lt;P&gt;My dillema here is that all of our SP Apps are all build in Server side coding and currently deployed to prod.&lt;/P&gt;

&lt;P&gt;Can we use CSOM codes? like javascript?&lt;/P&gt;

&lt;P&gt;I think , this will be my last question. Need to provide a good case study on what approach we are going to use to maximize AppD on all of our SP Apps.&lt;/P&gt;

&lt;P&gt;Thanks again in advance. Hope to hear your expert advice soon.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 08:06:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/SharePoint-List-threshold-Monitoring/m-p/725291#M4649</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2018-09-11T08:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: SharePoint List threshold Monitoring</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/SharePoint-List-threshold-Monitoring/m-p/725292#M4650</link>
      <description>Hi ,&lt;BR /&gt;&lt;BR /&gt; .Net Agent can only instrument managed code which is .Net. I do not see an issue with creating Custom Instrumentation Points ( like Info Points, Data Collectors) etc on server side code as that is what .net Agent is instrumenting and collecting all the metrics from.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Raunak&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Sep 2018 08:14:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/SharePoint-List-threshold-Monitoring/m-p/725292#M4650</guid>
      <dc:creator>Raunak_Mohanty</dc:creator>
      <dc:date>2018-09-11T08:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: SharePoint List threshold Monitoring</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/SharePoint-List-threshold-Monitoring/m-p/725293#M4651</link>
      <description>&lt;P&gt;Thank yo so much for the Info Raunak.&lt;/P&gt;

&lt;P&gt;If this is the case, what will be the impact to AppDynamics if a SharePoint Application is in Office365(Cloud Based platform version) of SharePoint?&lt;/P&gt;

&lt;P&gt;Does Appdynamics can still monitor Full cloud based application like office365?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Sep 2018 07:19:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/SharePoint-List-threshold-Monitoring/m-p/725293#M4651</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2018-09-13T07:19:56Z</dc:date>
    </item>
  </channel>
</rss>

