TIBCO FTL R Programming Tutorial Software Release 5.3 October 2017

Size: px
Start display at page:

Download "TIBCO FTL R Programming Tutorial Software Release 5.3 October 2017"

Transcription

1 TIBCO FTL R Programming Tutorial Software Release 5.3 October 2017

2 1 Contents Introduction i 1 Getting Started with FTL Programming Set Up the Environment Start the Local Realm Server Build the Samples Run the Samples Understanding the Code ftlbasicpub.c ftlbasicsub.c Error Handling Running Without the Realm Server Adding Error Handling Understanding the Error Handling Code and Output Restart the Realm Server Working With Exceptions Messages and Fields FTL Field Types FTL API Functions to Set Field Values in a Message FTL API Functions to Get Field Values from a Message Working with Messages Introduction to Content Matchers Matcher Specification ftlbasicpub.c ftlbasicsub.c Build and Run the Samples Some Variations Exploring the Realm The Realm Server Web Interface The Realm Server Web API Defining an Application The Process Defining an Application Using the Realm Server Web Interface Defining an Application Using the Realm Server Web API... 45

3 78 Lesson 10: Client Metrics The realm server web interface makes available metrics as reported by each client program. In this lesson we ll look at some of the metrics available. Before looking at the metrics, a basic understanding of the communication between a client and the realm server is needed Client-Realm Server Communication The connection between a client program and the realm server is established by the tibrealm_connect() call. Once connected, basic identifying information is exchanged, and the realm server sends the realm definition to the client program. Next the client program sends a HELLO message to the realm server, containing additional identifying information. At this point the client program information appears in the realm server s list of clients (see Figure 9.3, page 77 for an example). While the client program is running, the realm server periodically sends heartbeat messages to the client program. In a similar manner, the client program periodically sends heartbeat messages to the realm server. Any metrics gathered since the last heartbeat message sent to the realm server are included. A client program s call to tibrealm_close() sends a GOODBYE message to the realm server, which causes the realm server to remove that client from its list of clients. The connection to the realm server is then closed. A client program that abnormally terminates (such as via ctrl + C or a fatal error) does not send a GOODBYE message. Instead it is subject to timeouts based on the absence of heartbeat messages before being removed from the realm server s list of clients. The frequency at which heartbeat messages are sent by either side is determined by the realm properties, which are part of the realm definition. Let s take a look at these properties. Ensure the realm server is still running, open a web browser, and navigate to the URL If the realm server login page is displayed, login as you did in Section 6.1, page 26. Bring up the Applications grid by clicking on the link on the left side of the screen.

4 79 Figure 10.1: Applications grid Along the left side of the screen, the link denoted by the icon and labeled Realm Properties displays the Realm Properties page. Click it, resulting in a display similar to Figure Figure 10.2: Realm Properties page We re interested in the information in the Intervals box. Under Client! Realm Server, Heartbeat controls how often the client program sends a heartbeat message to the realm server, while Timeout

5 80 determines how much time can pass without the realm server receiving a heartbeat message from a client before the realm server removes that client from its list of clients. Under Realm Server! Client, Hearbeat controls how often the realm server sends a heartbeat message to all client programs, while Timeout determines how much time can pass without the client receiving a heartbeat message from the realm server before the client attempts to reconnect to the realm server. Under Client Statistics Sampling, Client Sampling Interval controls how often the client program gathers its metrics into a timestamped sample. If Client Sampling Interval is smaller than the Client! Realm Server heartbeat interval, each heartbeat message sent to the realm server may contain more than one sample Run the Samples In order to look at the client metrics, let s run the sample client programs from lesson 9. Open a command window, navigate to the $TIBFTL_TUTDIR/code/lesson-09 directory, and start the subscriber. We ll specify that application App1 and endpoint endpoint-1 be used:./ftlsub -a App1 -e endpoint-1 In another command window, navigate to the same directory and start the publisher. Specify the same application and endpoint names. We ll also instruct the publisher to send 1000 messages; this will give us sufficient time to look at the metrics../ftlpub -a App1 -e endpoint-1 -c Examine the Metrics In the open web browser (which should still be on the Realm Properties page as shown in Figure 10.2), the status area should show two active clients. Click anywhere in the status area to expose the Status Dashboard:

6 81 Figure 10.3: Status Dashboard Click the Clients count: Figure 10.4: Client Status Display Click anywhere in the row for the subscriber, with the Client Label tibsub :

7 82 Figure 10.5: Subscriber Details Metrics are divided into categories. In Figure 10.5, four categories are shown, each corresponding to one of the links on the right side: Application, Endpoints, Queues, and Transports. Note that these categories will not appear until a heartbeat message containing the client metrics is received by the realm server. Since the default client heartbeat interval (as shown in Figure 10.2) is 60 seconds, it may take that long before the categories are displayed on your screen. Click the Application link to display the application metrics:

