Monitoring and Diagnostic Guidance for Windows Azure hosted Applications

Size: px
Start display at page:

Download "Monitoring and Diagnostic Guidance for Windows Azure hosted Applications"

Transcription

1 Monitoring and Diagnostic Guidance for Windows Azure hosted Applications Published: June 2010 Overview: This monitoring and diagnostics guide provides information on the tools available for applications hosted on the Windows Azure platform. It serves as a guideline for project teams (project managers, developers, Test, and Operations) and to assist those teams to ensure that monitoring and diagnostics are fully covered as part of the final deployment. Project teams are encouraged to become familiar with the information provided, outline critical aspects of current or new projects, and work with operations to build monitoring around that system. Author: Brian Copps 2010 Microsoft Corporation. All rights reserved. This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS SUMMARY. Microsoft, Azure, and Windows are either registered trademarks or trademarks of Microsoft Corporation in the United States and/or other countries. The names of actual companies and products mentioned herein may be the trademarks of their respective owners.

2 Table of Contents TABLE OF CONTENTS... 2 SUMMARY... 3 SOLUTION OVERVIEW... 3 HOW ERRORS ARE TRACKED... 3 HOW OPERATIONS USES THESE TOOLS... 3 MONITORING OPTIONS... 4 EVENT MONITORS... 4 Troubleshooting Documentation... 6 USER PERSPECTIVE MONITORING... 7 PERFORMANCE MONITORING... 8 WINDOWS AZURE DEVELOPER AND PROJECT GUIDANCE... 9 DIAGNOSTIC API (DIAGNOSTIC DATA COLLECTION)... 9 USING THE TRACESOURCE CLASS FOR TRACE (EVENT) LOGGING AZURE STORAGE GUIDANCE AND POLICIES APPENDIX ENABLE WINDOWS AZURE DIAGNOSTICS DATA SOURCES USING THE TRACESOURCE TO LOG EVENTS Configuration file sections (configure the Windows Azure trace listener for this specific trace source).. 13 C# code (use the TraceSource to log events) Web.Config Setting for Failed Request Tracing FOR MORE INFORMATION P a g e

3 Summary The goal of application monitoring is to operationally answer a simple question: Is the application running efficiently within its defined SLA parameters and without errors? If the answer to this question is no, then the Operations team needs to be made aware of this condition as soon as possible. Effective placement of monitoring on critical application and system breakpoints will help manage the hosted solutions. This document is intended for development and operations teams that need to monitor applications hosted on the Windows Azure Services Platform, enabling incident, problem, and knowledge management. Solution Overview This monitoring and diagnostics guide provides information on the tools available for applications hosted on the Windows Azure platform. It serves as a guideline for project teams (project managers, developers, Test, and Operations) and to assist those teams to ensure that monitoring and diagnostics are fully covered as part of the final deployment. Project teams are encouraged to become familiar with the information provided, outline critical aspects of current or new projects, and work with Operations to build monitoring around that system. How Errors Are Tracked Any alert thrown is collected into a central repository and pumped to the Tier 1 engineering team (24/7) for assessment. From that point, the team will resolve the problem following Technology Support Group (TSG) instructions or escalate the matter to the Tier 2 or Tier 3 engineer who owns that infrastructure. How Operations Uses These Tools Operations works closely with teams to ensure that their applications are tested according to site availability requirements. Operations cannot guarantee that the monitoring will cover all aspects of the application, but because resources will not allow a test for every page or function in a given application, Operations can modify or add testing if gaps are found. Your systems engineer will help you determine the best tools to use for your application. This document is being published and shared after frequent requests to externally share this information more broadly. Customers can leverage any or all of the best practices shared by the MSCOM team. 3 P a g e

4 Monitoring Options Windows Azure is a cloud services operating system that serves as the development, service hosting and service management environment for the Windows Azure platform. Windows Azure provides developers with on-demand compute and storage to host, scale, and manage web applications on the internet through Microsoft datacenters. Microsoft System Center Operations Manager 2007 R2 provides end-to-end monitoring for the enterprise IT environment. System Center Operations Manager can monitor thousands of servers, applications, and clients and provides comprehensive views of their health states. These views are key to a rapid and agile response to events that can impact the availability of services the IT department provides its customers. Event Monitors Based on the Windows Azure platform offerings and the security context used to run applications, two sources are used for events that in turn generate alerts for the 24/7 help desk: Windows event logging to the application log Microsoft.NET TraceSource event logging Note: At this time, the Source field cannot be used to make events unique (along with the event ID) or to identify the source of the event. The Microsoft.NET TraceSource does not include the concept of a Source field, and for the application event log, custom sources cannot be created because of the lack of administrative privileges required to register a new source. For now, the Event ID must uniquely identify an application or component, and a mapping must to be provided to Operations. As a best practice, include the name of the application or component in the body of the message. Moving forward, for applications developed specifically for Windows Azure, Microsoft.NET TraceSource event logging should be used to leverage the following Windows Azure fabric provisions: Development fabric trace integration for developers A deeper level of event verbosity control for events (See TraceEventType Enumeration in the Microsoft. NET Framework Class Library.) 4 P a g e

5 For older applications already using the application event log, monitoring is still possible if the event IDs do not overlap. Use the TraceSource class for trace logging, because it supports inserting distinct event IDs. For more information, see the section, Using the TraceSource to Log Events. The information that the application logs is used to trigger actionable alerts for Operations. In context, actionable means that Operations has enough information in the alert and/or the TGS guide to solve the incident. The event ID is used by event-based monitors. Product groups document which event IDs the monitors use to enable filtering so that only events used by the monitors defined in the Management Pack are inserted into Microsoft System Center Operations Manager The development team should provide list of event IDs to be monitored so that the IDs can be configured for alerting. Operations engineers should work with the Management Platform & Services Delivery (MPSD) Tools and Monitoring team to configure the monitors. At a high level, use three large buckets to classify application events in the application event log: Log using the Error type any application events that require immediate action by Operations. Log using the Warning type any application events that are actionable or need attention but dot require immediate action by Operations. By default, application events with a severity type lower than Warning will not be persisted to storage. (The Windows Azure diagnostics agent filter verbosity level is set for Warning.) As a debug procedure, the Windows Azure diagnostics agent filter verbosity level can be temporarily changed to a lower severity type, enabling storage of events with lower severity types. Each event logged must: Use a unique value for Event ID. Be less than 4 KB in size and include: Module, assembly, class, and method name, as appropriate. The error message. Whether a message or file was involved, including its identity. If appropriate, a referring URL or some method of identifying who or what called the service. 5 P a g e

