Kick Off Meeting. OMi Management Pack Development Workshop. 23rd May 2016

Size: px
Start display at page:

Download "Kick Off Meeting. OMi Management Pack Development Workshop. 23rd May 2016"

Transcription

1 Kick Off Meeting OMi Management Pack Development Workshop 23rd May 2016

2 Agenda OMi Management Pack Workshop Workshop Overview Community Content on HPE Live Network ITOM Insiders Introduction to OMi Management Packs Overview of OMi Management Pack DevKit Management Pack Source Code Walkthrough Deploying and monitoring in a production setup Q&A 2

3 Workshop Overview 3

4 Free Community Workshop: Management Pack Development Get the skills, resources, and support Develop your Management Pack Submit it to the community Get highlighted in the OpsBridge Blog Earn points on ITOM Insiders along the way Learn Develop Submit For HPE and HPE Channel Partner Internal Use 4

5 The Process Registration Live Kickoff Webinar Live Webinar Meet the Experts Submit your Management Pack Submit registration form Receive more details Select the Management Pack you will implement Setup GitHub repository Earn points Introduction & Overview Step by step process Training presentation Live Coding Q & A Earn points Discuss questions Get advice for coding Validate your approach Q & A Earn points Submit your Management Pack to the HPE Live Network as community content Earn a lot of points! Required for participation Coding & Learning Week Support from the Experts (Forum) For HPE and HPE Channel Partner Internal Use 5

6 Community Content on the HPE Live Network login to HPE Live Network creating community content is an easy task involving few clicks only any HP Passport will work For HPE and HPE Channel Partner Internal Use 6

7 Useful Resources for OMi/OpsBridge on the HPE Live Network For HPE and HPE Channel Partner Internal Use 7

8 HPE ITOM Insiders Offers exclusive benefits and networking opportunities for customers and partners using HPE IT Operations Management products How it works You choose which activities to participate in Social media, attend webinars, volunteer to be a reference, test drive our products and more Earn points for completing activities, pick up badges, and move up in user status as you progress Points can be redeemed for items that will benefit you and your organization We have special challenges for this workshop: Earn points for registration, webinar attendance and content submission. Not a member yet? Send us an to receive your invitation.

9 Help & Resources R&D Experts will answer your questions Operations Manager i Integrations Forum Meet the experts in another live session on Wednesday See your welcome for the invitation links Find more content and free resources Operations Manager HPE Live Network Operations Live Network General questions about the workshop? Send an to management.pack.workshop@hpe.com Watch out for more information via . For HPE and HPE Channel Partner Internal Use 9

10 Introduction to OMi Management Packs 10

11 Overview of HPE OMi Management Pack Management Templates It is responsible for monitoring an applications. e.g. Essential Oracle Management Template, Extensive Oracle Management Template It is responsible for monitoring an aspect of an application. e.g. Oracle Query Performance, Oracle Tablespace Health, etc Aspects Templates It is complete configuration set with parameters. e.g. OracleConfiguration, OracleListener, etc. Parameters It is an enhancement to monitoring policy wherein monitoring can be adjusted on the fly using it. e.g. Oracle Instance Username, Oracle Instance Collection, etc.

12 What is HPE OMi Management Pack? Simplified, next generation, topology based end-to-end monitoring solution Templates Aspects Management Templates HPE OMi Management Pack Parameters Parameters Parameters

13 Automatic monitoring Simple configuration Easy-to-tune Reporting

14 Overview of OMi Management Pack DevKit 14

15 Developing an OMi MP using the DevKit START Identify what aspects to monitor for the application. Note: The development and testing of the monitoring solution can be completed without having to install or depend on HP OMi or HP Operations Agent. It can be done, for example, on a laptop. Technically each step of the development process can be owned by a different developer. For example, an SME with Perl skills can focus on developing the monitoring solution and an OMi expert can take ownership of certifying it on OMi/Agent setup. Identify the interfaces/techniques to discover application components and to collect metrics Develop and test iteratively the monitoring solution using the MP DevKit Compile the source code artifacts in to an OMi Management Pack using the MP DevKit END Validate/Tune OMi Management Pack developed in an HPE OMi /OA set up.

16 Development Phase & Production Phase Development Phase Production Phase OMi Management Pack for App-X OMi Management Pack for App-X Development Kit Monitor Framework Content Pack

17 Running the monitoring solution MP DevKit Runtime (Same as the Monitor Framework Runtime) Read Run Configuration File (YAML file) Perl Module

18 Three steps to develop MP using the DevKit Extract the MP DevKit to a folder of your choice Develop and Test the monitoring solution Compile the monitoring solution in to an OMi MP Primary artifacts: monitorframework.pl (The framework that executes your Perl module) Collector.pm (The parent class for your Perl module) Important commands: perl monitorframework.pl <Application.pm> ( Reads <Application.yml>. Executes the run() method of your Perl module) perl monitorframework.pl -topology <Application.pm> ( Reads <Application.yml>. Executes the topology() method from your Perl module) Important commands: ContentCreator -yml <Full path to YAML file> (OMi MP is created in the folder <YAML Folder>/Output) Example: ContentCreator -yml PostGresMonitor/PostgresMonitor.yml (Above command results in: PostGresMonitor/Output/OMi_MP_PostG resmonitor.zip )