8 83 Figure 10.6: Subscriber Application metrics Each metrics category contains one or more rows of metric data. Each row is identified by the context it belongs to; the context name appears under the Name column. A context defines a particular instance of the category, and its name is established when the corresponding object is instantiated. Application metrics pertain to the client application as a whole. Thus it makes sense that there is a single context in the Application category. The corresponding context name is exactly the application name passed to tibrealm_connect(). As an example, refer back to line 75 of Listing 8.4, page 52. The metrics provided for applications are: Dynamic Formats Process Peak RSS (KB) Process RSS (KB) Process VM (KB) System CPU Time (µsec) User CPU Time (µsec) The number of named dynamic formats used by the client program. The peak resident set size of the client program (in KB). The current resident set size of the client program (in KB). The current amount of virtual memory used by the client program (in KB). The amount of system-level CPU time used by the client program (in µseconds). The amount of user-level CPU time used by the client program (in µseconds). To continue, click the Endpoints link on the right side of the screen.

9 84 Figure 10.7: Subscriber Endpoint metrics Each row in the Endpoints category corresponds to an endpoint instantiated by a call to tib_publishercreate() or tib_subscribercreate(), and the corresponding name is the endpoint name specified in the call. Refer back to line 77 of Listing 8.4, page 52 (for tib_publishercreate()), and line 183 of Listing 8.8, page 54 (for tib_subscribercreate()) for examples. The metrics provided for endpoints include: Msgs Recvd Msgs Sent Store Mismatch Msgs Inbound data messages received through the endpoint. Outbound data messages sent through the endpoint. The number of message flows that result from a store mismatch. This deals with persistence and is discussed in a later lesson. Immediately below the Endpoints category is the Queues category. Each row corresponds to an event queue instantiated by a call to tibeventqueue_create(). Unlike other objects, event queues are named via properties; if no properties are passed to tibeventqueue_create(), the FTL library assigns a name. Two metrics are provided for event queues: Queue Backlog Queue Discards The maximum number of messages in the event queue during the Client Sampling Interval. Recall from Section 10.1, the Client Sampling Interval is a realm property which controls how often the client program gathers its metrics into a timestamped samples. After the metrics are gathered, the Queue Backlog is reset; thus the metric reflects the highest value over the interval. Number of inbound messages discarded by the event queue. To continue, click the Transports shortcut:

10 85 Figure 10.8: Subscriber Transport metrics Each row in the Transports category corresponds to a transport associated with an endpoint used by the client program. Four metrics are provided for transports: Bytes Recvd Bytes Sent Data Lost Format Unavailable Inbound data bytes received on the transport. Outbound data bytes sent on the transport. Number of inbound data loss events on the transport. This does not reflect the number of bytes or messages lost, only the number of discrete loss events. The number of messages with an unrecognized format received on the transport. It is important to note that messages sent or received are endpoint metrics, while bytes sent or received are transport metrics. In addition, even though this is a subscriber, the transport shows non-zero bytes sent. This reflects the data exchange which is part of the initial setup traffic between the publisher and subscriber. Scroll the details window so that both the endpoint and transport metrics are visible. Your screen should look something like:

11 86 Figure 10.9: Subscriber Endpoint and Transport metrics Note the number of messages and bytes received. In Figure 10.9, 117 messages and bytes were received. The numbers on your screen will likely be different. We can approximate the number of bytes per message received: bytes message = Since metrics arrive at the realm server as part heartbeat messages from the client program, and the default client heartbeat interval is 60 seconds, wait a minute or two for additional metrics to arrive. The metrics refresh automatically approximately every five seconds, so you won t have to do anything to see new metrics as they arrive.

12 87 Figure 10.10: Subscriber Endpoint and Transport metrics after two minutes In Figure 10.10, we now have 237 messages and bytes received. This works out to: bytes message = As there is some initial overhead in the form of connection setup between the publisher and subscriber, the number of bytes received will never be an exact multiple of the number of messages received. However, over time the ratio will converge to about 90 bytes per message. Now, let s look at the publisher metrics. Click anywhere in the row for the publisher, with the Client Label tibsub :

13 88 Figure 10.11: Publisher Details Regardless of the role of the client program, the metrics available are essentially the same. One major difference in Figure is the absence of a Queues shortcut on the right side. The publisher did not create an event queue: therefore no event queue metrics are generated. Click the Application shortcut: Figure 10.12: Application metrics

14 89 The application metrics provided are the same as those provided for the subscriber client program. Click the Transports shortcut: Figure 10.13: Publisher Endpoint and Transport metrics The endpoint and transport metrics provided are again the same as those provided for the subscriber client program. Based on Figure 10.13, we can calculate the bytes per message sent: Wait a few minutes for additional samples to arrive: bytes message =

15 90 Figure 10.14: Publisher Endpoint and Transport metrics after two minutes bytes message = As we saw for the subscriber, the bytes per message sent is converging to approximately 90.

TIBCO FTL R Programming Tutorial Software Release 5.3 October 2017

TIBCO FTL R Programming Tutorial Software Release 5.3 October 2017 TIBCO FTL R Programming Tutorial Software Release 5.3 October 2017 1 Contents Introduction i 1 Getting Started with FTL Programming 1 1.1 Set Up the Environment... 1 1.2 Start the Local Realm Server...

More information

Lesson 5: Introduction to Content Matchers

Lesson 5: Introduction to Content Matchers 20 Lesson 5: Introduction to Content Matchers Content matchers (or simply matchers) provide a mechanism to specify which messages a subscribing client program is interested in receiving. Message interest

More information