6 Sufficient information to help Operations to determine what the problem is and/or what caused it. One event ID as a catch-all for unexpected or unhandled errors. Events logged must not: Write events to support metrics or statistics generation. Include passwords in any error description. Include personally identifiable information (PII). Spam the application event log with a flood of events. Note: The MPSD Tools and Monitoring team considers applications that generate more than 250 events per server per day spammers and may disable monitoring the application until the project team addresses the problem. Troubleshooting Documentation Application developers must document a course of action for any event of type Error. Operations considers it a best practice if an application developer documents all application events of any type. As part of the deployment, the development team must provide documentation that includes the following information for each event ID assigned to their application: Event ID Source (application, class, and so on) Error type (error, informational, debug mode only) Example event log entry Problem description Resolution steps Message displayed to users, if applicable; for user interface (UI) errors, the UI may display a user-friendly error message that will be different from what is written to the event log. Best practices for event logging and reporting include: Anything informational or a warning should not be written as an error into the logs. Where additional non-actionable information needs to be collected, allow a flag to be set on demand (such as a configuration file) where information or warning entries can be gathered. This flag could be used in situations where application errors need to be traced from the time an application starts to run. For Windows Azure, use the diagnostics agent filter verbosity level to determine the event types that are persisted in table storage. 6 P a g e

7 Ensure that event IDs are unique. Ensure that event sources, which are inserted into the event message, have the application name as a qualifier (event source = ApplicationName_ErrorReadData) in order to enable Operations to quickly identify where the error is coming from. Where possible, ensure that event text is descriptive enough that appropriate action can be taken. Document event IDs used for an application, and provide troubleshooting steps to resolve these errors. This is the key for monitoring and resolving issues with quick turnaround times for that application. In situations where an error is generated a number of times, allow the application to write every tenth occurrence (a value that can be configured through a configuration file) of that error to the event log. Note: The first time an error occurs, it is always written to the log. Subsequent, similar errors are then incremented. This behavior ensures that an event log is not full with the same error, resulting in loss of other valuable information. Do not log PII in the event logs even as errors. Where it is required, allow for a flag to be set to ensure Operations intervention. User Perspective Monitoring System Center Operations Manager allows you to create synthetic transactions that act like a user of the service and report back with the success or failure and performance statistics of its execution. The synthetic transaction results can be used for reporting or as an alert to possible service problems. This feature tests a server at the application layer to determine whether the server is available. This tool will be used to monitor valid URLs, looking for various HTTP status codes or timeout on the URL execution. The tool has the ability to generate transactionbased tests (tests that would require user input for successful execution). Whenever possible, application developers should develop a test page (or pages) that test the core functionality of the application during the normal software development cycle. System Center Operations Manager calls this test page. The status code returned with the result of the test page determines the primary health of the application. This page must be able to initialize any code and touch back-end dependencies. The test page must: Return an HTTP 200 message on success. Return an HTTP code that can be distinguished on error conditions (that is, greater than 599). 7 P a g e

8 Return the HTTP result description (not the text on the page, necessarily) describing the error. Be relatively lightweight (especially if you plan on testing it frequently). Best practices for application monitoring pages include: A monitoring page should test for the success of a critical feature (or features) or dependencies and report via an HTTP status code: 200 = Success, >599 for an application-specific failure. A monitoring page can be used to create a multi-step test in which each step can test a specific piece of functionality. Each step can then return an HTTP status code of 200 upon success or a non-599 HTTP status code upon failure of that step. Document each monitoring test step in the monitoring page, related HTTP status codes, and the action to be taken when a specific non-200 status code is returned to the monitoring pages. Apart from returning a non-200 status code, monitoring pages can be used to write events into the application event log to provide more specific information about the error that can be used for further troubleshooting purposes. A monitoring page representing critical features and dependencies can be used to report on the overall availability of the system, if required. Performance Monitoring This feature is currently not available. Project teams will be notified when such monitoring is available. 8 P a g e

9 Windows Azure Developer and Project Guidance Diagnostic API (Diagnostic Data Collection) A separate storage account will be created to store diagnostic data, ensuring that application and monitoring data is separated and can be accessed independently. The Windows Azure Web and Worker roles must be instrumented to enable collection for the Windows Azure diagnostic data sources shown in Table 1. Table 1. Windows Azure Diagnostic Data Sources Data source Windows Azure Details Stored on platform setting Windows Azure logs Enabled Requires that trace listener be added to web.config or application.config: WADLogsTable (table) <system.diagnostics> The ScheduledTransferPeriod is set to 1 minute. The Windows Azure diagnostics agent filter verbosity level will be set for Warning (and higher). Windows event logs Enabled Events from application and system event logs The ScheduledTransferPeriod is set to 1 minute. WADWindowsEventLogs Table (table) The Windows Azure diagnostics agent filter verbosity level will be set for Warning (and higher). See Appendix IIS 7.0 Logs Enabled The ScheduledTransferPeriod is set to 10 minutes. wad-iis-logfiles (blob container) IIS7 Failed Request logs Enabled Enable tracing for all failed requests with status codes under the system.webserver section of the role's web.config file. wad-iis-failedreqlogfiles (blob container) The ScheduledTransferPeriod is set to 10 minutes. See Appendix Performance counters Enabled Enable logging for performance counters. Set the SampleRate and ScheduledTransferPeriod to 5 minutes. WADPerformanceCounte rstable (table) See Appendix 9 P a g e