19 Management Pack Code WalkThrough 19

20 Compiling the monitoring solution

21 DevKit supported artifacts - 1

22 DevKit supported artifacts - 2

23 DevKit supported artifacts - 3

24 Writing your source code

25 DevKit APIs

26 Invoking your monitoring solution Mode Normal Developer Production Invoked as perl monitorframework.pl perl monitorframework.pl -developer perl monitorframework.pl -production Function Invoked as run () method perl monitorframework.pl [+ - debug option] [+ - <Application.pm>] perl monitorframework.pl production [+ - debug option] [+ - <Application.pm>] perl monitorframework.pl developer [+ - <Application.pm>] topology () method perl monitorframework.pl -topology [+ - debug option] [+ - <Application.pm>] perl monitorframework.pl production topology [+ - debug option] [+ - <Application.pm>] perl monitorframework.pl developer -topology [+ - <Application.pm>]

27 Submitting your metrics

28 Submitting Event and Availability Status

29 Managing Log Messages The run time log level is checked against the log level of a message. For the run time log level of DEBUG, both INFO and DEBUG level log messages are logged. For the run time log level of INFO, only the INFO level log messages are logged.

30 Submitting Topology Information = (); my $instance1 = {}; $instance1->{name} = <name of instance1>; $instance1->{application} = <value of the attribute application> $instance1->{vendor} = <value of the attribute vendor> $instance1->{type} = <value of the CI type of instance1> $instance1->{issecure}{value} = <value e.g. true> # Technique for specifying data type $instance1->{issecure}{type} = <value of data type e.g. bool> # boolean also works. $instance1->{application_port}{value} = <value of port of the application. e.g. 1234> $instance1->{application_port}{type} = <value of data type. e.g. int>; # integer or numeric also work $instance1->{requires} = <value of the key to the required entity> $instance1->{uses} = <value of the key to the used entity> $instance1->{member_of} = <value of the key to the entity to which member of> $instance1->{add_node_rootcontainer} = "true"; #Causes local node to be added as the root container push(@topology, $instance1);

31 Additional Perl Modules

32 Non Perl artifact support

33 YAML File Syntax --- application: HTTPEndPoint domain: Protocol description: URL monitor script: HTTPCollector.pm generate_availability: false generate_discovery: false interval: Very High --- proxy: proxy_port: proxy_user: proxy_password: --- instances: - url: expected_string: expected_status: # proxy: string, Proxy Name, Name of the proxy to use [optional] # proxy_port: int, Proxy Port, Port of the proxy to use [optional] # proxy_user: string, Proxy User, Username necessary to authenticate with proxy [optional] # proxy_password: password, Proxy Password, Password necessary to authenticate with proxy [optional] # url: string, URL, Full URL to monitor # expected_string: string, Expected Text, Expected text that should be inside the returned body [optional] # expected_status: int, Expected HTTP Status, Expected HTTP status code returned by the URL [optional] ---

34 Event YAML File Syntax - 1

35 Event YAML File Syntax - 2

36 Complete a challenge! You have registered for this workshop, but you have not earned the points? Complete the challenge on ITOM Insiders to get 100 points: Not a member yet? Send us an to receive your invitation. 36

37 ...or two? Get another 150 points on ITOM Insiders for having attended the kick off session: Not a member yet? Send us an to receive your invitation. 37

38 Thank you 38

OMi Management Pack for Oracle Database. Software Version: Operations Manager i for Linux and Windows operating systems.

OMi Management Pack for Oracle Database. Software Version: Operations Manager i for Linux and Windows operating systems. OMi Management Pack for Oracle Database Software Version: 1.10 Operations Manager i for Linux and Windows operating systems User Guide Document Release Date: June 2017 Software Release Date: February 2014

More information

OMi Management Pack for Microsoft SQL Server. Software Version: For the Operations Manager i for Linux and Windows operating systems.

OMi Management Pack for Microsoft SQL Server. Software Version: For the Operations Manager i for Linux and Windows operating systems. OMi Management Pack for Microsoft Software Version: 1.01 For the Operations Manager i for Linux and Windows operating systems User Guide Document Release Date: April 2017 Software Release Date: December

More information

Documentation Connector for SLM 1.00

Documentation Connector for SLM 1.00 Connector for SLM 1.00 Home Release notes Get an insight of the latest features and everything that is new in this version. Get started Initiate your understanding on the concepts of Operations Connector

More information

Installation Guide. OMi Management Pack for Microsoft Skype for Business Server. Software Version: 1.00

Installation Guide. OMi Management Pack for Microsoft Skype for Business Server. Software Version: 1.00 OMi Management Pack for Microsoft Skype for Business Server Software Version: 1.00 For Operations Manager i for Linux and Windows operating systems Installation Guide Document Release Date: July 2017 Software

More information

Documentation. This PDF was generated for your convenience. For the latest documentation, always see

Documentation. This PDF was generated for your convenience. For the latest documentation, always see Management Pack for AWS 1.50 Table of Contents Home... 1 Release Notes... 3 What's New in Release 1.50... 4 Known Problems and Workarounds... 5 Get started... 7 Key concepts... 8 Install... 10 Installation