Lesson 11: Introduction to Formats

Lesson 11: Introduction to Formats 91 Lesson 11: Introduction to Formats A format defines the set of fields that a message can contain. This includes both the name and the type of each field. Once a format has been defined, it can be used

More information

Lesson 7: Defining an Application

Lesson 7: Defining an Application 35 Lesson 7: Defining an Application In this lesson, we will define two new applications in the realm server, with an endpoint for each application. We will also define two new transports to be used by

More information

Group Administrators

Group Administrators Hosted VoIP Phone System Blue Platform Admin Portal Guide for Group Administrators Table of Contents 1 About this Guide... 6 2 Accessing the Hosted VoIP Phone System Admin Portal... 7 3 Hosted VoIP Admin

More information

Lab 3. On-Premises Deployments (Optional)

Lab 3. On-Premises Deployments (Optional) Lab 3 On-Premises Deployments (Optional) Overview This Lab is considered optional to the completion of the API-Led Connectivity Workshop. Using Runtime Manager, you can register and set up the properties

More information

Hands-on Lab Session 9909 Introduction to Application Performance Management: Monitoring. Timothy Burris, Cloud Adoption & Technical Enablement

Hands-on Lab Session 9909 Introduction to Application Performance Management: Monitoring. Timothy Burris, Cloud Adoption & Technical Enablement Hands-on Lab Session 9909 Introduction to Application Performance Management: Monitoring Timothy Burris, Cloud Adoption & Technical Enablement Copyright IBM Corporation 2017 IBM, the IBM logo and ibm.com

More information

Monitoring and Analysis

Monitoring and Analysis CHAPTER 3 Cisco Prime Network Analysis Module 5.1 has two types of dashboards: One type is the summary views found under the Monitor menu, and the other type is the over time views found under the Analyze

More information

GETTING STARTED GUIDE

GETTING STARTED GUIDE SETUP GETTING STARTED GUIDE About Benchmark Email Helping you turn your email list into relationships and sales. Your email list is your most valuable marketing asset. Benchmark Email helps marketers short

More information

Configuring General Settings for the EN-4000

Configuring General Settings for the EN-4000 EN-4000 Reference Manual Document 4 Configuring General Settings for the EN-4000 T he EN-4000 is the newest member of Encore Networks family of routers. It provides wireless and cabled connections to a

More information

CPS Statistics. Bulk Statistics Overview

CPS Statistics. Bulk Statistics Overview Bulk Statistics Overview, page 1, page 2 Bulk Statistics Collection, page 6 Example, page 8 Bulk Statistics Overview Bulk Statistics are the statistics that are gathered over a given time period and written

More information

Server Status Dashboard

Server Status Dashboard The Cisco Prime Network Registrar server status dashboard in the web user interface (web UI) presents a graphical view of the system status, using graphs, charts, and tables, to help in tracking and diagnosis.

More information

Secure Web Appliance. Basic Usage Guide

Secure Web Appliance. Basic Usage Guide Secure Web Appliance Basic Usage Guide Table of Contents 1. Introduction... 1 1.1. About CYAN Secure Web Appliance... 1 1.2. About this Manual... 1 1.2.1. Document Conventions... 1 2. Description of the

More information

271 Waverley Oaks Rd. Telephone: Suite 206 Waltham, MA USA

271 Waverley Oaks Rd. Telephone: Suite 206 Waltham, MA USA Contacting Leostream Leostream Corporation http://www.leostream.com 271 Waverley Oaks Rd. Telephone: +1 781 890 2019 Suite 206 Waltham, MA 02452 USA To submit an enhancement request, email features@leostream.com.

More information

UNITY DASHBOARD LATEST RELEASE NOTES

UNITY DASHBOARD LATEST RELEASE NOTES UNITY DASHBOARD LATEST RELEASE NOTES CONTENTS Release 1.1.7.3... 2 Release 1.1.6.5... 3 Release 1.1.5.4... 4 Release 1.1.4.5... 5 Release 1.1.3.2... 7 Release 1.1.2.2... 8 Release 1.1.1.1... 9 Release

More information

Introduction. Configuring the Process. Configure App Manager to Track Actual Usage 1

Introduction. Configuring the Process. Configure App Manager to Track Actual Usage 1 Configure App Manager to Track Actual Usage 1 Introduction The OpenLM system can be configured to track idle times of processes that are monitored by OpenLM Agents. This document outlines how to configure

More information

InControl 2 Software Appliance Setup Guide

InControl 2 Software Appliance Setup Guide InControl 2 Software Appliance Setup Guide (Last updated: 2017-11) Contents 1. Introduction Minimum Hardware Requirements 2. For VMware ESXi 6.0 and ESXi 5.5 (SCSI) Networking Creating InControl and DB

More information

Scribe Monitor App. Version 1.0

Scribe Monitor App. Version 1.0 Scribe Monitor App Version 1.0 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, photocopying, recording, or otherwise,

More information

Drill down. Drill down on metrics from a dashboard or protocol page

Drill down. Drill down on metrics from a dashboard or protocol page Drill down Published: 2017-12-29 An interesting metric naturally leads to questions about behavior in your network environment. For example, if you find a large number of DNS request timeouts on your network,

More information

