2018/10/16 04:56 1/10 9 WEB Monitoring

Size: px
Start display at page:

Download "2018/10/16 04:56 1/10 9 WEB Monitoring"

Transcription

1 2018/10/16 04:56 1/10 9 WEB Monitoring 9 WEB Monitoring 1 Goals Zabbix WEB Monitoring support is developed with the following goals: Performance monitoring of WEB applications Availability monitoring of WEB applications Support of HTTP and HTTPS Support of complex scenarios consisting of many steps (HTTP requests) 2009/08/13 14:04 richlv 2 Overview Zabbix provides effective and very flexible WEB monitoring functionality. The module periodically executes WEB scenarios and keeps collected data in the database. The data is automatically used for graphs, triggers and notifications. The following information is collected per each step of WEB scenario: Response time Download speed per second Response code Zabbix also checks if a retrieved HTML page contains a pre-defined string. Zabbix WEB monitoring supports both HTTP and HTTPS. When running a web scenario, Zabbix always follows redirects. To use HTTP proxy, set environment variable http_proxy for Zabbix server user. For example, http_proxy= 2009/08/13 14:05 richlv 3 WEB Scenario Scenario is set of HTTP requests (steps), which will be periodically executed by Zabbix server. Normally a scenario is defined for one particular part of functionality of a WEB application. Scenarios are very convenient way of monitoring user experience. WEB Scenario is linked to a host application for grouping. WEB Scenario is periodically executed and consists of one or more Steps. All cookies are preserved during execution of a single scenario. Zabbix Documentation

2 Last update: 2014/09/25 16:00 manual:web_monitoring Example 1 Monitoring of Zabbix GUI If we want to monitor availability and performance of Zabbix GUI, we have to login, check how quickly Overview and Status of Triggers screens work and then logout. The scenario may have the following steps: Login Go to Overview screen Go to Status of Triggers screen Logout If a step cannot be performed, execution of scenario fails. Parameter Application Name Update interval Agent Status Variables Steps Description WEB scenario will be linked to this application. The application must exist. For example: Zabbix server Name of the WEB scenario. The name will appear in Monitoring Web For example: Zabbix GUI How often this scenario will be executed, in seconds. For example: 60 Zabbix will pretend to be the selected browser. Useful for monitoring of web sites which generate different content for different web browsers. For example: Opera 9.02 on Linux Active: active scenario, it will be executed Disabled: disabled scenario, it will NOT be executed List of macros to be used in configuration of the steps. Syntax: {macro}=value The macro {macro} will be replaced by variable in step's URL and POST variables. For example: {user}=guest {password}=guest Note: Variables are not URL-encoded. Steps of the scenario. As soon as a scenario is created, Zabbix automatically adds the following items for monitoring and links them to the selected application. Actual scenario name will be used instead of Scenario. Item Download speed for scenario 'Scenario' Failed step of scenario 'Scenario' Description This item will collect information about download speed (bytes per second) of the whole scenario, i.e. average for all steps. Item key: web.test.in[scenario,,bps] Type: float This item keeps number of failed step of the scenario. If all steps are executed successfully, 0 is returned. Item key: web.test.fail[scenario] Type: integer Printed on 2018/10/16 04:56

3 2018/10/16 04:56 3/10 9 WEB Monitoring Web monitoring items are added with 30 day history retention and 90 day trend retention periods. These items can be used to create triggers and define notification conditions. Example 1 Trigger WEB scenario failed The trigger expression can be defined as: {host: web.test.fail[scenario].last(0)}#0 Do not forget to replace the Scenario with real name of your scenario. Example 2 Trigger WEB application is slow The trigger expression can be defined as: {host: web.test.in[scenario,,bps].last(0)}<10000 Do not forget to replace the Scenario with real name of your scenario. 2009/08/13 14:06 richlv 4 WEB Step Step is basically a HTTP request. Steps are executed in a pre-defined order. Parameter Name URL Post Timeout Name of the step. For example: Login URL For example: Description HTTP POST variables, if any. For example: id=2345&userid={user} If {user} is defined as a macro of the WEB scenario, it will be replaced by its value when the step is executed. The information will be sent as is, variables are not URL-encoded.. Do not spend more than Timeout seconds for execution of the step. Actually this parameter defines maximum time for making connection to the URL and maximum time for performing an HTTP request. Therefore, Zabbix will not spend more than 2 x Timeout seconds on the step. For example: 15 Zabbix Documentation