More information

Supplier Response Guide. Access Supplier Portal to Review and Respond to Bid Opportunities

Supplier Response Guide. Access Supplier Portal to Review and Respond to Bid Opportunities Access Supplier Portal to Review and Respond to Bid Opportunities Contact entered for commodity code (and established proxies) will receive email notification of bid opportunity. 1. Login to the Supplier

More information

Leveraging the OO Jenkins Plugin in DevOps scenarios

Leveraging the OO Jenkins Plugin in DevOps scenarios Leveraging the OO Jenkins Plugin in DevOps scenarios HP OO Webinar, October 2015 Remus Golgot, HP Operations Orchestration RnD Agenda Introduction Overview OO Jenkins Plugin Download and Installation Configurations

More information

Destiny Library Manager

Destiny Library Manager Destiny Library Manager Setting Up One Search Your teachers and students can take advantage of your school s subscription databases all in one place through Destiny One Search. One Search saves staff and

More information

Participant User Guide, Version 2.6

Participant User Guide, Version 2.6 Developers Integration Lab (DIL) Participant User Guide, Version 2.6 3/17/2013 REVISION HISTORY Author Date Description of Change 0.1 Laura Edens Mario Hyland 9/19/2011 Initial Release 1.0 Michael Brown

More information

Assessment Environment - Overview

Assessment Environment - Overview 2011, Cognizant Assessment Environment - Overview Step 1 You will take the assessment from your desk. Venue mailer will have all the details that you need it for assessment Login Link, Credentials, FAQ

More information

Oracle ILM Assistant Installation Guide Version 1.4

Oracle ILM Assistant Installation Guide Version 1.4 Oracle ILM Assistant Installation Guide Version 1.4 This document provides instructions for installing and running Oracle Information Lifecycle Management (ILM) Assistant. Version: 1.4 Oracle Corporation

More information

Lisa Patrick. ROI of Marketing Automation

Lisa Patrick. ROI of Marketing Automation Lisa Patrick ROI of Marketing Automation About ClickDimensions Awards & Certifications Ranked #227 in 2015 and #752 in 2016 on the Inc. 5000 list of the fastest growing private companies Highest-ranked

More information

Toad for Oracle Suite 2017 Functional Matrix

Toad for Oracle Suite 2017 Functional Matrix Toad for Oracle Suite 2017 Functional Matrix Essential Functionality Base Xpert Module (add-on) Developer DBA Runs directly on Windows OS Browse and navigate through objects Create and manipulate database

More information

HPE Application Performance Management

HPE Application Performance Management HPE Application Performance Management Software Version: 9.30 APM Extensibility Guide Document Release Date: July 2016 Software Release Date: July 2016 Legal Notices Warranty The only warranties for Hewlett

More information

Try VedaCheck now for all your ASIC needs

Try VedaCheck now for all your ASIC needs Try VedaCheck now for all your ASIC needs From the ABR home page, use the VedaCheck menu to access VedaCheck products directly or through ASIC and Business Names Database Page 1 For all enquiries in relation

More information

LIVE SCOUTING S ADVENTURE 2017 NATIONAL JAMBOREE JULY 19-28

LIVE SCOUTING S ADVENTURE 2017 NATIONAL JAMBOREE JULY 19-28 LIVE SCOUTING S ADVENTURE 2017 NATIONAL JAMBOREE JULY 19-28 A recording of today s webinar along with the slide presentation and a written Q&A will be added to the Webinar section of the website within

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z1-349 Title : Oracle Eloqua Marketing Cloud Service 2017 Implementation Essentials Vendor : Oracle

More information

Assessment Environment - Overview

Assessment Environment - Overview 2011, Cognizant Assessment Environment - Overview Step 1 You have to take up the assessment only using the Virtual Desktop Interface (VDI environment) Please use the URL, https://vdiassessment.cognizant.com

More information

OneView Installation

OneView Installation OneView Installation 1. Introduction... 4 1.1 The OneView Software Package... 4 1.2 OneView server Disk Layout... 4 1.3 OneView Software Download... 5 2. Hardware Recommendations... 5 3. Software Requirements...

More information

HP0-M77. HP BSM Operations Manager i 10.x Software.

HP0-M77. HP BSM Operations Manager i 10.x Software. HP HP0-M77 HP BSM Operations Manager i 10.x Software http://killexams.com/exam-detail/hp0-m77 QUESTION: 61 What can SBEC be used for? A. to correlate events as cause and symptom, based on matching their

More information

MANAGE YOUR CONSTRUCTION21 COMMUNITY

MANAGE YOUR CONSTRUCTION21 COMMUNITY MANAGE YOUR CONSTRUCTION21 COMMUNITY Online communities are spaces dedicated to exchanges, news watch and sharing of documents. By creating your community on a specific topic, you stand out as a national

More information

OMi Management Pack for TIBCO. Software Version: 1.00 Operations Manager i for Linux and Windows operating systems. User Guide

OMi Management Pack for TIBCO. Software Version: 1.00 Operations Manager i for Linux and Windows operating systems. User Guide OMi Management Pack for TIBCO Software Version: 1.00 Operations Manager i for Linux and Windows operating systems User Guide Document Release Date: April 2017 Software Release Date: August 2016 Legal Notices