B E T A. New Mobile Interface (2015) User Guide

B E T A. New Mobile Interface (2015) User Guide B E T A New Mobile Interface (2015) User Guide Application Account Setup & Maintenance Initial Account Setup Account Maintenance New Skyward Mobile Navigation User Main Menu Recent Favorite Application

More information

Integrating Entuity Network Management with BMC TrueSight Operations Management. For use with Entuity 16.5 downwards June 2017

Integrating Entuity Network Management with BMC TrueSight Operations Management. For use with Entuity 16.5 downwards June 2017 Integrating Entuity Network Management with BMC TrueSight Operations Management For use with Entuity 16.5 downwards June 2017 1 Document Overview 3 Installing the Entuity Network Component 3 Example 4

More information

Modular Messaging Web Client. Administration and maintenance

Modular Messaging Web Client. Administration and maintenance Administration and maintenance Administration and maintenance Your system administrator has provided you with an ID and a password to access the Administration and Maintenance pages. The Administration

More information

Relativity's mobile app Guide

Relativity's mobile app Guide Relativity's mobile app Guide March 2, 2016 - Version 1.1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

EdgeConnect for Amazon Web Services (AWS)

EdgeConnect for Amazon Web Services (AWS) Silver Peak Systems EdgeConnect for Amazon Web Services (AWS) Dinesh Fernando 2-22-2018 Contents EdgeConnect for Amazon Web Services (AWS) Overview... 1 Deploying EC-V Router Mode... 2 Topology... 2 Assumptions

More information

None Player Listen Live Button. Core Publisher Persistent Player. Triton Player

None Player Listen Live Button. Core Publisher Persistent Player. Triton Player For any station that is transitioning to Triton Streaming, Core Publisher has been integrated to include the new Triton Player into its player options. If you are using Triton as your streaming provider,

More information

This section contains context-sensitive Online Help content for the Web Client > Monitor tab.

This section contains context-sensitive Online Help content for the Web Client > Monitor tab. This section contains context-sensitive Online Help content for the Web Client > tab. Viewing Switch CPU Information, page 2 Viewing Switch Memory Information, page 2 Viewing Switch Traffic and Errors

More information

Virtual Communications Express User Guide: Call Center Supervisor

Virtual Communications Express User Guide: Call Center Supervisor Feature Overview Call Center Supervisor supports agent monitoring, queue management, current and historical reporting, and other features required in large call centers. Benefits of Call Center include:

More information

Genesys Pulse. Known Issues and Recommendations

Genesys Pulse. Known Issues and Recommendations Genesys Pulse Known Issues and Recommendations 5/2/2018 Known Issues and Recommendations Genesys Pulse The Known Issues and Recommendations section is a cumulative list for all 8.5.x releases of Genesys

More information

Advanced Application Reporting USER GUIDE

Advanced Application Reporting USER GUIDE Advanced Application Reporting USER GUIDE CONTENTS 1.0 Preface: About This Document 5 2.0 Conventions 5 3.0 Chapter 1: Introducing Advanced Application Reporting 6 4.0 Features and Benefits 7 5.0 Product

More information

Clearspan Hosted Thick Call Center Quick Reference Guide

Clearspan Hosted Thick Call Center Quick Reference Guide Clearspan Hosted Thick Call Center Quick Reference Guide Agent Tasks Call Center Interface The following elements are available from the Call Center interface: Menu bar Located at the top, it allows you

More information

BUSINESS LINE COMMPORTAL GUIDE

BUSINESS LINE COMMPORTAL GUIDE wowforbusiness.com BUSINESS LINE COMMPORTAL GUIDE WOW! Business BCSE.U.1505.O Business Line CommPortal Guide Table of Contents Getting Started...3 Dashboard...4 Messages and Calls...5 Messages...5 Missed

More information

EGD Configuration Checklist

EGD Configuration Checklist EGD Configuration Checklist Introduction EGD is a communication protocol based on Ethernet data packages that are sent perodically by one device (the producer) and received by one or more other devices

More information

Using the Cisco NAC Profiler Endpoint Console

Using the Cisco NAC Profiler Endpoint Console CHAPTER 15 Topics in this chapter include: Overview, page 15-1 Display Endpoints by Profile, page 15-4 Display Endpoints by Device Port, page 15-9 Unauthorized Endpoints, page 15-12 Endpoint Directory

More information

Administering Cloud Pod Architecture in Horizon 7. Modified on 4 JAN 2018 VMware Horizon 7 7.4

Administering Cloud Pod Architecture in Horizon 7. Modified on 4 JAN 2018 VMware Horizon 7 7.4 Administering Cloud Pod Architecture in Horizon 7 Modified on 4 JAN 2018 VMware Horizon 7 7.4 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

USER GUIDE Summer 2015

USER GUIDE Summer 2015 USER GUIDE Summer 2015 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and may be used

More information

Call Center Administration

Call Center Administration Hosted VoIP Phone System Blue Platform Admin Portal Guide for Call Center Administration 1 Table of Contents 1 About this Guide... 3 2 Accessing the Hosted VoIP Phone System Administration Portal... 4

More information

User s and installation guide