4 Last update: 2014/09/25 16:00 manual:web_monitoring Parameter Required Status codes Description The string (given as POSIX extended regular expression) must exist in retrieved content. Otherwise this step fails. If empty, any content will be accepted. For example: Homepage of Zabbix List of HTTP status codes to be considered as success. If retrieved status code is not in the list, this step fails. If empty, any status code is accepted. For example: 200,210 As soon as a step is created, Zabbix automatically adds the following items for monitoring and links them to the selected application. Actual scenario and step names will be used instead of Scenario and Step respectively. Item Download speed for step 'Step' of scenario 'Scenario' Response time for step 'Step' of scenario 'Scenario' Response code for step 'Step' of scenario 'Scenario' Description This item will collect information about download speed (bytes per second) of the step. Item key: web.test.in[scenario,step,bps] Type: float This item will collect information about response time of the step in seconds. Response time is counted from the beginning of the request until all information has been transferred. Item key: web.test.time[scenario,step,resp] Type: float This item will collect response codes of the step. Item key: web.test.rspcode[scenario,step] Type: integer Web monitoring items are added with 30 day history retention and 90 day trend retention periods. These items can be used to create triggers and define notification conditions. Example 1 Trigger Zabbix GUI login is too slow The trigger expression can be defined as: {zabbix: web.test.time[zabbix GUI,Login,resp].last(0)}>3 2009/08/13 14:43 richlv 5 Real life scenario Let's use Zabbix Web Monitoring to monitor the web interface of Zabbix. We want to know if it is available, provides the right content and how quickly it works. First we must log in with our user name and password. Printed on 2018/10/16 04:56

5 2018/10/16 04:56 5/10 9 WEB Monitoring Step 1 Add a new host application. Go to Configuration Hosts, then click on Applications next to the host you want to use for web monitoring. In the application section click on Create application. This step is not required if you already have a suitable application. You may also want to create a host if one does not exist. Step 2 Add a new web scenario. We will add a scenario to monitor the web interface of Zabbix. The scenario will execute a number of steps. Go to Configuration Web, select the host in the dropdown, then click on Create scenario. In the new scenario form, click on Select next to the Application field to choose the application we just created. Note that we also create two macros, {user} and {password}. Step 3 Define steps for the scenario. Zabbix Documentation

6 Last update: 2014/09/25 16:00 manual:web_monitoring Click on Add button in the Steps section to add individual steps. Web scenario step 1 We start by checking that the first page responds correctly, returns with HTTP response code 200 and contains text SIA Zabbix. When done configuring the step, click Add. Web scenario step 2 We continue by logging in to the Zabbix frontend, and we do so by reusing the macros (variables) we defined on the scenario level, {user} and {password}. Note that Zabbix frontend uses JavaScript redirect when logging in, thus first we must log in, and only in further steps we may check for logged-in features. Additionally, the login step must use full URL to Printed on 2018/10/16 04:56

7 2018/10/16 04:56 7/10 9 WEB Monitoring index.php file. All the post variables must be on a single line and concatenated with & symbol. Example string for logging into Zabbix frontend: name=admin&password=zabbix&enter=enter If using the macros as in this example, login string becomes: name={user}&password={password}&enter=enter Web scenario step 3 Being logged in, we should now verify the fact. To do so, we check for a string that is only visible when logged in - for example, Profile link appears in the upper right corner. Web scenario step 4 Now that we have verified that frontend is accessible and we can log in and retrieve logged-in content, we should also log out - otherwise Zabbix database will become polluted with lots and lots of open session records. Zabbix Documentation

8 Last update: 2014/09/25 16:00 manual:web_monitoring Complete configuration of steps A complete configuration of web scenario steps should look like this: Step 4 Save the finished web monitoring scenario. Printed on 2018/10/16 04:56

9 2018/10/16 04:56 9/10 9 WEB Monitoring The list of applications and linked scenarios will appear in Monitoring Web: Click on the scenario name to see more detailed statistics: Zabbix Documentation

10 Last update: 2014/09/25 16:00 manual:web_monitoring /08/13 15:08 richlv From: - Zabbix Documentation 1.8 Permanent link: Last update: 2014/09/25 16:00 Printed on 2018/10/16 04:56

2018/03/23 00:39 1/10 8. Web monitoring. To perform web monitoring Zabbix server must be initially configured with curl (libcurl) support.

2018/03/23 00:39 1/10 8. Web monitoring. To perform web monitoring Zabbix server must be initially configured with curl (libcurl) support. 2018/03/23 00:39 1/10 8. Web monitoring 8. Web monitoring Overview With Zabbix you can check several availability aspects of web sites. To perform web monitoring Zabbix server must be initially configured

More information

AppSpider Enterprise. Getting Started Guide

AppSpider Enterprise. Getting Started Guide AppSpider Enterprise Getting Started Guide Contents Contents 2 About AppSpider Enterprise 4 Getting Started (System Administrator) 5 Login 5 Client 6 Add Client 7 Cloud Engines 8 Scanner Groups 8 Account

More information

Mobile Access Guide Using WhatsUp Gold Mobile Access

Mobile Access Guide Using WhatsUp Gold Mobile Access Mobile Access Guide Using WhatsUp Gold Mobile Access Contents CHAPTER 1 Using WhatsUp Gold Mobile Access Managing WhatsUp Gold Mobile Access... 1 Accessing WhatsUp Gold from a mobile device... 2 CHAPTER

More information

Load testing with WAPT: Quick Start Guide

Load testing with WAPT: Quick Start Guide Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided

More information

HTTP 1.1 Web Server and Client

HTTP 1.1 Web Server and Client The feature provides a consistent interface for users and applications by implementing support for HTTP 1.1 in Cisco IOS XE software-based devices. When combined with the HTTPS feature, the feature provides

More information

How to Configure SSL VPN Portal for Forcepoint NGFW TECHNICAL DOCUMENT

