Plugin Directory

Changeset 1068140


Ignore:
Timestamp:
01/14/2015 10:20:19 PM (11 years ago)
Author:
ApplicationInsights
Message:

Removing custom event and adding icons.

Location:
application-insights/trunk
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • application-insights/trunk/ApplicationInsightsPlugin.php

    r1068087 r1068140  
    33Plugin Name: Application Insights
    44Description: Integrates a WordPress site with Microsoft Application Insights.
    5 Version: 2.0.2
     5Version: 2.1
    66Author: ApplicationInsights
    77License:  MIT
     
    2020$serverInstrumentation = new ApplicationInsights\WordPress\Server_Instrumentation();
    2121add_action('shutdown', array($serverInstrumentation, 'endRequest'));
    22        
  • application-insights/trunk/readme.txt

    r1068087 r1068140  
    1111== Description ==
    1212
    13 Integrates a WordPress site with Microsoft Application Insights.
     13Integrates a WordPress site with Microsoft Application Insights. More information can about Application Insights can be found here: http://azure.microsoft.com/en-us/documentation/articles/app-insights-get-started/
     14
     15Active development is done on GitHub: https://github.com/Microsoft/AppInsights-WordPress
     16
     17Other SDKs and documentation can be found here: https://github.com/Microsoft/AppInsights-Home
    1418
    1519== Installation ==
    1620
    17 1. Upload `ApplicationInsightsPlugin.php` to the `/wp-content/plugins/` directory
     211. Upload all files to the `/wp-content/plugins/` directory
    18222. Activate the plugin through the 'Plugins' menu in WordPress
    19233. Go to Settings -> Application Insights and enter you Instrumentation Key you received from http://portal.azure.com
    2024
    2125== Changelog ==
     26
     27= 2.1 =
     28* Removing unnecessary custom event from being logged.
    2229
    2330= 2.0.2 =
  • application-insights/trunk/src/Server_Instrumentation.php

    r1067514 r1068140  
    1414        $this->_telemetryClient = new \ApplicationInsights\Telemetry_Client();
    1515        $this->_telemetryClient->getContext()->setInstrumentationKey($application_insights_options["instrumentation_key"]);
    16         $this->_telemetryClient->trackEvent('ApplicationInsights_PluginLoaded');
    1716       
    1817        set_exception_handler(array($this, 'exceptionHandler'));
     
    4645    }
    4746   
    48    
    4947    function exceptionHandler(\Exception $exception)
    5048    {
Note: See TracChangeset for help on using the changeset viewer.