More information

ChamberMaster/MemberZone Solution Overview April 13, 2018

ChamberMaster/MemberZone Solution Overview April 13, 2018 ChamberMaster/MemberZone Solution Overview April 13, 2018 Agenda Our session includes... Basics of using ChamberMaster/MemberZone Where to get Help Highlights of Modules 2 Overview ChamberMaster/MemberZone

More information

Cisco IMC Management Pack User Guide, Release 4.x For Microsoft System Center Operations Manager

Cisco IMC Management Pack User Guide, Release 4.x For Microsoft System Center Operations Manager Cisco IMC Management Pack User Guide, Release 4.x For Microsoft System Center Operations Manager First Published: 2016-05-04 Last Modified: -- Americas Headquarters Cisco Systems, Inc. 170 West Tasman

More information

How manual testers can break into Test Automation without programming skills

How manual testers can break into Test Automation without programming skills How manual testers can break into Test Automation without programming skills Jim Trentadue Enterprise Account Manager - Ranorex jtrentadue@ranorex.com Agenda Agenda Test Automation Industry recap Test

More information

Tenable.sc-Tenable.io Upgrade Assistant Guide, Version 2.0. Last Revised: January 16, 2019

Tenable.sc-Tenable.io Upgrade Assistant Guide, Version 2.0. Last Revised: January 16, 2019 Tenable.sc-Tenable.io Upgrade Assistant Guide, Version 2.0 Last Revised: January 16, 2019 Table of Contents Welcome to the Tenable.sc-Tenable.io Upgrade Assistant 3 Get Started 4 Environment Requirements

More information

Enterprise Manager: Scalable Oracle Management

Enterprise Manager: Scalable Oracle Management Session id:xxxxx Enterprise Manager: Scalable Oracle John Kennedy System Products, Server Technologies, Oracle Corporation Enterprise Manager 10G Database Oracle World 2003 Agenda Enterprise Manager 10G

More information

Adobe Marketing Cloud Bloodhound for Mac 3.0

Adobe Marketing Cloud Bloodhound for Mac 3.0 Adobe Marketing Cloud Bloodhound for Mac 3.0 Contents Adobe Bloodhound for Mac 3.x for OSX...3 Getting Started...4 Processing Rules Mapping...6 Enable SSL...7 View Hits...8 Save Hits into a Test...9 Compare

More information

Partner Side SMART Guide

Partner Side SMART Guide Partner Side SMART Guide Table of Contents 1. Introduction... 3 2. Partner Registration Process... 3 3. Additional Form... 12 4. Scorecard... 13 5. View Buyer Profile... 14 Partner Side User Manual 31

More information

Hi this is Anna Jarrett, I am here to present today s Digital Cookie online training.

Hi this is Anna Jarrett, I am here to present today s Digital Cookie online training. Hi this is Anna Jarrett, I am here to present today s Digital Cookie online training. You will notice on the top right on most slides I have a page number referencing the Cookie Manual that you will receive

More information

HP Business Service Management

HP Business Service Management HP Business Service Management Software Version: 9.26 Getting Started With BPM - Best Practices Document Release Date: September 2015 Software Release Date: September 2015 Legal Notices Warranty The only

More information

Getting Social with Digital Messaging Server. Jim Crespino Director, Developer Enablement

Getting Social with Digital Messaging Server. Jim Crespino Director, Developer Enablement Getting Social with Digital Messaging Server Jim Crespino Director, Developer Enablement Digital Messaging Server Overview Previously known as Social Messaging Server in Genesys v8.5 Provides an extensible,

More information

IBM Workload Automation Training & Education

IBM Workload Automation Training & Education 1 Automated Systems And Planning IBM Workload Automation Training & Education driving user innovation in workload automation since 1988 Mission: To provide a world class organization that promotes knowledge,

More information

ArcGIS Viewer for Flex An Introduction

ArcGIS Viewer for Flex An Introduction 2013 Esri International User Conference July 8 12, 2013 San Diego, California Technical Workshop ArcGIS Viewer for Flex An Introduction Bjorn Svensson and Heather Gonzago @Bjorn_Svensson @hgonzago Esri

More information

Webinars INSPIRING A SAFE AND SECURE CYBER WORLD Media Kit - North America

Webinars INSPIRING A SAFE AND SECURE CYBER WORLD Media Kit - North America Webinars INSPIRING A SAFE AND SECURE CYBER WORLD 2018 Media Kit - North America 1 THE (ISC) 2 SECURE WEBINARS (ISC) 2 Secure Webinars are a proven method of reaching high-level IT security executives in

More information

Ariba Supplier Information Management

Ariba Supplier Information Management Ariba Supplier Information Management Supplier Registration Process Ariba Self Registration Handbook General Atomics 1 What is Ariba SIM? Ariba Supplier Information Management (SIM) is a SAP solution that

More information

Excel4apps Wands 5 Architecture Excel4apps Inc.

Excel4apps Wands 5 Architecture Excel4apps Inc. Excel4apps Wands 5 Architecture 2014 Excel4apps Inc. Table of Contents 1 Introduction... 3 2 Overview... 3 3 Client... 3 4 Server... 3 4.1 Java Servlet... 4 4.2 OAF Page... 4 4.3 Menu and Function... 4