How to Configure SSL VPN Portal for Forcepoint NGFW TECHNICAL DOCUMENT How to Configure SSL VPN Portal for Forcepoint NGFW TECHNICAL DOCUMENT Ta Table of Contents Table of Contents TA TABLE OF CONTENTS 1 TABLE OF CONTENTS 1 BACKGROUND 2 CONFIGURATION STEPS 2 Create a SSL

More information

The Cisco HCM-F Administrative Interface

The Cisco HCM-F Administrative Interface CHAPTER 5 This chapter contains information on the following topics: Overview of Cisco HCM-F Administrative Interface, page 5-1 Browser Support, page 5-2 Login and Logout, page 5-4 Online Help, page 5-5

More information

Collabedit Simple Collaborative Text

Collabedit Simple Collaborative Text ITWP Courses Using Collabedit Page 1 Collabedit Simple Collaborative Text Section 1: Some Basic Information Collabedit is a free online code editor that lets people collaborate in real-time. Collabedit

More information

Lecture 7b: HTTP. Feb. 24, Internet and Intranet Protocols and Applications

Lecture 7b: HTTP. Feb. 24, Internet and Intranet Protocols and Applications Internet and Intranet Protocols and Applications Lecture 7b: HTTP Feb. 24, 2004 Arthur Goldberg Computer Science Department New York University artg@cs.nyu.edu WWW - HTTP/1.1 Web s application layer protocol

More information

WhatsUp Gold 2016 Mobile Access

WhatsUp Gold 2016 Mobile Access WhatsUp Gold 2016 Mobile Access Contents Using Managing WhatsUp Gold mobile access... 1 Accessing WhatsUp Gold from a mobile device... 1 Learning about About... 5 Mobile Access supported browsers... 5

More information

User Guide. Kronodoc Kronodoc Oy. Intelligent methods for process improvement and project execution

User Guide. Kronodoc Kronodoc Oy. Intelligent methods for process improvement and project execution User Guide Kronodoc 3.0 Intelligent methods for process improvement and project execution 2003 Kronodoc Oy 2 Table of Contents 1 User Guide 5 2 Information Structure in Kronodoc 6 3 Entering and Exiting

More information

RingCentral for Zendesk. UK Administrator Guide

RingCentral for Zendesk. UK Administrator Guide RingCentral for Zendesk UK Administrator Guide RingCentral for Zendesk UK Admin Guide Contents Contents Introduction... 3 About RingCentral for Zendesk.........................................................

More information

ISA 767, Secure Electronic Commerce Xinwen Zhang, George Mason University

ISA 767, Secure Electronic Commerce Xinwen Zhang, George Mason University Identity Management and Federated ID (Liberty Alliance) ISA 767, Secure Electronic Commerce Xinwen Zhang, xzhang6@gmu.edu George Mason University Identity Identity is the fundamental concept of uniquely

More information

Welcome to the DSSLearnCenter

Welcome to the DSSLearnCenter Welcome to the DSSLearnCenter User Guide for Supervisors and Managers Prepared By Connecticut Department of Social Services Organizational & Skill Development The DSSLearnCenter Table of Contents All Staff

More information

This document is for informational purposes only. PowerMapper Software makes no warranties, express or implied in this document.

This document is for informational purposes only. PowerMapper Software makes no warranties, express or implied in this document. OnDemand User Manual Enterprise User Manual... 1 Overview... 2 Introduction to SortSite... 2 How SortSite Works... 2 Checkpoints... 3 Errors... 3 Spell Checker... 3 Accessibility... 3 Browser Compatibility...

More information

Getting Started. 1 Check your . Typically, sent from (Note: You may need to check your junk/spam folder).

Getting Started. 1 Check your  . Typically, sent from (Note: You may need to check your junk/spam  folder). Q U ICKSTART G U ID E Getting Started How to Setup Account 1 Check your email. Typically, sent from noreply@edvance360.com. (Note: You may need to check your junk/spam email folder). 2 Select the link

More information

Programming for the Web with PHP

Programming for the Web with PHP Aptech Ltd Version 1.0 Page 1 of 11 Table of Contents Aptech Ltd Version 1.0 Page 2 of 11 Abstraction Anonymous Class Apache Arithmetic Operators Array Array Identifier arsort Function Assignment Operators

More information

SECTION 100 LOGIN/LOGOUT

SECTION 100 LOGIN/LOGOUT SECTION 100 LOGIN/LOGOUT SECTION 100 INDEX 101 Login 1-1 101.1 Forgot your password? 1-1 A. View Reminder 1-1 B. Send Password 1-2 102 First Time Users Login 1-2 103 Logout 1-3 SECTION 100: LOGIN/LOGOUT

More information

Setting Up Essentials

Setting Up Essentials CHAPTER 4 Setting Up Essentials Now that you have installed Essentials, you need to perform some required administrator tasks. This chapter consists of the following sections: Quick Reference Accessing

More information

SCRIPT REFERENCE. UBot Studio Version 4. The Settings Commands