User s and installation guide INTELLIO MOBILE CLIENT 4 User s and installation guide 1 Intellio Mobil Client 4 Table of contents 1 Intellio Mobile Client 4 (IMC4) introduction... 3 2 Installation... 3 2.1 Intellio Video Gateway...

More information

Agent Tasks. Select Your Outgoing Call Identity

Agent Tasks. Select Your Outgoing Call Identity Agent Tasks Unavailable You are not available to receive calls. Wrap-Up You are wrapping up a call and you are temporarily unavailable to receive calls. Configure Your Post Sign-In ACD State 1. On the

More information

Cisco Unified Contact Center Express Historical Reporting Guide, Release 10.6(1)

Cisco Unified Contact Center Express Historical Reporting Guide, Release 10.6(1) Cisco Unified Contact Center Express Historical Reporting Guide, Release 10.6(1) First Published: December 15, 2014 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706

More information

ReadySub for Substitutes. Substitute User Guide. ReadySub

ReadySub for Substitutes. Substitute User Guide. ReadySub ReadySub for Substitutes Substitute User Guide ReadySub What is ReadySub? ReadySub is a state of the art employee absence management and substitute placement system. As a substitute, you can review jobs,

More information

INSITES CONNECT ADMINISTRATION GUIDE. Version 1.4.3

INSITES CONNECT ADMINISTRATION GUIDE. Version 1.4.3 INSITES CONNECT ADMINISTRATION GUIDE Version 1.4.3 CONTENTS GETTING STARTED... 2 Version Compatibility... 2 Installing the InSites Connect app... 2 APP CONFIGURATION... 4 CONFIGURING PUSH NOTIFICATIONS...

More information

OneLogin Integration User Guide

OneLogin Integration User Guide OneLogin Integration User Guide Table of Contents OneLogin Account Setup... 2 Create Account with OneLogin... 2 Setup Application with OneLogin... 2 Setup Required in OneLogin: SSO and AD Connector...

More information

Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved.

Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. Tabular Room Data User Guide IES Virtual Environment Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. No part of the manual is to be copied or reproduced in any form without

More information

Quick Reference Guide: Call Center

Quick Reference Guide: Call Center Agent Tasks Agent Automatic Call Distribution (ACD) States Your ACD state can be one of the following: Available You are available to receive calls. Unavailable You are not available to receive calls.

More information

SIP System Features. Differentiated Services Codepoint CHAPTER

SIP System Features. Differentiated Services Codepoint CHAPTER CHAPTER 6 Revised: December 30 2007, This chapter describes features that apply to all SIP system operations. It includes the following topics: Differentiated Services Codepoint section on page 6-1 Limitations

More information

SIP System Features. SIP Timer Values. Rules for Configuring the SIP Timers CHAPTER

SIP System Features. SIP Timer Values. Rules for Configuring the SIP Timers CHAPTER CHAPTER 4 Revised: October 30, 2012, This chapter describes features that apply to all SIP system operations. It includes the following topics: SIP Timer Values, page 4-1 Limitations on Number of URLs,

More information

Project Manager User Manual

Project Manager User Manual Project Manager User Manual Overview Welcome to your new Project Manager application. The Project Managaer is implemented as a web site that interfaces to an SQL database where all of the project and time

More information

Lenovo ThinkAgile XClarity Integrator for Nutanix Installation and User's Guide

Lenovo ThinkAgile XClarity Integrator for Nutanix Installation and User's Guide Lenovo ThinkAgile XClarity Integrator for Nutanix Installation and User's Guide Version 1.0 Note Before using this information and the product it supports, read the information in Appendix A Notices on

More information

IBM BigFix Version 9.5. WebUI Administrators Guide IBM

IBM BigFix Version 9.5. WebUI Administrators Guide IBM IBM BigFix Version 9.5 WebUI Administrators Guide IBM IBM BigFix Version 9.5 WebUI Administrators Guide IBM Note Before using this information and the product it supports, read the information in Notices

More information

BEAAquaLogic. Service Bus. MQ Transport User Guide

BEAAquaLogic. Service Bus. MQ Transport User Guide BEAAquaLogic Service Bus MQ Transport User Guide Version: 3.0 Revised: February 2008 Contents Introduction to the MQ Transport Messaging Patterns......................................................

More information

USER GUIDE. Accessing the User Interface. Login Page https://www.contentcatcher.com. Resetting your Password. Logging In

USER GUIDE. Accessing the User Interface. Login Page https://www.contentcatcher.com. Resetting your Password. Logging In USER GUIDE This guide walks through the user interface of ContentCatcher, and the features and parameters contained therein. Accessing the User Interface The ContentCatcher user interface is a secure web-based

More information

Altus Call Center Agent

Altus Call Center Agent Altus Call Center Agent User Guide Document Version 1.2 Table of Contents 1 About This Document... 8 1.1 Audience... 8 1.2 How This Guide is Organized... 8 1.3 Additional Resources... 8 2 Introduction

More information

Helping Administrators Prepare for Analytics 10

Helping Administrators Prepare for Analytics 10 Helping Administrators Prepare for Analytics 10 There are a few important configuration updates that Webtrends administrators can take in On Demand prior to the Analytics 10 release in order to prepare

More information

OneLogin SCIM. Table of Contents. Summary... 2 System Requirements... 2 Installation & Setup... 2 Contact Us... 6