More information

WHY WE WANT YOU TO MIGRATE TO SCOM 2016

WHY WE WANT YOU TO MIGRATE TO SCOM 2016 WHY WE WANT YOU TO MIGRATE TO SCOM 2016 System Center MVP Bob Cornelissen http://www.bictt.com/blogs BICTT System Center MVP Natascia Heil Systemcentertipps.wordpress.com Celanese Bob Cornelissen Natascia

More information

RESORTS WORLD AT SENTOSA PTE LTD SUPPLIER SELF- REGISTRATION GUIDE

RESORTS WORLD AT SENTOSA PTE LTD SUPPLIER SELF- REGISTRATION GUIDE RESORTS WORLD AT SENTOSA PTE LTD SUPPLIER SELF- REGISTRATION GUIDE As part of business transformation and adoption of technology, RWS will be implementing a Source-To- Pay solution to simplify, automate

More information

WEBINARS INSPIRING A SAFE AND SECURE CYBER WORLD Media Kit - North America

WEBINARS INSPIRING A SAFE AND SECURE CYBER WORLD Media Kit - North America INSPIRING A SAFE AND SECURE CYBER WORLD 2019 Media Kit - North America THE (ISC) 2 (ISC) 2 Webinars are a proven method of reaching high-level IT security executives in an intimate setting. Members advance

More information

Using the SQL CI TeamCity plugin in SQL Automation Pack

Using the SQL CI TeamCity plugin in SQL Automation Pack Using the SQL CI TeamCity plugin in SQL Automation Pack We recommend upgrading to the DLM Automation Suite so you can take advantage of the latest features and fixes. For more information, see Upgrading.

More information

Welcome to the SIGGRAPH online networking tool!

Welcome to the SIGGRAPH online networking tool! Welcome to the SIGGRAPH online networking tool! We look forward to seeing you at SIGGRAPH 2013! To help you maximize your connections, we'd like to welcome you to the integrated networking platform. This

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 7.51 HP SiteScope Integration Guide Document Release Date: August 2009 Software Release Date: August 2009 Legal Notices Warranty The only warranties

More information

How to apply for the e-tip using the ZIMRA e-tip Portal. 1. Sign Up on a Mobile app. Select the e-tip app on your phone

How to apply for the e-tip using the ZIMRA e-tip Portal. 1. Sign Up on a Mobile app. Select the e-tip app on your phone How to apply for the e-tip using the ZIMRA e-tip Portal 1. Sign Up on a Mobile app Select the e-tip app on your phone Select Sign Up if you don t have an account Capture your Sign Up details Select SUBMIT

More information

OAuth2 Autoconfig. Copyright

OAuth2 Autoconfig. Copyright Copyright Table of Contents... iii 1. Downloading... 1 1.1. Source... 1 1.2. Maven... 1 1.3. Gradle... 2 2. Authorization Server... 3 3. Resource Server... 4 I. Token Type in User Info... 5 II. Customizing

More information

OMi Management Pack for Microsoft IIS. Software Version: 1.00 Operations Manager i for Linux and Windows operating systems.

OMi Management Pack for Microsoft IIS. Software Version: 1.00 Operations Manager i for Linux and Windows operating systems. OMi Management Pack for Microsoft Software Version: 1.00 Operations Manager i for Linux and Windows operating systems User Guide Document Release Date: June 2017 Software Release Date: March 2015 Legal

More information

Notification Services

Notification Services , page 1 Service Option Configuration, page 9 Notification in Policy Builder relates to pushing messages from Policy Builder to subscribers. Service Providers can use messages to alert the subscriber to

More information

The Second International Conference for Assessment & Evaluation. Participant and Speaker Guide

The Second International Conference for Assessment & Evaluation. Participant and Speaker Guide The Second International Conference for Assessment & Evaluation Participant and Speaker Guide Contents Introduction... 3 User Types... 3 Attendees... 3 Speakers... 3 Invited Speakers... 3 Registration...

More information

Scribe Insight 6.5. Release Overview and Technical Information Version 1.0 April 7,

Scribe Insight 6.5. Release Overview and Technical Information Version 1.0 April 7, Scribe Insight 6.5 Release Overview and Technical Information Version 1.0 April 7, 2009 www.scribesoft.com Contents What is Scribe Insight?... 3 Release Overview... 3 Product Management Process Customer

More information

ForeScout Extended Module for ServiceNow

ForeScout Extended Module for ServiceNow ForeScout Extended Module for ServiceNow Version 1.1.0 Table of Contents About this Integration... 4 Use Cases... 4 Asset Identification... 4 Asset Inventory True-up... 5 Additional ServiceNow Documentation...

More information

ForeScout Extended Module for ServiceNow

ForeScout Extended Module for ServiceNow ForeScout Extended Module for ServiceNow Version 1.2 Table of Contents About ServiceNow Integration... 4 Use Cases... 4 Asset Identification... 4 Asset Inventory True-up... 5 Additional ServiceNow Documentation...

More information

OMi Management Pack for Microsoft Active Directory. Software Version: Operations Manager i for Linux and Windows operating systems.