SCRIPT REFERENCE. UBot Studio Version 4. The Settings Commands SCRIPT REFERENCE UBot Studio Version 4 The Settings Commands This entire section of commands is related specifically to settings that are available for the main browser as well as the in new browser command.

More information

ARRIS ACADEMY NEW USER REGISTRATION WALKTHROUGH UPDATED

ARRIS ACADEMY NEW USER REGISTRATION WALKTHROUGH UPDATED ARRIS ACADEMY NEW USER REGISTRATION WALKTHROUGH UPDATED 2.5.16 This document details the process that should be followed by customers or channels to request access to ARRIS Academy. To ensure success,

More information

Checklist for Testing of Web Application

Checklist for Testing of Web Application Checklist for Testing of Web Application Web Testing in simple terms is checking your web application for potential bugs before its made live or before code is moved into the production environment. During

More information

Read the following information carefully, before you begin an upgrade.

Read the following information carefully, before you begin an upgrade. Read the following information carefully, before you begin an upgrade. Review Supported Upgrade Paths, page 1 Review Time Taken for Upgrade, page 1 Review Available Cisco APIC-EM Ports, page 2 Securing

More information

Testing Documentation

Testing Documentation Testing Documentation Create-A-Page Group 9: John Campbell, Matthew Currier, Dan Martin 5/1/2009 This document defines the methods for testing Create-A-Page, as well as the results of those tests and the

More information

GroupWise Architecture and Best Practices. WebAccess. Kiran Palagiri Team Lead GroupWise WebAccess

GroupWise Architecture and Best Practices. WebAccess. Kiran Palagiri Team Lead GroupWise WebAccess GroupWise Architecture and Best Practices WebAccess Kiran Palagiri Team Lead GroupWise WebAccess kpalagiri@novell.com Ed Hanley Senior Architect ed.hanley@novell.com Agenda Kiran Palagiri Architectural

More information

HTTP 1.1 Web Server and Client

HTTP 1.1 Web Server and Client HTTP 1.1 Web Server and Client Last Updated: October 12, 2011 The HTTP 1.1 Web Server and Client feature provides a consistent interface for users and applications by implementing support for HTTP 1.1

More information

Private Sales & Flash Sales v4.x Configuration for Magento 2

Private Sales & Flash Sales v4.x Configuration for Magento 2 Private Sales & Flash Sales v4.x Configuration for Magento 2 From Plumrocket Documentation Contents 1. Configuring Private Sales and Flash Sales Extension 1.1. Configuring Private Sales Homepage 1.2. Configuring

More information

Getting Started Quick Start Guide

Getting Started Quick Start Guide Getting Started Quick Start Guide This guide provides tips for users new to using the Learning Environment. It discusses how to navigate the main areas and how to change your personal preferences and settings.

More information

Live Guide Co-browsing

Live Guide Co-browsing TECHNICAL PAPER Live Guide Co-browsing Netop develops and sells software solutions that enable swift, secure and seamless transfer of video, screens, sounds and data between two or more computers over

More information

Using the Prime Performance Manager Web Interface

Using the Prime Performance Manager Web Interface 3 CHAPTER Using the Prime Performance Manager Web Interface The following topics provide information about using the Cisco Prime Performance Manager web interface: Accessing the Prime Performance Manager

More information

APPLICATION INTERFACE

APPLICATION INTERFACE WEB PLATFORM OVERVIEW v.1.4.0 APPLICATION INTERFACE Start view and server selection options: Test progress view: Summary view: Mobile view: USER INTERFACE FIREPROBE is a platform designed for Internet

More information

BIG-IP Analytics: Implementations. Version 13.1

BIG-IP Analytics: Implementations. Version 13.1 BIG-IP Analytics: Implementations Version 13.1 Table of Contents Table of Contents Setting Up Application Statistics Collection...5 What is Analytics?...5 About HTTP Analytics profiles... 5 Overview:

More information

Developer Resources: PIN2

Developer Resources: PIN2 Administrative Technology Services Technology and Data Services Developer Resources: PIN2 Contents Introduction... 2 Registering an Application... 2 Information Required for Registration... 3 Information

More information

Access Online. Navigation Basics. User Guide. Version 2.2 Cardholder and Program Administrator

Access Online. Navigation Basics. User Guide. Version 2.2 Cardholder and Program Administrator Access Online Navigation Basics User Guide Version 2.2 Cardholder and Program Administrator Contents Introduction... 1 Access Online Overview... 2 How We Gather and Manage Transaction Data in Access Online...

More information

Cisco IOS HTTP Services Command Reference

Cisco IOS HTTP Services Command Reference Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 THE SPECIFICATIONS AND INFORMATION

More information

External HTTPS Trigger AXIS Camera Station 5.06 and above

External HTTPS Trigger AXIS Camera Station 5.06 and above HOW TO External HTTPS Trigger AXIS Camera Station 5.06 and above Created: October 17, 2016 Last updated: November 19, 2016 Rev: 1.2 1 Please note that AXIS does not take any responsibility for how this

More information

[Frequently Asked Questions] Accommodation Booking Website

[Frequently Asked Questions] Accommodation Booking Website [Frequently Asked Questions] Accommodation Booking Website Q. 1 I cannot register or log in. Please check the following settings. If checking the settings does not resolve the problem, changing the browser

