<?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: Web service metrics in ArcGIS Enterprise Questions</title>
    <link>https://community.esri.com/t5/arcgis-enterprise-questions/web-service-metrics/m-p/491312#M19036</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Jake,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; I am looking for a tool to measure the usage of our gis server services and applications. We need to measure which maps are being used, by whom, when, from where? ... Is there a tool from ESRI that does this? &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For an AGOL organization, you can use the &lt;/SPAN&gt;&lt;A href="http://blogs.esri.com/esri/arcgis/2014/02/09/activity-dashboard-for-arcgis-now-available/"&gt;Activity Dashboard&lt;/A&gt;&lt;SPAN&gt; which is available free from the &lt;/SPAN&gt;&lt;A href="http://marketplace.arcgis.com/"&gt;Esri MarketPlace&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;There is also a version for Portal for ArcGIS, learn more and get it from &lt;/SPAN&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=e1219d4695254138a35da4c57709725a"&gt;here&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the forthcoming ArcGIS 10.3 for Server release, Manager will have some reporting capabilities that will show things like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- total # of requests&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- average response time&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- maximum response time&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 May 2014 15:14:23 GMT</pubDate>
    <dc:creator>DerekLaw</dc:creator>
    <dc:date>2014-05-06T15:14:23Z</dc:date>
    <item>
      <title>Web service metrics</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/web-service-metrics/m-p/491310#M19034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am looking for a tool to measure the usage of our gis server services and applications.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;We need to measure which maps are being used, by whom, when, from where?&amp;nbsp; I am currently looking at Optimizer from Latitude Geographics,&amp;nbsp; Geosystems Monitor from Vestra, and Splunk.&amp;nbsp; How do you measure and report your usage?&amp;nbsp; Is there a tool from ESRI that does this?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Mar 2014 17:05:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/web-service-metrics/m-p/491310#M19034</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2014-03-29T17:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Web service metrics</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/web-service-metrics/m-p/491311#M19035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It helps to state which version of ArcGIS you are using when making a post.&amp;nbsp; To answer your question though, here are two ways you can derive usage information (although there are other methods besides just these):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Mine the ArcGIS Server Logs&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Starting at 10.1, the ArcGIS Server Administrator API allows you to mine information about individual services in order to get usage information, which is covered &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//0154000005vw000000"&gt;here&lt;/A&gt;&lt;SPAN&gt;.&amp;nbsp; To go a step further, you can automatically construct a feature class with the most highly-requested extents based on the example provided &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#/Example_Write_requested_map_extents_to_a_feature_class/0154000005w8000000/"&gt;here&lt;/A&gt;&lt;SPAN&gt;.&amp;nbsp; If you're clever with Python, you'll be able to collect some additional information using similar techniques.&amp;nbsp; If you're using ArcGIS 10.0 or earlier, you can still parse the ArcGIS Server log files (.DAT files) but you'll have to get a bit more complex with the scripting (which can be done using Windows batch, PowerShell, or Python scripting).&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Parse the IIS W3SVC Web Logs&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;The W3SVC log files (typically located at C:/WINDOWS/system32/LogFiles/W3SVC1 on a Windows 2003 machine) show the GET and POST requests made to the website from client machines.&amp;nbsp; The information typically includes the URL being requested along with a file download size, a time/date stamp, the client IP address, and a return code (200, 404, 403, 500, etc.).&amp;nbsp; You can use Windows batch scripting, PowerShell, or Python scripting to periodically parse the most current log file for the information you care about.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have evaluated the GeoSystems Monitor application in depth.&amp;nbsp; It's a pretty nice tool for collecting metrics, but the statistics backend data store for storing the usage information must be SQL Server or SQLite.&amp;nbsp; Oracle is not supported at this time, although that may not impact you.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If the response I provided answers your question, please mark the correct answer with the green check.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 15:29:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/web-service-metrics/m-p/491311#M19035</guid>
      <dc:creator>WilliamCraft</dc:creator>
      <dc:date>2014-03-31T15:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: Web service metrics</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/web-service-metrics/m-p/491312#M19036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Jake,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; I am looking for a tool to measure the usage of our gis server services and applications. We need to measure which maps are being used, by whom, when, from where? ... Is there a tool from ESRI that does this? &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For an AGOL organization, you can use the &lt;/SPAN&gt;&lt;A href="http://blogs.esri.com/esri/arcgis/2014/02/09/activity-dashboard-for-arcgis-now-available/"&gt;Activity Dashboard&lt;/A&gt;&lt;SPAN&gt; which is available free from the &lt;/SPAN&gt;&lt;A href="http://marketplace.arcgis.com/"&gt;Esri MarketPlace&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;There is also a version for Portal for ArcGIS, learn more and get it from &lt;/SPAN&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=e1219d4695254138a35da4c57709725a"&gt;here&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the forthcoming ArcGIS 10.3 for Server release, Manager will have some reporting capabilities that will show things like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- total # of requests&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- average response time&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- maximum response time&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2014 15:14:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/web-service-metrics/m-p/491312#M19036</guid>
      <dc:creator>DerekLaw</dc:creator>
      <dc:date>2014-05-06T15:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: Web service metrics</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/web-service-metrics/m-p/491313#M19037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi William,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The links that you are referring to are not available. Could you post the full URLs to the articles you are mentioning?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 08:44:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/web-service-metrics/m-p/491313#M19037</guid>
      <dc:creator>ermiastesfamariam</dc:creator>
      <dc:date>2014-10-08T08:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: Web service metrics</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/web-service-metrics/m-p/491314#M19038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just found this sample code in the documentation&lt;/P&gt;&lt;P&gt;&lt;A href="http://server.arcgis.com/en/server/latest/administer/windows/example-create-a-report-of-all-service-requests.htm" title="http://server.arcgis.com/en/server/latest/administer/windows/example-create-a-report-of-all-service-requests.htm"&gt;Example: Create a report of all service requests—Documentation (10.3 and 10.3.1) | ArcGIS for Server&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 18:02:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/web-service-metrics/m-p/491314#M19038</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2015-06-11T18:02:28Z</dc:date>
    </item>
  </channel>
</rss>