OneLogin SCIM. Table of Contents. Summary... 2 System Requirements... 2 Installation & Setup... 2 Contact Us... 6 OneLogin SCIM Table of Contents Summary... 2 System Requirements... 2 Installation & Setup... 2 Contact Us... 6 1 This guide provides set-up instructions for using LastPass with OneLogin as your Identity

More information

Contact Center Advisor. Genesys Performance Management Advisor TM. User Manual Release 3.3

Contact Center Advisor. Genesys Performance Management Advisor TM. User Manual Release 3.3 Genesys Performance Management Advisor TM User Manual Release 3.3 Informiam Browser, Contact Center Advisor, Workforce Advisor, Frontline Advisor, Agent Advisor, and Genesys Performance Management Suite

More information

Magento Survey Extension User Guide

Magento Survey Extension User Guide Magento Survey Extension User Guide Page 1 Table of Contents To Access Plugin, Activate API Key... 3 Create Questions... 5 Manage Survey... 6 Assign Question to Survey... 7 Reveal Survey In Three Ways...

More information

Page 3. News Alerts StreamLink Software. All rights reserved.

Page 3. News Alerts StreamLink Software. All rights reserved. Member User Guide 2016 StreamLink Software. All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into any language,

More information

Parish . User Manual

Parish  . User Manual Parish Email User Manual Table of Contents LOGGING IN TO PARISH EMAIL... 3 GETTING STARTED... 3 GENERAL OVERVIEW OF THE USER INTERFACE... 3 TERMINATE THE SESSION... 4 EMAIL... 4 MESSAGES LIST... 4 Open

More information

FusionWorks: Call Center Quick Reference Guide 01/30/2017 USER GUIDE

FusionWorks: Call Center Quick Reference Guide 01/30/2017 USER GUIDE FusionWorks: Call Center Quick Reference Guide 01/30/2017 USER GUIDE Contents: Agent Tasks......3 Supervisor Tasks...11 Reporting...16 Copyright 2017 Fusion, All rights reserved 2 Agent Tasks Call Center

More information

To access BuckIQ, you must first be granted access. Send requests for permission to

To access BuckIQ, you must first be granted access. Send requests for permission to BuckIQ User s Guide Job Aid What is BuckIQ? Several years ago, Oracle took a look at the state of the Business Intelligence industry in terms of the different processes and applications that were required

More information

Big Ideas Math Digital Platform. Student Orientation

Big Ideas Math Digital Platform. Student Orientation Big Ideas Math Digital Platform Student Orientation Big Ideas Math Big Ideas Math is the name of the new series we are using at Edwardsville High School for the following courses: Algebra 1 Geometry Algebra

More information

Microsoft Power BI Tutorial: Importing and analyzing data from a Web Page using Power BI Desktop

Microsoft Power BI Tutorial: Importing and analyzing data from a Web Page using Power BI Desktop Microsoft Power BI Tutorial: Importing and analyzing data from a Web Page using Power BI Desktop Power BI Desktop In this tutorial, you will learn how to import a table of data from a Web page and create

More information

Getting Started with MatterControl Cloud Sync

Getting Started with MatterControl Cloud Sync MatterHackers Getting Started with MatterControl Cloud Sync Written By: Ryan Lutz 2017 matterhackers.dozuki.com Page 1 of 9 Step 1 MatterControl Sync Setup Navigate to the MatterControl Sync Dashboard

More information

Agent Tasks. Agent Automatic Call Distribution (ACD) States Your ACD state can be one of the following:

Agent Tasks. Agent Automatic Call Distribution (ACD) States Your ACD state can be one of the following: QUIICK REFERENCE GUIIDE HOSTED THIIN CALL CENTER Agent Tasks Agent Automatic Call Distribution (ACD) States Your ACD state can be one of the following: Available You are available to receive calls. Unavailable

More information

Administering Cloud Pod Architecture in Horizon 7. Modified on 26 JUL 2017 VMware Horizon 7 7.2

Administering Cloud Pod Architecture in Horizon 7. Modified on 26 JUL 2017 VMware Horizon 7 7.2 Administering Cloud Pod Architecture in Horizon 7 Modified on 26 JUL 2017 VMware Horizon 7 7.2 Administering Cloud Pod Architecture in Horizon 7 You can find the most up-to-date technical documentation

More information

Manual. telegra ACD WebAgent. Version 1.1. Manual telegra ACD WebAgent Version 1.1 Page 1 of 10

Manual. telegra ACD WebAgent. Version 1.1. Manual telegra ACD WebAgent Version 1.1 Page 1 of 10 Manual telegra ACD WebAgent Version 1.1 Manual telegra ACD WebAgent Version 1.1 Page 1 of 10 Contents Contents... 2 1. Introduction... 3 2. Login... 3 2.1. Connectivity... 3 3. Overview/Dashboard... 3

More information

SysGauge SYSTEM MONITOR. User Manual. Version 3.8. Oct Flexense Ltd.

SysGauge SYSTEM MONITOR. User Manual. Version 3.8. Oct Flexense Ltd. SysGauge SYSTEM MONITOR User Manual Version 3.8 Oct 2017 www.sysgauge.com info@flexense.com 1 1 SysGauge Product Overview SysGauge is a system and performance monitoring utility allowing one to monitor