More information

SVRS Float Plan Guide - Slide Index

SVRS Float Plan Guide - Slide Index SVRS Float Plan Guide - Slide Index Topic Slide Site Information 2 SVRS Front Page 3 Logging in to the SVRS Participant Portal 4 Participant Portal Front Page 5 Inactivity Timeout 6 Float Plan List 8 Float

More information

Oracle Sourcing Support Helpdesk: Telephone: > Option

Oracle Sourcing Support Helpdesk: Telephone: > Option esourcing FAQ s Oracle Sourcing Support Helpdesk: Telephone: 021-4534777 -> Option 2.2.2 Email: oraclesourcingsupport@ervia.ie FAQ s Forgotten Password? Logging In and Accessing Tenders Acknowledging Intent

More information

OpenProject AdminGuide

OpenProject AdminGuide OpenProject AdminGuide I. Contents I. Contents... 1 II. List of figures... 2 1 Administration... 2 1.1 Manage projects...2 1.2 Manage users...5 1.3 Manage groups...11 1.4 Manage roles and permissions...13

More information

3 Low-level discovery

3 Low-level discovery 2018/10/03 19:59 1/17 3 Low-level discovery 3 Low-level discovery Overview Low-level discovery provides a way to automatically create items, triggers, and graphs for different entities on a computer. For

More information

USER MANUAL [QUICK REFERENCE]

USER MANUAL [QUICK REFERENCE] USER MANUAL [QUICK REFERENCE] PROJECT : STUDENT MANAGEMENT SYSTEM MODULE : E PROGRESS REPORT DATE : FEBRUARY VERSION : 1.0 Contents No Description Page No 1. SECTION A : LOGIN... 4 2. SECTION B : EVALUATION

More information

OAuth 2 and Native Apps

OAuth 2 and Native Apps OAuth 2 and Native Apps Flows While all OAuth 2 flows can be used by native apps, only the user delegation flows will be considered in this document: Web Server, User-Agent and Device flows. The Web Server

More information

HTTP 1.1 Web Server and Client

HTTP 1.1 Web Server and Client HTTP 1.1 Web Server and Client Finding Feature Information HTTP 1.1 Web Server and Client Last Updated: June 01, 2011 The HTTP 1.1 Web Server and Client feature provides a consistent interface for users

More information

1. INTRODUCTION to Object Storage

1. INTRODUCTION to Object Storage 1. INTRODUCTION to Object Storage Welcome to AURO Enterprise Cloud! This document will be help you get started using our Object Storage service. Object Storage is a storage system where objects are stored

More information

Getting Started. Accessing MyTeachingStrategies Navigating MyTeachingStrategies Guided Tour Setting Language Preference to Spanish

Getting Started. Accessing MyTeachingStrategies Navigating MyTeachingStrategies Guided Tour Setting Language Preference to Spanish Getting Started Accessing MyTeachingStrategies Navigating MyTeachingStrategies Guided Tour Setting Language Preference to Spanish How-To Guide for Teachers Accessing MyTeachingStrategies Signing In Before

More information

OCDE Business Applications

OCDE Business Applications OCDE Business Applications Employee Information System (EIS) WILLIAM M. HABERMEHL County Superintendent of Schools Employee Reference Guide February 2010 Table of Contents Welcome...2 Overview...2 Data

More information

Reporting and Publishing Platform Portal MVP Portal. User Manual

Reporting and Publishing Platform Portal MVP Portal. User Manual Page 1 Reporting and Publishing Platform Portal MVP Portal User Manual Last updated: 26. August 2013 Page 2 Contents Reporting and Publishing Platform Portal... 1 Last updated: 29. April 2013Contents...

More information

Lotus Notes Domino 6/ 6.5 Developing Web Applications.

Lotus Notes Domino 6/ 6.5 Developing Web Applications. Lotus 190-612 Notes Domino 6/ 6.5 Developing Web Applications http://killexams.com/exam-detail/190-612 QUESTION: 81 Rob uses Macromedia Dreamweaver MX to create HTML files, style sheets and JavaScript

More information

Cisco IOS HTTP Services Command Reference

Cisco IOS HTTP Services Command Reference Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 THE SPECIFICATIONS AND INFORMATION

More information

Octolooks Scrapes Guide

Octolooks Scrapes Guide Octolooks Scrapes Guide https://octolooks.com/wordpress-auto-post-and-crawler-plugin-scrapes/ Version 1.4.4 1 of 21 Table of Contents Table of Contents 2 Introduction 4 How It Works 4 Requirements 4 Installation

More information

Notify End-Users of Proxy Actions

Notify End-Users of Proxy Actions This chapter contains the following sections: End-User tifications Overview, on page 1 Configuring General Settings for tification Pages, on page 2 End-User Acknowledgment Page, on page 2 End-User tification

More information

A Guide for using MyStudyAbroad system

A Guide for using MyStudyAbroad system A Guide for using MyStudyAbroad system for students applying to HKUST for International Summer Exchange Program Exchange in Summer Term Table of Content Content Page MyStudyAbroad system 4-5 Stages in

More information

SmartList Senior Project Paper