OMi Management Pack for Microsoft Active Directory. Software Version: Operations Manager i for Linux and Windows operating systems. OMi Management Pack for Microsoft Active Directory Software Version: 1.00 Operations Manager i for Linux and Windows operating systems User Guide Document Release Date: June 2017 Software Release Date:

More information

SIMS ID Registration with SIMS Agora

SIMS ID Registration with SIMS Agora SIMS ID Registration with SIMS Agora A Troubleshooting Guide and Latest Updates Last updated 3 rd October #EducationExistsTo SIMS ID Registrations Overview SIMS ID Registration SIMS ID offers flexible

More information

WebEx Integration User Guide. Cvent, Inc 1765 Greensboro Station Place McLean, VA

WebEx Integration User Guide. Cvent, Inc 1765 Greensboro Station Place McLean, VA WebEx Integration User Guide 2018 Cvent, Inc 1765 Greensboro Station Place McLean, VA 22102 www.cvent.com Contents WebEx Integration User Guide... 3 Enabling WebEx Integration in Your Account... 4 Setting

More information

ForeScout Extended Module for VMware AirWatch MDM

ForeScout Extended Module for VMware AirWatch MDM ForeScout Extended Module for VMware AirWatch MDM Version 1.7.2 Table of Contents About the AirWatch MDM Integration... 4 Additional AirWatch Documentation... 4 About this Module... 4 How it Works... 5

More information

Registration Guide for the UNESCAP Event Portal

Registration Guide for the UNESCAP Event Portal Registration Guide for the UNESCAP Event Portal This guide will assist you with: Creating an account Register for an event Click on any of the above links to skip to the relevant section. Primary address

More information

User Plugins. About Plugins. Deploying Plugins

User Plugins. About Plugins. Deploying Plugins User Plugins About Plugins Artifactory Pro allows you to easily extend Artifactory's behavior with your own plugins written in Groovy. User plugins are used for running user's code in Artifactory. Plugins

More information

Real Application Security Administration

Real Application Security Administration Oracle Database Real Application Security Administration Console (RASADM) User s Guide 12c Release 2 (12.2) E85615-01 June 2017 Real Application Security Administration Oracle Database Real Application

More information

User Guide. National Sustainable Lodging Network User Guide (last updated: March 2011)

User Guide. National Sustainable Lodging Network User Guide (last updated: March 2011) User Guide The National Sustainable Lodging Network, consists of an online community of sustainable hospitality practitioners and a clearinghouse to support the work of this community. The P2Rx Centers

More information

HPE Operations Agent. Concepts Guide. Software Version: For the Windows, HP-UX, Linux, Solaris, and AIX operating systems

HPE Operations Agent. Concepts Guide. Software Version: For the Windows, HP-UX, Linux, Solaris, and AIX operating systems HPE Operations Agent Software Version: 12.02 For the Windows, HP-UX, Linux, Solaris, and AIX operating systems Concepts Guide Document Release Date: December 2016 Software Release Date: December 2016 Legal

More information

How do I sign up for a Canvas account as a parent?

How do I sign up for a Canvas account as a parent? How do I sign up for a Canvas account as a parent? Parents (Observers) can link their Canvas account to their student's account so they can see assignment dues dates, announcements, and other course content.

More information

Volunteer and Site Liaison Web Access to RacePlanner

Volunteer and Site Liaison Web Access to RacePlanner Volunteer and Site Liaison Web Access to RacePlanner As a volunteer/site liaison you can now login to RacePlanner and view a list of all participants for the teams you are associated with, as well as access

More information

DreamFactory Security Guide

DreamFactory Security Guide DreamFactory Security Guide This white paper is designed to provide security information about DreamFactory. The sections below discuss the inherently secure characteristics of the platform and the explicit

More information

ForeScout Extended Module for IBM BigFix

ForeScout Extended Module for IBM BigFix ForeScout Extended Module for IBM BigFix Version 1.0.0 Table of Contents About this Integration... 4 Use Cases... 4 Additional BigFix Documentation... 4 About this Module... 4 Concepts, Components, Considerations...

More information

Collaboration in Teams: Simulink Projects Demonstration

Collaboration in Teams: Simulink Projects Demonstration Collaboration in Teams: Simulink Projects Demonstration 김종헌차장 Senior Application Engineer MathWorks Korea 2011 The MathWorks, Inc. 1 Agenda Motivation 7 common technical challenges Next steps Q & A allen.kim@mathworks.com

More information

Service Anywhere Practitioner Forum. Program Overview

Service Anywhere Practitioner Forum. Program Overview Service Anywhere Practitioner Forum Program Overview 2016 Practitioner Forum Introduction Practitioner Forum* to regularly exchange information on technical topics with HPE, partners, and customers Bi-weekly

More information

ServiceNow Certified Implementation Specialist Discovery Exam Specification

ServiceNow Certified Implementation Specialist Discovery Exam Specification ServiceNow Certified Implementation Specialist Discovery Exam Specification Introduction The ServiceNow Certified Implementation Specialist Discovery Exam Specification defines the purpose, audience, testing

More information

HP Service Quality Manager Solution V3.2.1