More information

Document Management System GUI. v6.0 User Guide

Document Management System GUI. v6.0 User Guide Document Management System GUI v6.0 User Guide Copyright Copyright HelpSystems, LLC. All rights reserved. www.helpsystems.com US: +1 952-933-0609 Outside the U.S.: +44 (0) 870 120 3148 IBM, AS/400, OS/400,

More information

Lightning Knowledge Guide

Lightning Knowledge Guide Lightning Knowledge Guide Salesforce, Spring 18 @salesforcedocs Last updated: April 13, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

SQream Dashboard Version SQream Technologies

SQream Dashboard Version SQream Technologies SQream Dashboard Version 1.1.0 SQream Technologies 2018-11-06 Table of Contents Overview................................................................................... 1 1. The SQream Dashboard...................................................................

More information

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. VMware AirWatch Email Notification Service Installation Guide Providing real-time email notifications to ios devices with AirWatch Inbox and VMware Boxer Workspace ONE UEM v9.4 Have documentation feedback?

More information

BEATSAM TM. BEA (TSAM) Console User s Guide

BEATSAM TM. BEA (TSAM) Console User s Guide BEATSAM TM BEA (TSAM) Console User s Guide Version 1.1 Document Released: September 28, 2007 Contents 1. BEA TSAM Console Overview.............................................................1-1 Monitoring

More information

Table of Contents Table of Contents... 2 Welcome to the new desktop Queue handling New visitor in queue manual routing

Table of Contents Table of Contents... 2 Welcome to the new desktop Queue handling New visitor in queue manual routing Release notes Table of Contents Table of Contents... 2 Welcome to the new desktop... 3 1 Queue handling... 3 1.1 New visitor in queue manual routing... 3 1.2 Selecting a visitor manual routing... 3 1.3

More information

Performance Management Reporting User Guide for EPMR

Performance Management Reporting User Guide for EPMR Performance Management Reporting User Guide for EPMR January, 2015 2015 by Cox Communications. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means,

More information

Liaison Enterprise Navigation System User Guide for Liaison DXP. Document Version Version 3.0

Liaison Enterprise Navigation System User Guide for Liaison DXP. Document Version Version 3.0 Liaison Enterprise Navigation System User Guide for Liaison DXP Document Version 06.18 Version 3.0 Disclaimer This document contains the most current information at the time it was published; however,

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!  We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ We offer free update service for one year Exam : TB0-106 Title : Tibco Rendezvous 7 Certification Exam Vendors : Tibco Version : DEMO Get Latest &

More information

Setting up a Salesforce Outbound Message in Informatica Cloud

Setting up a Salesforce Outbound Message in Informatica Cloud Setting up a Salesforce Outbound Message in Informatica Cloud Copyright Informatica LLC 2017. Informatica, the Informatica logo, and Informatica Cloud are trademarks or registered trademarks of Informatica

More information

Monitoring Data CHAPTER

Monitoring Data CHAPTER CHAPTER 4 The Monitor tab provides options for viewing various types of monitored data. There are options for: Overview of Data Collection and Data Sources, page 4-2 Viewing the Monitor Overview Charts,

More information

Comodo Dome Shield - Admin Guide

Comodo Dome Shield - Admin Guide rat Comodo Dome Shield Software Version 1.12 Administrator Guide Guide Version 1.12.111717 Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Table of Contents 1 Introduction to Comodo Dome

More information

Communications App User Guide

Communications App User Guide Communications App User Guide 05 August 2015 Introduction Getting Started Logging in Accessing Comms App Navigating Apps using the user context menu Communications Management Main Menu Creating Default

More information

Virtual Communications Express User Guide: Call Center Agent

Virtual Communications Express User Guide: Call Center Agent Feature Overview The Call Center is designed to support the needs of Call Center agents in any environment. It supports the full set of call handling functions, ACD state management, integration of multiple

More information

PASSPORTAL PLUGIN DOCUMENTATION

PASSPORTAL PLUGIN DOCUMENTATION Contents Requirements... 2 Install or Update Passportal Plugin Solution Center... 3 Configuring Passportal Plugin... 5 Client mapping... 6 User Class Configuration... 7 About the Screens... 8 Passportal

More information

EXgarde WEB. User Guide. UM0082.GB Issue 1 04/06/2015. TDSi Unit 10 Concept Park Innovation Close Poole Dorset BH12 4QT, UK

EXgarde WEB. User Guide.  UM0082.GB Issue 1 04/06/2015. TDSi Unit 10 Concept Park Innovation Close Poole Dorset BH12 4QT, UK EXgarde WEB User Guide UM0082.GB Issue 1 04/06/2015 www.tdsi.co.uk TDSi Unit 10 Concept Park Innovation Close Poole Dorset BH12 4QT, UK Tel: +44 (0) 1202 723535 Fax: +44 (0) 1202 724975 Sales Enquiries:

More information

User Guide. Version 8.0

User Guide. Version 8.0 User Guide Version 8.0 Contents 1 Getting Started... iii 1.1... About... iii 2 Logging In... 4 2.1... Choosing Security Questions... 4 3 The File Manager... 5 3.1... Uploading a file... 6 3.2... Downloading