SmartList Senior Project Paper Brandon Messineo Dr. Jackson SmartList Senior Project Paper We live in a world where technology is used frequently. We use technology to tell the time, predict the weather, write a paper, or communicate

More information

EcoprintQ Student User Guide

EcoprintQ Student User Guide EcoprintQ Student User Guide EcoprintQ Student User Guide Table of Contents: 1.0 How to send a Print Job from a workstation to a network printer 2.0 User s Web interface 3.0 Account Summary 4.0 User s

More information

Web, HTTP and Web Caching

Web, HTTP and Web Caching Web, HTTP and Web Caching 1 HTTP overview HTTP: hypertext transfer protocol Web s application layer protocol client/ model client: browser that requests, receives, displays Web objects : Web sends objects

More information

BIG-IP Analytics: Implementations. Version 12.1

BIG-IP Analytics: Implementations. Version 12.1 BIG-IP Analytics: Implementations Version 12.1 Table of Contents Table of Contents Setting Up Application Statistics Collection...5 What is Analytics?...5 About HTTP Analytics profiles...5 Overview: Collecting

More information

Employee Self Service Portal Instructions. Employee Use

Employee Self Service Portal Instructions. Employee Use Employee Self Service Portal Instructions Employee Use Enrollment E-mail Employees will receive a no-reply e-mail from proxushr@myisolved.com to activate their account. Employees will have 90 days to perform

More information

Penetration Testing. James Walden Northern Kentucky University

Penetration Testing. James Walden Northern Kentucky University Penetration Testing James Walden Northern Kentucky University Topics 1. What is Penetration Testing? 2. Rules of Engagement 3. Penetration Testing Process 4. Map the Application 5. Analyze the Application

More information

Virto Active Directory Service for SharePoint. Release Installation and User Guide

Virto Active Directory Service for SharePoint. Release Installation and User Guide Virto Active Directory Service for SharePoint Release 4.1.2 Installation and User Guide 2 Table of Contents OVERVIEW... 3 SYSTEM REQUIREMENTS... 4 OPERATING SYSTEM... 4 SERVER... 4 BROWSER... 5 INSTALLATION...

More information

Com.X. IP PBX / Gateway. Com.X Atmos Voice Logger Setup Procedure

Com.X. IP PBX / Gateway. Com.X Atmos Voice Logger Setup Procedure Com.X IP PBX / Gateway Com.X Atmos Voice Logger Setup Procedure Version 1.0.2 November 2014 Document History Version Date Description of Changes 1.0.0 27/10/2014 Matthew Knight - initial draft 1.0.1 7/11/2014

More information

CCIS. Critical Care Information System. Login Guide. Version /12/2015. Prepared By: CCIS Provincial Implementation Team.

CCIS. Critical Care Information System. Login Guide. Version /12/2015. Prepared By: CCIS Provincial Implementation Team. CCIS Critical Care Information System Login Guide Version 11.0 12/12/2015 Prepared By: CCIS Provincial Implementation Team CritiCall Ontario Table of Contents 1. How to Login to CCIS for the first time?...

More information

Student Guide. Document Version: This guide documents features available in NETLAB+ VE version and later.

Student Guide. Document Version: This guide documents features available in NETLAB+ VE version and later. Student Guide Document Version: 2018-02-15 This guide documents features available in NETLAB+ VE version 18.1.0 and later. Copyright 2018 Network Development Group, Inc. www.netdevgroup.com NETLAB Academy

More information

Concierge OneSource eprocurement

Concierge OneSource eprocurement Concierge OneSource eprocurement GENERAL INSTRUCTIONS Instructional Guide: Member Support Login Logout Dashboard Member Support Monday - Friday 7:00 A.M. 7:00 P.M. EST Need Help? Click Submit Case Link

More information

AASHTO ELECTRONIC BALLOTING SYSTEM QUICK REFERENCE GUIDE

AASHTO ELECTRONIC BALLOTING SYSTEM QUICK REFERENCE GUIDE AASHTO ELECTRONIC BALLOTING SYSTEM QUICK REFERENCE GUIDE The AASHTO Electronic Balloting System is an invitation-based system to conduct electronic ballots for AASHTO committees, subcommittees, technical

More information

Please Register Your One-Net

Please Register Your One-Net Please Register Your One-Net To verify that you have the latest version of software in your One-Net it s important to register your device with Monroe Electronics. To register go to www.monroeelectronics.com

More information

Getting started with Zabbix API

Getting started with Zabbix API 2018/07/04 21:07 1/10 Getting started with Zabbix API Getting started with Zabbix API What is Zabbix API Normally, you have only one way, to manipulate, configure and create objects in Zabbix - through

More information

Apica ZebraTester. Advanced Load Testing Tool and Cloud Platform

Apica ZebraTester. Advanced Load Testing Tool and Cloud Platform Whether Fortune 100 or the next big startup, Apica s bestin-class load testing and test automation platform helps companies ensure their web and mobile services runs with optimal performance. is an enterprise-level

More information

Step 3 - How to Configure Basic System Settings

Step 3 - How to Configure Basic System Settings Before configuring the IP address and network settings, complete Step 2 - How to Configure IP Address, network Settings, and Firewall. Verify the computer and the are connected to the same network, with