10 The Windows Azure platform provides this functionality, and it does not require additional development work. For more information about the Windows Azure diagnostic data sources, see Initializing and Configuring Diagnostic Data Sources. The diagnostic information is stored on the dedicated storage account Operations Storage. Using the TraceSource Class for Trace (Event) Logging When using Microsoft.NET TraceSource event logging to log events, use the TraceSource class, because it supports event IDs. Using the generic Trace.Write and Trace.WriteEvent causes the event ID to be 0 for all events, which goes against the guidance in the Event Monitoring section. See Using the TraceSource to Log Events in the Appendix for C# code. Azure Storage Guidance and Policies A separate storage account is created to store diagnostic data. The diagnostic data stored in Windows Azure storage is used for monitoring as well as to create application baselines. Table 2 shows the retention policy. Table 2. Windows Azure Storage Retention Policy Data Source Windows Azure platform setting Retention period Stored on Windows Azure logs Windows event logs Enabled 1 week Windows Azure WADLogsTable (table) Enabled 1 month Windows Azure WADWindowsEventLogsTable (table) IIS 7.0 logs Enabled 1 week Windows Azure wad-iis-logfiles (blob container) IIS 7.0 failed request logs Performance counters Enabled 1 week Windows Azure wad-iis-failedreqlogfiles (blob container) Enabled 1 month Windows Azure WADPerformanceCountersTable (table) For some data sources, the size of the data can be estimated in advance (performance counters); for other sources (Microsoft Internet Information Services [IIS} logs), it cannot. 10 P a g e

11 These are the minimal retention requirements; they can be change based on business or operational requirements. Application-specific data is not stored in the same store as the diagnostic data and is not subject to this policy. 11 P a g e