More information

Business Portal. Hosted VoIP Services. Employee User Guide. Document Version 1.0 GCI. Global House. 2 Crofton Close. Lincoln. Lincolnshire LN3 4NT

Business Portal. Hosted VoIP Services. Employee User Guide. Document Version 1.0 GCI. Global House. 2 Crofton Close. Lincoln. Lincolnshire LN3 4NT Hosted VoIP Services Business Portal Employee User Guide Document Version 1.0 GCI Global House 2 Crofton Close Lincoln Lincolnshire LN3 4NT www.gcicom.net 2014 GCI Page 1 of 21 Copyright Notice Copyright

More information

BroadCloud PBX Call Center Agent

BroadCloud PBX Call Center Agent BroadCloud PBX Call Center Agent User Guide Document Version 1.0 9737 Washingtonian Boulevard, Suite 350 Gaithersburg, MD 20878 Tel +1 301.977.9440 WWW.BROADSOFT.COM BroadWorks Guide Copyright Notice Trademarks

More information

Monitor Qlik Sense sites. Qlik Sense Copyright QlikTech International AB. All rights reserved.

Monitor Qlik Sense sites. Qlik Sense Copyright QlikTech International AB. All rights reserved. Monitor Qlik Sense sites Qlik Sense 2.1.2 Copyright 1993-2015 QlikTech International AB. All rights reserved. Copyright 1993-2015 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik Sense,

More information

Project Manager User Manual

Project Manager User Manual Project Manager User Manual Overview Welcome to your new Project Manager application. The Project Managaer is implemented as a web site that interfaces to an SQL database where all of the project and time

More information

MarkLogic Server. Monitoring MarkLogic Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Monitoring MarkLogic Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved. Monitoring MarkLogic Guide 1 MarkLogic 9 May, 2017 Last Revised: 9.0-2, July, 2017 Copyright 2017 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Monitoring MarkLogic Guide

More information

System performance objects and counters

System performance objects and counters System performance objects and counters This appendix contains the following sections: Cisco Tomcat Connector, page 2 Cisco Tomcat JVM, page 4 Cisco Tomcat Web Application, page 5 Database Change Notification

More information

BEAAquaLogic. Service Bus. Native MQ Transport User Guide

BEAAquaLogic. Service Bus. Native MQ Transport User Guide BEAAquaLogic Service Bus Native MQ Transport User Guide Version: 2.6 RP1 Revised: November 2007 Contents Introduction to the Native MQ Transport Advantages of Using the Native MQ Transport................................

More information

Lab Exercise Protocol Layers

Lab Exercise Protocol Layers Lab Exercise Protocol Layers Objective To learn how protocols and layering are represented in packets. They are key concepts for structuring networks that are covered in 1.3 and 1.4 of your text. Review

More information

SERVICE ASSURANCE MANAGEMENT SYSTEM (SAMS 2.0)

SERVICE ASSURANCE MANAGEMENT SYSTEM (SAMS 2.0) SERVICE ASSURANCE MANAGEMENT SYSTEM (SAMS 2.0) Content 1. Introduction 2. Basic Using Dashboard for daily monitoring tools (Ministry/Agency) 3. Getting Started with Fault Manager (OneClick Spectrum) 4.

More information

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. VMware AirWatch Email Notification Service Installation Guide Providing real-time email notifications to ios devices with AirWatch Inbox and VMware Boxer AirWatch v9.1 Have documentation feedback? Submit

More information

New Finance Officer & Staff Training

New Finance Officer & Staff Training New Finance Officer & Staff Training Overview MUNIS includes many programs and tools to allow for the management of the District financials. As newer finance officers and staff, you are charged with understanding,

More information

Application Notes for Virsae Service Management for Unified Communications with Avaya Aura Session Manager - Issue 1.0

Application Notes for Virsae Service Management for Unified Communications with Avaya Aura Session Manager - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Virsae Service Management for Unified Communications with Avaya Aura Session Manager - Issue 1.0 Abstract These Application Notes describe

More information

HarePoint Analytics. For SharePoint. User Manual

HarePoint Analytics. For SharePoint. User Manual HarePoint Analytics For SharePoint User Manual HarePoint Analytics for SharePoint 2013 product version: 15.5 HarePoint Analytics for SharePoint 2016 product version: 16.0 04/27/2017 2 Introduction HarePoint.Com

More information

Oracle Communications Performance Intelligence Center

Oracle Communications Performance Intelligence Center Oracle Communications Performance Intelligence Center SIGTRAN Surveillance Guide Release 10.2.1 E77504-01 June 2017 1 Oracle Communications Performance Intelligence Center SIGTRAN Surveillance Guide, Release

More information

USPS USPS Provisioning Services

USPS USPS Provisioning Services May 2, 2014 Manual USPS USPS Provisioning Services USPS Provisioning Services Partner Frequently Asked Questions Version 2.1 of May 2, 2014 Status: final Axway, 2014 / Version: 2.1 / Status : Final / Ref:

More information

User Options Web Pages

User Options Web Pages Overview, on page 1 User Options Web Page Actions, on page 1 Feature and Service Setup on Web, on page 2 Overview Your Cisco Unified IP Phone is a network device that can share information with other network

More information