More information

Identity Provider for SAP Single Sign-On and SAP Identity Management

Identity Provider for SAP Single Sign-On and SAP Identity Management Implementation Guide Document Version: 1.0 2017-05-15 PUBLIC Identity Provider for SAP Single Sign-On and SAP Identity Management Content 1....4 1.1 What is SAML 2.0.... 5 SSO with SAML 2.0.... 6 SLO with

More information

Basic Steps for Autotask Endpoint Management. Updated Wednesday, January 31, Autotask Corporation

Basic Steps for Autotask Endpoint Management. Updated Wednesday, January 31, Autotask Corporation Basic Steps for Autotask Endpoint Management Updated Wednesday, January 31, 2018 2018 Autotask Corporation Table of Contents Table of Contents 2 Basic Steps 3 Step 1 - Log in 4 Step 2 - Create a New Site

More information

Abu Dhabi Investment Authority

Abu Dhabi Investment Authority OUM USER GUIDE Abu Dhabi Investment Authority 01-01 Registration Process Author: Creation Date: Last Updated: Document Ref: Version: Abu Dhabi Investment Authority 11-Jan-2017 19-Jan-2017 ADIA/User Guide/2.1.1

More information

Ross Whetten, North Carolina State University

Ross Whetten, North Carolina State University Your First EC2 Cloud Computing Session Jan 2013 Ross Whetten, North Carolina State University BIT815 notes 1. After you set up your AWS account, and you receive the confirmation email from Amazon Web Services

More information

HyperText Transfer Protocol

HyperText Transfer Protocol Outline Introduce Socket Programming Domain Name Service (DNS) Standard Application-level Protocols email (SMTP) HTTP HyperText Transfer Protocol Defintitions A web page consists of a base HTML-file which

More information

PARTICIPANT (STUDENT) DOCUMENTATION Introduction. Getting Started. Requesting an Account

PARTICIPANT (STUDENT) DOCUMENTATION Introduction. Getting Started. Requesting an Account PARTICIPANT (STUDENT) DOCUMENTATION Introduction The Experiment Management System provides an easy method for you to sign up for studies, and track your progress throughout the term. Everything is done

More information

RCT Express. Administrator Training Manual. Version 4.3

RCT Express. Administrator Training Manual. Version 4.3 RCT Express Administrator Training Manual Version 4.3 Copyright 2016 CoreLogic. All rights reserved. ii Contents Introduction 1 System Requirements... 1 Tools 2 Administration 3 Manage Agencies... 3 Manage

More information

Introduction. Server-side Techniques. Introduction. 2 modes in the PHP processor:

Introduction. Server-side Techniques. Introduction. 2 modes in the PHP processor: Introduction Server-side Techniques PHP Hypertext Processor A very popular server side language on web Code embedded directly into HTML documents http://hk2.php.net/downloads.php Features Free, open source

More information

A Guide for using MyStudyAbroad system

A Guide for using MyStudyAbroad system A Guide for using MyStudyAbroad system for students applying to HKUST for Undergraduate Inbound Exchange Program Exchange in Regular Term (Fall / Spring / Fall & Spring) Table of Content Content Page MyStudyAbroad

More information

Vanguard Secure Service (VSES) User Guide

Vanguard Secure  Service (VSES) User Guide Vanguard Secure Email Service (VSES) User Guide Enterprise Security and Fraud October 20, 2017 Contents Guide for Users of Secure Email From Vanguard 1 View Secure Email 1 New Registration 3 Compose a

More information

owncloud Android App Manual

owncloud Android App Manual owncloud Android App Manual Release 2.0.0 The owncloud developers December 14, 2017 CONTENTS 1 Using the owncloud Android App 1 1.1 Getting the owncloud Android App...................................

More information

Outlook 2010 Exchange Setup Guide

Outlook 2010 Exchange Setup Guide Outlook 2010 Outlook Profile Configuration This section provides a quick overview of the settings needed to access Outlook client software and configure Outlook to connect to your hosted Exchange mailbox.

More information

Registering for an Instructor-Led Course

Registering for an Instructor-Led Course Registering for an Instructor-Led Course 1 Overview Before you begin the registration process, please ensure you have your Training Unit Voucher Code as payment for your course. If you do not have your

More information

Deltek Touch T&E Startup Guide

Deltek Touch T&E Startup Guide Deltek Touch T&E Startup Guide https://dte.unisys.com 2015 Unisys Corporation. All rights reserved. FOR INTERNAL USE ONLY. 1 Mobile Device Pre-requisites Make sure your mobile browser allows cookies from

More information

Hostopia WebMail Help

Hostopia WebMail Help Hostopia WebMail Help Table of Contents GETTING STARTED WITH WEBMAIL...5 Version History...6 Introduction to WebMail...6 Cookies and WebMail...6 Logging in to your account...6 Connection time limit...7

More information

4 Installation from sources

4 Installation from sources 2018/07/12 20:48 1/10 4 Installation from sources 4 Installation from sources Overview You can get the very latest version of Zabbix by compiling it from the sources. A step-by-step tutorial for installing