12 Appendix Enable Windows Azure Diagnostics Data Sources public override bool OnStart() { //Get Default Config DiagnosticMonitorConfiguration config = DiagnosticMonitor.GetDefaultInitialConfiguration(); //Windows Performance Counters List<string> counters = new List<string>(); counters.add(@"\processor(_total)\% Processor Time"); counters.add(@"\memory\available Mbytes"); counters.add(@"\tcpv4\connections Established"); counters.add(@"\asp.net Applications( Total )\Requests/Sec"); counters.add(@"\network Interface(*)\Bytes Received/sec"); counters.add(@"\network Interface(*)\Bytes Sent/sec"); foreach (string counter in counters) { PerformanceCounterConfiguration counterconfig = new PerformanceCounterConfiguration(); counterconfig.counterspecifier = counter; counterconfig.samplerate = TimeSpan.FromMinutes(5); } config.performancecounters.datasources.add(counterconfig); config.performancecounters.scheduledtransferperiod = TimeSpan.FromMinutes(5); //Windows Event Logs config.windowseventlog.datasources.add("system!*"); config.windowseventlog.datasources.add("application!*"); config.windowseventlog.scheduledtransferperiod = TimeSpan.FromMinutes(1); config.windowseventlog.scheduledtransferloglevelfilter = LogLevel.Warning; //Azure Trace Logs config.logs.scheduledtransferperiod = TimeSpan.FromMinutes(1); config.logs.scheduledtransferloglevelfilter = LogLevel.Warning; //Crash Dumps CrashDumps.EnableCollection(true); //IIS Logs config.directories.scheduledtransferperiod=timespan.fromminutes(10); DiagnosticMonitor.Start("DiagnosticsConnectionString", config); // For information on handling configuration changes // see the MSDN topic at RoleEnvironment.Changing += RoleEnvironmentChanging; } return base.onstart(); 12 P a g e

13 Using the TraceSource to Log Events Configuration file sections (configure the Windows Azure trace listener for this specific trace source) <system.diagnostics> <sources> <source name="mytracesource" switchname="sourceswitch" switchtype="system.diagnostics.sourceswitch"> <listeners> <add type="microsoft.windowsazure.diagnostics.diagnosticmonitortracelistener, Microsoft.WindowsAzure.Diagnostics, Version= , Culture=neutral, PublicKeyToken=31bf3856ad364e35" name="azurediagnostics"> <filter type="" /> </add> </listeners> </source> </sources> <switches> <add name="sourceswitch" value="warning"/> </switches> </system.diagnostics> C# code (use the TraceSource to log events) public static class Logging { private static TraceSource Ts = new TraceSource("MyTraceSource", SourceLevels.Warning); public static void Write(TraceEventType tracetype, int eventid, string message) { //Log event Ts.TraceEvent(traceType, eventid, message); } } Web.Config Setting for Failed Request Tracing <tracing> <tracefailedrequests> <add path="*"> <traceareas> <add provider="asp" verbosity="verbose" /> <add provider="aspnet" areas="infrastructure,module,page,appservices" verbosity="verbose" /> <add provider="isapi Extension" verbosity="verbose" /> <add provider="www Server" areas="authentication,security,filter,staticfile,cgi,compression,cache,requestnotifica tions,module" verbosity="verbose" /> </traceareas> <failuredefinitions statuscodes=" " /> </add> </tracefailedrequests> 13 P a g e

14 </tracing> 14 P a g e

15 For More Information For more information about Microsoft products or services, call the Microsoft Sales Information Center at (800) In Canada, call the Microsoft Canada information Centre at (800) Outside the 50 United States and Canada, please contact your local Microsoft subsidiary. To access information through the World Wide Web, go to: Microsoft Corporation System Center Operations Manager Windows Azure Platform Initializing and Configuring Diagnostic Data Sources 15 P a g e

Monitoring Guidelines for Microsoft.com and Update.Microsoft.com

Monitoring Guidelines for Microsoft.com and Update.Microsoft.com Monitoring Guidelines for Microsoft.com and Update.Microsoft.com Published: June 2010 Overview: This document shares experiences in monitoring and diagnostics from the Operations team running Microsoft.com

More information

SAP Master Data Governance

SAP Master Data Governance SAP Master Data Governance Operations Guide for Utopia EAM Solutions for MDG CUSTOMER Document Version: 710 V2.0 14-AUG-2015 Table of Contents Document History... 3 Getting Started... 4 Monitoring of Utopia

More information

10964C: Cloud & Datacenter Monitoring with System Center Operations Manager

10964C: Cloud & Datacenter Monitoring with System Center Operations Manager 10964C: Cloud & Datacenter Monitoring with System Center Course Details Course Code: Duration: Notes: 10964C 5 days Elements of this syllabus are subject to change. About this course This course equips

More information

Getting Started with Sitecore Azure

Getting Started with Sitecore Azure Sitecore Azure 3.1 Getting Started with Sitecore Azure Rev: 2015-09-09 Sitecore Azure 3.1 Getting Started with Sitecore Azure An Overview for Sitecore Administrators Table of Contents Chapter 1 Getting

More information

Dell Active Administrator 8.0

Dell Active Administrator 8.0 What s new in Dell Active Administrator 8.0 January 2016 Dell Active Administrator 8.0 is the upcoming release of Dell Software's complete solution for managing Microsoft Active Directory security auditing,

More information

This module provides an overview of service and cloud technologies using the Microsoft.NET Framework and the Windows Azure cloud.

This module provides an overview of service and cloud technologies using the Microsoft.NET Framework and the Windows Azure cloud. Module 1: Overview of service and cloud technologies This module provides an overview of service and cloud technologies using the Microsoft.NET Framework and the Windows Azure cloud. Key Components of

More information

Cloud & Datacenter Monitoring with System Center Operations Manager

Cloud & Datacenter Monitoring with System Center Operations Manager Page 1 of 5 Overview This course equips students with the skills they require to deploy and configure System Center 2012 R2 Operations. Using hands-on labs, students learn the following: How to architect

More information

Implementing Support and Monitoring For a Business- Critical Application Migrated to Windows Azure

Implementing Support and Monitoring For a Business- Critical Application Migrated to Windows Azure Implementing Support and Monitoring For a Business- Critical Application Migrated to Windows Azure Published: August 2011 Microsoft IT had recently migrated BCWeb a complex, business-critical application

More information

Matrix Logic WirelessDMS Email Service 2.0

Matrix Logic WirelessDMS Email Service 2.0 Matrix Logic WirelessDMS Email Service 2.0 Version 2.0 August 2009. WHAT IS WDMS EMAIL SERVICE?...2 FEATURES OF WDMS EMAIL SERVICE...3 HOW DOES WDMS EMAIL SERVICE WORK?...4 REQUIREMENTS...5 Server Prerequesites...5

More information

Published April 2010. Executive Summary

Published April 2010. Executive Summary Effective Incident, Problem, and Change Management Integrating People, Process, and Technology in the Datacenter Published April 2010 Executive Summary Information technology (IT) organizations today must

More information

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008.

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008. Znode Multifront - Installation Guide Version 6.2 1 System Requirements To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server

More information

How To Manage A System Center 2012 R2 Operation Manager

How To Manage A System Center 2012 R2 Operation Manager CÔNG TY CỔ PHẦN TRƯỜNG CNTT TÂN ĐỨC TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC LEARN MORE WITH LESS! Course 10964B: Length: Cloud & Datacenter Monitoring with System Center Operations Manager Audience:

More information

Diagnostic Manager. User Guide. Publication Date: September 04, 2015

Diagnostic Manager. User Guide. Publication Date: September 04, 2015 Diagnostic Manager Publication Date: September 04, 2015 All Rights Reserved. This software is protected by copyright law and international treaties. Unauthorized reproduction or distribution of this software,

More information

Client Monitoring with Microsoft System Center Operations Manager 2007

Client Monitoring with Microsoft System Center Operations Manager 2007 Client Monitoring with Microsoft System Center Operations Manager 2007 Microsoft Corporation Published: December 18, 2006 Updated: December 18, 2006 Executive Summary Client monitoring is a new feature

More information

Diagnostics and Troubleshooting Using Event Policies and Actions

Diagnostics and Troubleshooting Using Event Policies and Actions Diagnostics and Troubleshooting Using Event Policies and Actions Brocade Network Advisor logs events and alerts generated by managed devices and the management server and presents them through the master

More information

Monitoring Remedy with BMC Solutions

Monitoring Remedy with BMC Solutions Monitoring Remedy with BMC Solutions Overview How does BMC Software monitor Remedy with our own solutions? The challenge is many fold with a solution like Remedy and this does not only apply to Remedy,

More information

Optimizing Business Continuity Management with NetIQ PlateSpin Protect and AppManager. Best Practices and Reference Architecture

Optimizing Business Continuity Management with NetIQ PlateSpin Protect and AppManager. Best Practices and Reference Architecture Optimizing Business Continuity Management with NetIQ PlateSpin Protect and AppManager Best Practices and Reference Architecture WHITE PAPER Table of Contents Introduction.... 1 Why monitor PlateSpin Protect

More information

Basic ShadowProtect Troubleshooting

Basic ShadowProtect Troubleshooting Level 11, 53 Walker Street North Sydney NSW 2060 Australia t +61 2 9929 9770 f +61 2 9929 9771 w www.storagecraft.com.au Basic ShadowProtect Synopsis This article describes basic ShadowProtect troubleshooting

More information

Mendix ExpertDesk, Change and Incident Management. Customer Support

Mendix ExpertDesk, Change and Incident Management. Customer Support Mendix ExpertDesk, Change and Incident Management Customer Support Mendix Customer Support Defined roles 0, 1st, 2nd and 3rd Tier Support Support level Description Role Tier 0 Online Forum: https://mxforum.mendix.com

More information

Windows Scheduled Tasks Management Pack Guide for System Center Operations Manager. Published: 07 March 2013

Windows Scheduled Tasks Management Pack Guide for System Center Operations Manager. Published: 07 March 2013 Windows Scheduled Tasks Management Pack Guide for System Center Operations Manager Published: 07 March 2013 Copyright Information in this document, including URL and other Internet Web site references,

More information

Event Manager. LANDesk Service Desk

Event Manager. LANDesk Service Desk Event Manager LANDesk Service Desk LANDESK SERVICE DESK EVENT MANAGER GUIDE This document contains information that is the proprietary and confidential property of LANDesk Software, Inc. and/or its affiliated

More information

Cloud Service Edition. Operations Guide

Cloud Service Edition. Operations Guide Cloud Service Edition Operations Guide Gridpro AB Rev: 2.0.5500 Published: January 2015 Contents User Guides... 3 Register Incident... 3 Reassign Incident/Service Request... 5 Add Comment to Incident/Service

More information

Application Report Help. 2014 Kepware Technologies

Application Report Help. 2014 Kepware Technologies 2014 Kepware Technologies 2 Table of Contents Table of Contents 2 3 Overview 3 Accessing the Application Report 4 Collecting Event Logs 5 Creating On-Demand Process Memory Dumps 7 Enabling Process Memory

More information

WebSphere Commerce V7 Feature Pack 3

WebSphere Commerce V7 Feature Pack 3 WebSphere Commerce V7 Feature Pack 3 Precision marketing updates 2011 IBM Corporation WebSphere Commerce V7 Feature Pack 3 includes some precision marketing updates. There is a new trigger, Customer Checks

More information

Management Reporter Integration Guide for Microsoft Dynamics AX

Management Reporter Integration Guide for Microsoft Dynamics AX Microsoft Dynamics Management Reporter Integration Guide for Microsoft Dynamics AX July 2013 Find updates to this documentation at the following location: http://go.microsoft.com/fwlink/?linkid=162565

More information

Developing Windows Azure and Web Services

Developing Windows Azure and Web Services Course M20487 5 Day(s) 30:00 Hours Developing Windows Azure and Web Services Introduction In this course, students will learn how to design and develop services that access local and remote data from various

More information

CA Nimsoft Monitor. Probe Guide for URL Endpoint Response Monitoring. url_response v4.1 series

CA Nimsoft Monitor. Probe Guide for URL Endpoint Response Monitoring. url_response v4.1 series CA Nimsoft Monitor Probe Guide for URL Endpoint Response Monitoring url_response v4.1 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject

More information

SCUt ils SmartAssign Guide Solution for Microsoft System Center 2012 Service Manager

SCUt ils SmartAssign Guide Solution for Microsoft System Center 2012 Service Manager SCUt ils SmartAssign Guide Solution for Microsoft System Center 2012 Service Manager Published: 06 th March 2015 Version: 1.1 Authors: Marat Kuanyshev Feedback: [email protected] Contents 1. Getting

More information

Unwired Revolution Gains Full Visibility into Enterprise Environments with Server Side and Mobile App Monitoring from New Relic.

Unwired Revolution Gains Full Visibility into Enterprise Environments with Server Side and Mobile App Monitoring from New Relic. At a Glance INDUSTRY Professional services LOCATION Phoenix, Arizona USE CASE Monitor performance of mobile apps designed for enterprise clients WHY NEW RELIC No firewall exceptions or additional servers

More information

Installation Manual v2.0.0

Installation Manual v2.0.0 Installation Manual v2.0.0 Contents ResponseLogic Install Guide v2.0.0 (Command Prompt Install)... 3 Requirements... 4 Installation Checklist:... 4 1. Download and Unzip files.... 4 2. Confirm you have

More information

Microsoft Azure Security and Audit Log Management

Microsoft Azure Security and Audit Log Management Microsoft Azure Security and Audit Log Management Abstract The security logs in Microsoft Azure Cloud Services (which provides Platform as a Service or PaaS) and Virtual Machines (which provides Infrastructure

More information

MS 20487A Developing Windows Azure and Web Services

MS 20487A Developing Windows Azure and Web Services MS 20487A Developing Windows Azure and Web Services Description: Days: 5 Prerequisites: In this course, students will learn how to design and develop services that access local and remote data from various

More information

McAfee One Time Password

McAfee One Time Password McAfee One Time Password Integration Module Outlook Web App 2010 Module version: 1.3.1 Document revision: 1.3.1 Date: Feb 12, 2014 Table of Contents Integration Module Overview... 3 Prerequisites and System

More information

3M Command Center. Installation and Upgrade Guide

3M Command Center. Installation and Upgrade Guide 3M Command Center Installation and Upgrade Guide Copyright 3M, 2015. All rights reserved., 78-8129-3760-1d 3M is a trademark of 3M. Microsoft, Windows, Windows Server, Windows Vista and SQL Server are

More information

Monitoring App V eg Enterprise v6

Monitoring App V eg Enterprise v6 Monitoring App V eg Enterprise v6 Restricted Rights Legend The information contained in this document is confidential and subject to change without notice. No part of this document may be reproduced or

More information

Track-It! 8.5. The World s Most Widely Installed Help Desk and Asset Management Solution

Track-It! 8.5. The World s Most Widely Installed Help Desk and Asset Management Solution The World s Most Widely Installed Help Desk and Asset Management Solution Key Benefits Easy to use! Gain full control of your IT assets, hardware and software Simplify software license management Save

More information

TIBCO Spotfire Metrics Prerequisites and Installation

TIBCO Spotfire Metrics Prerequisites and Installation TIBCO Spotfire Metrics Prerequisites and Installation Software Release 6.0 November 2013 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF

More information

Windows Scheduled Task and PowerShell Scheduled Job Management Pack Guide for Operations Manager 2012

Windows Scheduled Task and PowerShell Scheduled Job Management Pack Guide for Operations Manager 2012 Windows Scheduled Task and PowerShell Scheduled Job Management Pack Guide for Operations Manager 2012 Published: July 2014 Version 1.2.0.500 Copyright 2007 2014 Raphael Burri, All rights reserved Terms

More information

MOC 20487 DEVELOPING WINDOWS AZURE AND WEB SERVICES

MOC 20487 DEVELOPING WINDOWS AZURE AND WEB SERVICES ONE STEP AHEAD. MOC 20487 DEVELOPING WINDOWS AZURE AND WEB SERVICES Length: 5 Days Level: 300 Technology: Microsoft Visual Studio 2012 Delivery Method: Instructor-led (classroom) COURSE OUTLINE Module

More information

Enhanced Diagnostics Improve Performance, Configurability, and Usability

Enhanced Diagnostics Improve Performance, Configurability, and Usability Application Note Enhanced Diagnostics Improve Performance, Configurability, and Usability Improved Capabilities Available for Dialogic System Release Software Application Note Enhanced Diagnostics Improve

More information

ALM 271 From End-User Experience Monitoring to Management Dashboards and Reporting Stefan Lahr, SAP Active Global Support September, 2011

ALM 271 From End-User Experience Monitoring to Management Dashboards and Reporting Stefan Lahr, SAP Active Global Support September, 2011 ALM 271 From End-User Experience Monitoring to Management Dashboards and Reporting Stefan Lahr, SAP Active Global Support September, 2011 Disclaimer This presentation outlines our general product direction

More information

System Requirements for Microsoft Dynamics NAV 2013 R2

System Requirements for Microsoft Dynamics NAV 2013 R2 System Requirements for Microsoft Dynamics NAV 2013 R2 February 2014 Contents 3 System Requirements for the Microsoft Dynamics NAV Windows Client 3 Web Client 4 System Requirements for Microsoft Dynamics

More information

ISSUE TRACK FOR WINDOWS INSTALLATION GUIDE VERSION 4.0.0.XX

ISSUE TRACK FOR WINDOWS INSTALLATION GUIDE VERSION 4.0.0.XX ISSUE TRACK FOR WINDOWS INSTALLATION GUIDE VERSION 4.0.0.XX Contents CONTENTS Chapter 1 Introduction 1-1 Welcome to Issue Track for Windows 1-1 About this Guide 1-1 Product Name 1-1 Documentation Roadmap

More information

Cloud Services Catalog with Epsilon

Cloud Services Catalog with Epsilon Cloud Services Catalog with Epsilon Modern IT enterprises face several challenges while building a service catalog for their data center. Provisioning with a cloud management platform solves some of these

More information

How To Create A Help Desk For A System Center System Manager

How To Create A Help Desk For A System Center System Manager System Center Service Manager Vision and Planned Capabilities Microsoft Corporation Published: April 2008 Executive Summary The Service Desk function is the primary point of contact between end users and

More information

MOC 10964 CLOUD & DATACENTER MONITORING WITH SYSTEM CENTER OPERATIONS MANAGER

MOC 10964 CLOUD & DATACENTER MONITORING WITH SYSTEM CENTER OPERATIONS MANAGER ONE STEP AHEAD. MOC 10964 CLOUD & DATACENTER MONITORING WITH SYSTEM CENTER OPERATIONS MANAGER Length: 5 Days Level: 300 Technology: Microsoft System Center 2012 Delivery Method: Instructor-led (classroom)

More information

EMC Documentum Connector for Microsoft SharePoint

EMC Documentum Connector for Microsoft SharePoint EMC Documentum Connector for Microsoft SharePoint Version 7.1 Installation Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 2013-2014

More information

Splunk for VMware Virtualization. Marco Bizzantino [email protected] Vmug - 05/10/2011

Splunk for VMware Virtualization. Marco Bizzantino marco.bizzantino@kiratech.it Vmug - 05/10/2011 Splunk for VMware Virtualization Marco Bizzantino [email protected] Vmug - 05/10/2011 Collect, index, organize, correlate to gain visibility to all IT data Using Splunk you can identify problems,

More information

Developing Windows Azure and Web Services

Developing Windows Azure and Web Services CÔNG TY CỔ PHẦN TRƯỜNG CNTT TÂN ĐỨC TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC LEARN MORE WITH LESS! Course 20487: Developing Windows Azure and Web Services Length: 5 Days Audience: Developers Level: 300

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Processes and Best Practices Guide (Codeless Mode)

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Processes and Best Practices Guide (Codeless Mode) HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Processes and Best Practices Guide (Codeless Mode) Document Release Date: December, 2014 Software Release

More information

Troubleshooting CallManager Problems with Windows NT and Internet Information Server (IIS)

Troubleshooting CallManager Problems with Windows NT and Internet Information Server (IIS) Troubleshooting CallManager s with Windows NT and Internet Information Server (IIS) Document ID: 13973 Contents Introduction Prerequisites Requirements Components Used Conventions CallManager Administration

More information

Course Syllabus. Planning and Administering Windows Server 2008 Servers. Key Data. Audience. At Course Completion. Prerequisites. Recommended Courses

Course Syllabus. Planning and Administering Windows Server 2008 Servers. Key Data. Audience. At Course Completion. Prerequisites. Recommended Courses Course Syllabus Planning and Administering Windows Server 2008 Servers This five-day instructor-led course provides students with the knowledge and skills to implement, monitor, and maintain Windows Server

More information

2012 Nolio Ltd. All rights reserved

2012 Nolio Ltd. All rights reserved 2012 Nolio Ltd. All rights reserved The information contained herein is proprietary and confidential. No part of this document may be reproduced without explicit prior written permission from Nolio Ltd.

More information

1.1 SERVICE DESCRIPTION

1.1 SERVICE DESCRIPTION ADVANIA OPENCLOUD SERCVICE LEVEL AGREEMENT 1.1 SERVICE DESCRIPTION The service is designed in a way that will minimize Advania s operational involvement. Advania administrates the cloud platform and provides

More information

SERVICES BRONZE SILVER GOLD PLATINUM. On-Site emergency response time 3 Hours 3 Hours 1-2 Hours 1 Hour or Less

SERVICES BRONZE SILVER GOLD PLATINUM. On-Site emergency response time 3 Hours 3 Hours 1-2 Hours 1 Hour or Less SERVICE SUMMARY ITonDemand provides four levels of service to choose from to meet our clients range of needs. Plans can also be customized according to more specific environment needs. SERVICES BRONZE

More information

EXAM - 70-518. PRO:Design & Develop Windows Apps Using MS.NET Frmwk 4. Buy Full Product. http://www.examskey.com/70-518.html

EXAM - 70-518. PRO:Design & Develop Windows Apps Using MS.NET Frmwk 4. Buy Full Product. http://www.examskey.com/70-518.html Microsoft EXAM - 70-518 PRO:Design & Develop Windows Apps Using MS.NET Frmwk 4 Buy Full Product http://www.examskey.com/70-518.html Examskey Microsoft 70-518 exam demo product is here for you to test the

More information

Java Web Services SDK

Java Web Services SDK Java Web Services SDK Version 1.5.1 September 2005 This manual and accompanying electronic media are proprietary products of Optimal Payments Inc. They are to be used only by licensed users of the product.

More information

Perceptive Intelligent Capture Solution Configration Manager

Perceptive Intelligent Capture Solution Configration Manager Perceptive Intelligent Capture Solution Configration Manager Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: February 2016 2015 Lexmark International Technology, S.A.

More information

ITIL Event Management in the Cloud

ITIL Event Management in the Cloud ITIL Event Management in the Cloud An AWS Cloud Adoption Framework Addendum July 2015 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved. Notices This document is provided for informational

More information

EView/400i Management Pack for Systems Center Operations Manager (SCOM)

EView/400i Management Pack for Systems Center Operations Manager (SCOM) EView/400i Management Pack for Systems Center Operations Manager (SCOM) Concepts Guide Version 6.3 November 2012 Legal Notices Warranty EView Technology makes no warranty of any kind with regard to this

More information

Support and Service Management Service Description

Support and Service Management Service Description Support and Service Management Service Description Business Productivity Online Suite - Standard Microsoft Exchange Online Standard Microsoft SharePoint Online Standard Microsoft Office Communications

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

Cello How-To Guide. Exception Management

Cello How-To Guide. Exception Management Cello How-To Guide Exception Management Contents 1 Exception handling... 3 1.1.1 Exception Storage... 3 1.1.2 Exception Service... 5 1.1.3 Example Consumption... 5 1.1.4 Exception logging related Configuration...

More information

Deploying Microsoft Operations Manager with the BIG-IP system and icontrol

Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Deployment Guide Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Welcome to the BIG-IP LTM system -

More information

Installation Guide NetIQ AppManager

Installation Guide NetIQ AppManager Installation Guide NetIQ AppManager April 2016 www.netiq.com/documentation Legal Notice NetIQ AppManager is covered by United States Patent No(s): 05829001, 05986653, 05999178, 06078324, 06397359, 06408335.

More information

PaperCut Payment Gateway Module CyberSource Quick Start Guide

PaperCut Payment Gateway Module CyberSource Quick Start Guide PaperCut Payment Gateway Module CyberSource Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting up, and testing the

More information

Frequently Asked Questions Plus What s New for CA Application Performance Management 9.7

Frequently Asked Questions Plus What s New for CA Application Performance Management 9.7 Frequently Asked Questions Plus What s New for CA Application Performance Management 9.7 CA Technologies is announcing the General Availability (GA) of CA Application Performance Management (CA APM) 9.7

More information

Kaseya Traverse. Kaseya Product Brief. Predictive SLA Management and Monitoring. Kaseya Traverse. Service Containers and Views

Kaseya Traverse. Kaseya Product Brief. Predictive SLA Management and Monitoring. Kaseya Traverse. Service Containers and Views Kaseya Product Brief Kaseya Traverse Predictive SLA Management and Monitoring Kaseya Traverse Traverse is a breakthrough cloud and service-level monitoring solution that provides real time visibility into

More information

System Center 2012 Suite SYSTEM CENTER 2012 SUITE. BSD BİLGİSAYAR Adana

System Center 2012 Suite SYSTEM CENTER 2012 SUITE. BSD BİLGİSAYAR Adana 2013 System Center 2012 Suite SYSTEM CENTER 2012 SUITE BSD BİLGİSAYAR Adana Configure and manage apps, services, computers, and VMs... 1 Operations Manager... 3 Configuration Manager... 4 Endpoint Protection...

More information

LANDESK Service Desk. Desktop Manager

LANDESK Service Desk. Desktop Manager LANDESK Service Desk Desktop Manager LANDESK SERVICE DESK DESKTOP MANAGER GUIDE This document contains information, which is the confidential information and/or proprietary property of LANDESK Software,

More information

TIBCO Spotfire Web Player 6.0. Installation and Configuration Manual

TIBCO Spotfire Web Player 6.0. Installation and Configuration Manual TIBCO Spotfire Web Player 6.0 Installation and Configuration Manual Revision date: 12 November 2013 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Processes and Best Practices Guide

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Processes and Best Practices Guide HP Service Manager Software Version: 9.34 For the supported Windows and UNIX operating systems Processes and Best Practices Guide Document Release Date: July 2014 Software Release Date: July 2014 Legal

More information

APPLICATION MANAGEMENT SUITE FOR ORACLE E-BUSINESS SUITE APPLICATIONS

APPLICATION MANAGEMENT SUITE FOR ORACLE E-BUSINESS SUITE APPLICATIONS APPLICATION MANAGEMENT SUITE FOR ORACLE E-BUSINESS SUITE APPLICATIONS Oracle Application Management Suite for Oracle E-Business Suite delivers capabilities that helps to achieve high levels of application

More information

TROUBLESHOOTING RSA ACCESS MANAGER SINGLE SIGN-ON FOR WEB-BASED APPLICATIONS

TROUBLESHOOTING RSA ACCESS MANAGER SINGLE SIGN-ON FOR WEB-BASED APPLICATIONS White Paper TROUBLESHOOTING RSA ACCESS MANAGER SINGLE SIGN-ON FOR WEB-BASED APPLICATIONS Abstract This white paper explains how to diagnose and troubleshoot issues in the RSA Access Manager single sign-on

More information

Symantec Mail Security for Microsoft Exchange Management Pack Integration Guide

Symantec Mail Security for Microsoft Exchange Management Pack Integration Guide Symantec Mail Security for Microsoft Exchange Management Pack Integration Guide Symantec Mail Security for Microsoft Exchange Management Pack Integration Guide The software described in this book is furnished

More information

Framework 8.1. External Authentication. Reference Manual

Framework 8.1. External Authentication. Reference Manual Framework 8.1 External Authentication Reference Manual The information contained herein is proprietary and confidential and cannot be disclosed or duplicated without the prior written consent of Genesys

More information

MOC 10964C: Cloud and Datacenter Monitoring with System Center Operations Manager

MOC 10964C: Cloud and Datacenter Monitoring with System Center Operations Manager MOC 10964C: Cloud and Datacenter Monitoring with System Center Operations Manager Course Overview This course provides students with the knowledge and skills to deploy and configure System Center 2012

More information

TABLE OF CONTENTS. 1...Introducing N-central 3...What You Can Do With N-central 4...MONITOR: Proactively Identify Potential Problems

TABLE OF CONTENTS. 1...Introducing N-central 3...What You Can Do With N-central 4...MONITOR: Proactively Identify Potential Problems TABLE OF CONTENTS 1...Introducing N-central 3...What You Can Do With N-central 4...MONITOR: Proactively Identify Potential Problems 5... Centralized Management Console 6... Automatic Discovery 7... Cuzomizable

More information

SUPPORT POLICY SUPPORT POLICY

SUPPORT POLICY SUPPORT POLICY SUPPORT POLICY SUPPORT POLICY Copyright This document is provided "as- is". Information and views expressed in this document, including URL and other Internet Web site references, may change without notice.

More information

Implementation Guide

Implementation Guide Implementation Guide PayLINK Implementation Guide Version 2.1.252 Released September 17, 2013 Copyright 2011-2013, BridgePay Network Solutions, Inc. All rights reserved. The information contained herein

More information

CLOUD COMPUTING & WINDOWS AZURE

CLOUD COMPUTING & WINDOWS AZURE CLOUD COMPUTING & WINDOWS AZURE WORKSHOP Overview This workshop is an introduction to cloud computing and specifically Microsoft s public cloud offering in Windows Azure. Windows Azure has been described

More information

Citrix EdgeSight Administrator s Guide. Citrix EdgeSight for Endpoints 5.3 Citrix EdgeSight for XenApp 5.3

Citrix EdgeSight Administrator s Guide. Citrix EdgeSight for Endpoints 5.3 Citrix EdgeSight for XenApp 5.3 Citrix EdgeSight Administrator s Guide Citrix EdgeSight for Endpoints 5.3 Citrix EdgeSight for enapp 5.3 Copyright and Trademark Notice Use of the product documented in this guide is subject to your prior

More information

Enterprise Knowledge Platform

Enterprise Knowledge Platform Enterprise Knowledge Platform Single Sign-On Integration with Windows Document Information Document ID: EN136 Document title: EKP Single Sign-On Integration with Windows Version: 1.3 Document date: 19

More information

Samsung KNOX EMM Authentication Services. SDK Quick Start Guide

Samsung KNOX EMM Authentication Services. SDK Quick Start Guide Samsung KNOX EMM Authentication Services SDK Quick Start Guide June 2014 Legal notice This document and the software described in this document are furnished under and are subject to the terms of a license

More information

SOLUTION OVERVIEW SmartELM - Smart Error & Log Management

SOLUTION OVERVIEW SmartELM - Smart Error & Log Management SOLUTION OVERVIEW SmartELM - Smart Error & Log Management Troubleshooting apps should be this easy Troubleshooting an application requires having as much information about the error as possible. Errors

More information

Server Manager Performance Monitor. Server Manager Diagnostics Page. . Information. . Audit Success. . Audit Failure

Server Manager Performance Monitor. Server Manager Diagnostics Page. . Information. . Audit Success. . Audit Failure Server Manager Diagnostics Page 653. Information. Audit Success. Audit Failure The view shows the total number of events in the last hour, 24 hours, 7 days, and the total. Each of these nodes can be expanded

More information

Unitrends, Inc Support Handbook for Unitrends Virtual Backup (UVB) Formerly PHD Virtual Backup (PHDVB)

Unitrends, Inc Support Handbook for Unitrends Virtual Backup (UVB) Formerly PHD Virtual Backup (PHDVB) Support Handbook, Inc Support Handbook for Virtual Backup (UVB) Formerly PHD Virtual Backup (PHDVB) 2 Overview This Customer Support Handbook details support services, contact information and best practices

More information

Resonate Central Dispatch

Resonate Central Dispatch Resonate Central Dispatch Microsoft Exchange 2010 Resonate, Inc. Tel. + 1.408.545.5535 Fax + 1.408.545.5502 www.resonate.com Copyright 2013 Resonate, Inc. All rights reserved. Resonate Incorporated and

More information

There are numerous ways to access monitors:

There are numerous ways to access monitors: Remote Monitors REMOTE MONITORS... 1 Overview... 1 Accessing Monitors... 1 Creating Monitors... 2 Monitor Wizard Options... 11 Editing the Monitor Configuration... 14 Status... 15 Location... 17 Alerting...

More information

PREMIER SUPPORT STANDARD SERVICES BRONZE SILVER GOLD

PREMIER SUPPORT STANDARD SERVICES BRONZE SILVER GOLD SERVICE SUMMARY ITonDemand provides four levels of service to choose from to meet our clients range of needs. Plans can also be customized according to more specific environment needs. PREMIER SUPPORT

More information

McAfee Security Information Event Management (SIEM) Administration Course 101

McAfee Security Information Event Management (SIEM) Administration Course 101 McAfee Security Information Event Management (SIEM) Administration Course 101 Intel Security Education Services Administration Course The McAfee SIEM Administration course from McAfee Education Services

More information

Upgrades and the Cloud

Upgrades and the Cloud Upgrades and the Cloud Jacob Khan & Bill Murray Solution Architects The Choice for Leaders in Digital The EPiServer Difference Simplicity for complex needs Experience is the new differentiator Insight

More information

Configuring Microsoft Internet Information Service (IIS6 & IIS7)

Configuring Microsoft Internet Information Service (IIS6 & IIS7) Configuring Microsoft Internet Information Service (IIS6 & IIS7) Configuring Microsoft Internet Information Service (IIS6 & IIS7) Guide Last revised: June 25, 2012 Copyright 2012 Nexent Innovations Inc.

More information

[The BSD License] Copyright (c) 2004-2011 Jaroslaw Kowalski [email protected]

[The BSD License] Copyright (c) 2004-2011 Jaroslaw Kowalski jaak@jkowalski.net Software used by portions of this application require the following license statement: [The BSD License] Copyright (c) 2004-2011 Jaroslaw Kowalski [email protected] All rights reserved. Redistribution

More information

Microsoft Dynamics GP 2013. econnect Installation and Administration Guide

Microsoft Dynamics GP 2013. econnect Installation and Administration Guide Microsoft Dynamics GP 2013 econnect Installation and Administration Guide Copyright Copyright 2012 Microsoft Corporation. All rights reserved. Limitation of liability This document is provided as-is. Information

More information

Module10. Monitoring. MVA Jump Start

Module10. Monitoring. MVA Jump Start Module10 Monitoring MVA Jump Start Module Overview Voice Quality Concepts Exploring Lync Monitoring Server Components Exploring Lync Monitoring Server Reports RTP and RTCP Collected Information Lesson

More information

Healthstone Monitoring System

Healthstone Monitoring System Healthstone Monitoring System Patrick Lambert v1.1.0 Healthstone Monitoring System 1 Contents 1 Introduction 2 2 Windows client 2 2.1 Installation.............................................. 2 2.2 Troubleshooting...........................................

More information

can you improve service quality and availability while optimizing operations on VCE Vblock Systems?

can you improve service quality and availability while optimizing operations on VCE Vblock Systems? SOLUTION BRIEF Service Assurance Solutions from CA Technologies for VCE Vblock Systems can you improve service quality and availability while optimizing operations on VCE Vblock Systems? agility made possible

More information