HP Service Quality Manager Solution V3.2.1 HP Service Quality Manager Solution V3.2.1 Service Management Foundation Installation and Configuration Guide Edition: 1.1 For Windows 64bit & Linux 64bit Operating System March 2015 Copyright 2015 Hewlett-Packard

More information

ClearPass and Tenable.sc Integration Guide. Tenable.sc. Integration Guide. ClearPass. ClearPass and Tenable.sc - Integration Guide 1

ClearPass and Tenable.sc Integration Guide. Tenable.sc. Integration Guide. ClearPass. ClearPass and Tenable.sc - Integration Guide 1 ClearPass and Tenable.sc Integration Guide Tenable.sc ClearPass Integration Guide ClearPass and Tenable.sc - Integration Guide 1 ClearPass and Tenable.sc Integration Guide Change Log Version Date Modified

More information

vrealize Automation Management Pack 2.0 Guide

vrealize Automation Management Pack 2.0 Guide vrealize Automation Management Pack 2.0 Guide This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for

More information

Exam Preparation Guide HP0-M94: Advanced LoadRunner 9.5 Software Exam

Exam Preparation Guide HP0-M94: Advanced LoadRunner 9.5 Software Exam HP Certified Professional Program Exam Preparation Guide HP0-M94: Advanced LoadRunner 9.5 Software Exam The intent of this guide is to set expectations about the context of the exam and to help candidates

More information

Online Extended Abstract Submission Instructions

Online Extended Abstract Submission Instructions Agility, Innovation, IMPACT Online Extended Abstract Submission Instructions ARSC2016 online Extended Abstracts can be submitted via our Editorial Manager website: http://www.editorialmanager.com/jacrs

More information

Continuous Integration, Continuous Deployment and Continuous Testing by HP Codar using ALM and Jenkins

Continuous Integration, Continuous Deployment and Continuous Testing by HP Codar using ALM and Jenkins HP Codar Software Version 1.0 Continuous Integration, Continuous Deployment and Continuous Testing by HP Codar using ALM and Jenkins HP Codar (1.0) Page 1 of 24 Contents What is Codar?... 3 Why is Codar

More information

Azure Application Deployment and Management: Service Fabric Create and Manage a Local and Azure hosted Service Fabric Cluster and Application

Azure Application Deployment and Management: Service Fabric Create and Manage a Local and Azure hosted Service Fabric Cluster and Application Azure Application Deployment and Management: Service Fabric Create and Manage a Local and Azure hosted Service Fabric Cluster and Application Overview This course includes optional practical exercises

More information

Release Notes. Operations Smart Plug-in for Virtualization Infrastructure

Release Notes. Operations Smart Plug-in for Virtualization Infrastructure Operations Smart Plug-in for Virtualization Infrastructure Software Version: 12.04 Operations Manager for Windows, HP-UX, Linux, and Solaris operating systems Release Notes Document Release Date: August

More information

HPE Operations Bridge Reporter

HPE Operations Bridge Reporter HPE Operations Bridge Reporter Software Version: 10.21 IBM Application Server Content Pack Reference Document Release Date: August 2017 Software Release Date: August 2017 Legal Notices Warranty The only

More information

1Z Oracle WebLogic Server 12c - Administration I Exam Summary Syllabus Questions

1Z Oracle WebLogic Server 12c - Administration I Exam Summary Syllabus Questions 1Z0-133 Oracle WebLogic Server 12c - Administration I Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-133 Exam on Oracle WebLogic Server 12c - Administration I... 2 Oracle 1Z0-133

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony Fabric Integration Service Admin Console User Guide On-Premises Release V8 SP1 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the

More information

MY GS is a renewal and volunteer resource tool built into one login. It s easy to access these great resources in one place!

MY GS is a renewal and volunteer resource tool built into one login. It s easy to access these great resources in one place! MY GS is a renewal and volunteer resource tool built into one login. It s easy to access these great resources in one place! It houses: Member Profile Your member profile gives you the ability to update

More information

Discover GALILEO. Institutional Branding

Discover GALILEO. Institutional Branding Discover GALILEO Institutional Branding GALILEO Steering Committee Branding Policy Discover GALILEO must display the GALILEO logo or text brand, both in the EBSCO interface and on the institutional and

More information

Securing ArcGIS Server Services An Introduction

Securing ArcGIS Server Services An Introduction 2013 Esri International User Conference July 8 12, 2013 San Diego, California Technical Workshop Securing ArcGIS Server Services An Introduction David Cordes & Derek Law Esri - Redlands, CA Agenda Security

More information

70-532: Developing Microsoft Azure Solutions

70-532: Developing Microsoft Azure Solutions 70-532: Developing Microsoft Azure Solutions Exam Design Target Audience Candidates of this exam are experienced in designing, programming, implementing, automating, and monitoring Microsoft Azure solutions.

More information

Manual Book Application BISPro Bank Indonesia System Procurement

Manual Book Application BISPro Bank Indonesia System Procurement Manual Book Application BISPro Bank Indonesia System Procurement Content CHAPTER I CHAPTER II Partner Registration 1. Partner Preregistration... 1 2. Complete Online Data... 3 a. Foreign Company... 3 Procurement

More information

NA120 Network Automation 10.x Essentials