More information

User Manual. SSV Remote Access Gateway. Web ConfigTool

User Manual. SSV Remote Access Gateway. Web ConfigTool SSV Remote Access Gateway Web ConfigTool User Manual SSV Software Systems GmbH Dünenweg 5 D-30419 Hannover Phone: +49 (0)511/40 000-0 Fax: +49 (0)511/40 000-40 E-mail: sales@ssv-embedded.de Document Revision:

More information

Notes beforehand... For more details: See the (online) presentation program.

Notes beforehand... For more details: See the (online) presentation program. Notes beforehand... Notes beforehand... For more details: See the (online) presentation program. Topical overview: main arcs fundamental subjects advanced subject WTRs Lecture: 2 3 4 5 6 7 8 Today: the

More information

Creating Post(s) In WordPress

Creating Post(s) In WordPress Creating Post(s) In WordPress Posts In WordPress: Here is what posts are in WordPress: Posts are regular blog entries i.e. dynamic content. When any Post(s) are published, they appear automatically in

More information

COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS. Web Access: HTTP Mehmet KORKMAZ

COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS. Web Access: HTTP Mehmet KORKMAZ COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS Web Access: HTTP 16501018 Mehmet KORKMAZ World Wide Web What is WWW? WWW = World Wide Web = Web!= Internet Internet is a global system of interconnected computer

More information

MyACBL Security Updates

MyACBL Security Updates MyACBL Security Updates Detailed Instructions for Updating User Security Information Getting Started Existing MyACBL users: Members not already registered with MyACBL: Step 1: Confirm your Contact Information

More information

Deployment Guide AX Series with Oracle E-Business Suite 12

Deployment Guide AX Series with Oracle E-Business Suite 12 Deployment Guide AX Series with Oracle E-Business Suite 12 DG_OEBS_032013.1 TABLE OF CONTENTS 1 Introduction... 4 2 Deployment Prerequisites... 4 3 Oracle E-Business Topology... 5 4 Accessing the AX Series

More information

AAT Online Platform User Guideline

AAT Online Platform User Guideline AAT Online Platform User Guideline INDEX Notes to users... 2 Account activation / Forget password... 3 Account Login... 7 Account Logout... 8 Amending the Personal information (Correspondence address &

More information

MyHealthRecord. Patient User Guide. Top of Page Table of Contents

MyHealthRecord. Patient User Guide. Top of Page Table of Contents MyHealthRecord Patient User Guide 1 P a g e Information Technology Department MyHealthRecord Patient User Guide Copyright 2014 Family Health Centers of San Diego, Inc. 823 Gateway Center Way San Diego,

More information

AVAYA LEARNING CENTER END USER GUIDE. Avaya Learning Virtual Campus License Registration Guidelines

AVAYA LEARNING CENTER END USER GUIDE. Avaya Learning Virtual Campus License Registration Guidelines AVAYA LEARNING CENTER END USER GUIDE Avaya Learning Virtual Campus License Registration Guidelines 1 Avaya Learning Virtual Campus License Registration Guide November 2015 ENROLLMENT REGISTRATION PROCESS

More information

2016 AHA ANNUAL SURVEY WALK-THROUGH THE 2016 AHA ANNUAL SURVEY ONLINE

2016 AHA ANNUAL SURVEY WALK-THROUGH THE 2016 AHA ANNUAL SURVEY ONLINE 2016 AHA ANNUAL SURVEY WALK-THROUGH THE 2016 AHA ANNUAL SURVEY ONLINE Hello Survey Administrator! Welcome to the step-by-step guide to completing the 2016 AHA Annual Survey online. We hope this information

More information

4 Installation from sources

4 Installation from sources 2018/07/18 21:35 1/11 4 Installation from sources 4 Installation from sources You can get the very latest version of Zabbix by compiling it from the sources. A step-by-step tutorial for installing Zabbix

More information

Supplier s Guide for Updating Profile inside the MOL ebidding system

Supplier s Guide for Updating Profile inside the MOL ebidding system Supplier s Guide for Updating Profile inside the MOL ebidding system Login pages for updating profile by using the username/password you have received in MOL Group Notification (Notification contains only

More information

Introduction. The topics included in this guide are:

Introduction. The topics included in this guide are: Introduction Caorda Content is a powerful content management tool that allows you to update your web site through a standard Internet web browser. The purpose of this guide is to introduce you to Caorda

More information

Managing GSS Devices from the GUI

Managing GSS Devices from the GUI CHAPTER 1 This chapter describes how to configure and manage your Global Site Selector Manager (GSSM) and Global Site Selector (GSS) devices from the primary GSSM graphical user interface. It includes

More information

Converting JMeter HTTP(S) Tests and SOAP/XML-RPC Tests to Apica ProxySniffer

Converting JMeter HTTP(S) Tests and SOAP/XML-RPC Tests to Apica ProxySniffer Ingenieurbüro David Fischer AG A Company of the Apica Group http://www.proxy-sniffer.com Converting JMeter HTTP(S) Tests and SOAP/XML-RPC Tests to Apica ProxySniffer English Edition JMeter Apica ProxySniffer

More information