NA120 Network Automation 10.x Essentials Course Data Sheet NA120 Network Automation 10.x Essentials Course No.: NA120-101 Category/Sub Category: Operations Management/Network Management Center For software version(s): 9.0 10.1 Software version

More information

Moving to ilinc from WebEx

Moving to ilinc from WebEx Moving to from About This Guide Communications has developed a powerful yet remarkably easy to use suite of software products that take full advantage of leading-edge Internet, audio, and network communication

More information

Getting Started Guide For Users

Getting Started Guide For Users Getting Started Guide For Users August 2017 Table of Contents Overview 3 Create Your Account How to Log into the System Resetting Your Password Updating your User Profile Adding a picture The Learner Dashboard

More information

Selenium Testing Training

Selenium Testing Training About Intellipaat Intellipaat is a fast-growing professional training provider that is offering training in over 150 most sought-after tools and technologies. We have a learner base of 600,000 in over

More information

Using Automated Network Management at Fiserv. June 2012

Using Automated Network Management at Fiserv. June 2012 Using Automated Network Management at Fiserv June 2012 Brought to you by Join Group Vivit Network Automation Special Interest Group (SIG) Leaders: Chris Powers & Wendy Wheeler Your input is welcomed on

More information

VMware vrealize operations Management Pack FOR KVM. User Guide

VMware vrealize operations Management Pack FOR KVM. User Guide VMware vrealize operations Management Pack FOR KVM User Guide TABLE OF CONTENTS 1. Purpose... 3 2. Introduction to the Management Pack... 3 2.1 How the Management Pack Collects Data... 3 2.2 Data the Management

More information

J2EE Development Best Practices: Improving Code Quality

J2EE Development Best Practices: Improving Code Quality Session id: 40232 J2EE Development Best Practices: Improving Code Quality Stuart Malkin Senior Product Manager Oracle Corporation Agenda Why analyze and optimize code? Static Analysis Dynamic Analysis

More information

HPE Enterprise Maps Security. HPE Software, Cloud and Automation

HPE Enterprise Maps Security. HPE Software, Cloud and Automation HPE Enterprise Maps HPE Software, Cloud and Automation Agenda Concepts and Access Control Domains, Roles, Groups, Users Authentication LDAP Integration SSO Integration HTTP Proxy and Access Control Organizations

More information

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites Oracle Database Real Application Security Administration 12c Release 1 (12.1) E61899-04 May 2015 Oracle Database Real Application Security Administration (RASADM) lets you create Real Application Security

More information

ExtraHop 7.3 ExtraHop Trace REST API Guide

ExtraHop 7.3 ExtraHop Trace REST API Guide ExtraHop 7.3 ExtraHop Trace REST API Guide 2018 ExtraHop Networks, Inc. All rights reserved. This manual in whole or in part, may not be reproduced, translated, or reduced to any machinereadable form without

More information

Introduction to MySQL. Database Systems

Introduction to MySQL. Database Systems Introduction to MySQL Database Systems 1 Agenda Bureaucracy Database architecture overview SSH Tunneling Intro to MySQL Comments on homework 2 Homework #1 Submission date is on the website.. (No late arrivals

More information

Perceptive Matching Engine

Perceptive Matching Engine Perceptive Matching Engine Installation and Setup Guide Version: 1.0.x Written by: Product Development, R&D Date: March 2018 2018 Hyland Software, Inc. and its affiliates. Table of Contents Overview...

More information

NNMi120 Network Node Manager i Software 10.x Essentials

NNMi120 Network Node Manager i Software 10.x Essentials Course Data Sheet NNMi120 Network Node Manager i Software 10.x Essentials Course No.: NNMI120-101 Category/Sub Category: Operations Management/Network Management For software version(s): Software version

More information

Bootstrap your APEX authentication & authorisation. a presentation by

Bootstrap your APEX authentication & authorisation. a presentation by Bootstrap your APEX authentication & authorisation a presentation by Who am I? Richard Martens independant Consultant since 2012 smart4apex founding member (2010) oracle since 2002 (Oracle 8i) PL/SQL,

More information

MANTRA REGISTERED DEVICE SERVICE WINDOWS MANTRA SOFTECH INDIA PVT LTD

MANTRA REGISTERED DEVICE SERVICE WINDOWS MANTRA SOFTECH INDIA PVT LTD MANTRA REGISTERED DEVICE SERVICE WINDOWS MANTRA SOFTECH INDIA PVT LTD TABLE OF CONTENTS 1. Download link for Mantra RD Service Setup.... 3 2. Mantra MFS100 Driver Setup Installation.... 4 3. Mantra RD

More information

Webinars Index... 3 Watch ActivityInfo Webinars on our GoToStage Channel... 4

Webinars Index... 3 Watch ActivityInfo Webinars on our GoToStage Channel... 4 WEBINARS Table of Contents Index... 3 Watch ActivityInfo on our GoToStage Channel... 4 Database Setup... 7 Creating and Organizing Forms... 8 Adding Partners, setting Permissions and Targets... 9 Working

More information

Coach and Site Liaison Access to RacePlanner

Coach and Site Liaison Access to RacePlanner Coach and Site Liaison Access to RacePlanner As a coach/site liaison you can now login to RacePlanner and view a list of all participants for the teams you are associated with, as well as access a number

More information