percona-agent Documentation

Size: px
Start display at page:

Download "percona-agent Documentation"

Transcription

1 percona-agent Documentation Release Percona June 30, 2015

2

3 Contents 1 Getting Started with Percona Cloud Tools How PCT Works Tools Quick Start Switching Organizations Using the Instance Tree Selecting Time Range Percona Agent Percona Agent Release Notes Percona Agent System Requirements Percona Agent Installation Guide Percona Agent Install Script Options Managing Percona Agent Instance Configuring Percona Agent Instance Query Analytics Setting Up Dashboards Query Profile Server Summary Query Details Reviewing Queries Performance Schema Other Reading Metrics Monitor Adding Charts Managing Chart Granularity Zooming and Synchronizing Disabling Updates Viewing Charts System Info Reports 25 7 Users and Organizations Account Settings Organization Membership i

4 7.3 User Roles API Key Security and Privacy 29 9 Frequently Asked Questions How to install Percona Agent on Amazon RDS? How to set up Percona Agent to use a proxy server? Which IP addresses does Percona Agent use? Does Percona Agent store data locally? What does write unix /var/lib/mysql/mysql.sock: broken pipe message mean? How to install Percona Agent on a server with old password authentication? Help and Support Community Support Percona Support Submitting Bugs Glossary 35 ii

5 Beta Disclaimer PCT (Percona Cloud Tools) is currently in beta. The following limitations apply: 3 organizations per user 5 agents per organization 8 days of data per agent Documentation is organizaed into sections according to features and components. The first section covers basic concepts and provides links to related material. Contents 1

6 2 Contents

7 CHAPTER 1 Getting Started with Percona Cloud Tools PCT is a hosted service that helps you manage MySQL performance. How PCT Works Tools Quick Start Switching Organizations Using the Instance Tree Selecting Time Range 1.1 How PCT Works Percona Agent collects performance data from a MySQL server, encrypts it, and sends to PCT through a secure websocket connection. Any members of your team can access the web application to analyse your data at cloud.percona.com using any browser that supports HTTPS (Hypertext Transfer Protocol Secure). 3

8 1.2 Tools PCT provides several tools for analysing collected data: Query Analytics aggregates MySQL query digest data to find performance problems. You can see a range of metrics for each individual query and run diagnostic queries to see execution details. Metrics Monitor enables you to set up dashboards with charts to monitor trends in MySQL and general system performance. You can drill down into problematic periods and compare metrics to see dependencies that might uncover the cause of problems. System Info provides a summary of information related to MySQL and system configuration. Reports are a way to get critical query digest data delivered to you regularly. 1.3 Quick Start If you have MySQL server running and configured correctly, you can start using PCT in three easy steps: 1. Create account Go to cloud.percona.com, create a PCT Account and log in. 2. Get your API key Get your API key at cloud.percona.com/api-key. 3. Install Percona Agent Log in to your MySQL server as root and run the following command: 4 Chapter 1. Getting Started with Percona Cloud Tools

9 $ curl -s bash /dev/stdin -api-key="<api key>" Check out this video to see how easy it is to get started For more information about installing Percona Agent, see the Installation Guide. 1.4 Switching Organizations When you register a PCT account, a default organization is created for you. You can use this default organization to get started. You can also create other organizations and be added to existing organizations. To switch between organizations, use the drop-down menu above the Instance Tree. For more information about organizations, see Users and Organizations. 1.5 Using the Instance Tree The Instance Tree is a hierarchical representation of your infrastructure, which corresponds to the currently selected organization. An OS instance represents a physical or virtual machine. An Agent instance represents a percona-agent service running on the machine. A MySQL instance represents a MySQL server on the machine. 1.6 Selecting Time Range PCT displays data collected during the time range selected in the Time Range menu. You can choose one of the predefined options (last hour, day, month, three months, year) or select a custom range Switching Organizations 5

10 6 Chapter 1. Getting Started with Percona Cloud Tools

11 CHAPTER 2 Percona Agent 2.1 Percona Agent Release Notes 2.2 Percona Agent System Requirements Supported Platforms Feature Matrix 2.3 Percona Agent Installation Guide Depending on your needs and preferences, the following installation types are available: Table 2.1: Installation Types Source Web Package (rpm, Repositories (cloud.percona.com) deb, tar.gz) (yum and apt) Uses curl Install script Package manager Automated 1 Yes (only) Yes (by default) Yes Manual/Interactive 2 No Yes Yes Slave 3 No Yes Yes Updates 4 No No Yes Web Install This is the fastest way to install the latest version of Percona Agent. A non-interactive installer is used, which attempts to configure everything automatically. 1. Get the API key at 2. Run the following command as root: $ curl -s bash /dev/stdin -api-key="<api key>" The installer attempts to automatically detect necessary MySQL options, as described in Percona Agent System Requirements. If it fails, the installed Percona Agent will not be able to collect any MySQL metrics and query data, only general system metrics. 7

12 For more control over the installation process, see Package Install Package Install Specific Version Package install can be used to install a specific version of Percona Agent, other than the latest. For this, select the required version from the drop-down list on the Download page. The Percona Agent distribution package contains an interactive install script that prompts the user for input when it is not able to detect necessary options. For example, the script prompts for the API key, unless you specify it using the -api-key option. 1. Download the archive with the latest Percona Agent distribution. 2. Extract the archive and change to the directory it creates. 3. Run the./install script as root. There are many options that you can pass to the install script for specific cases: Automated Install Slave Install Non-MySQL Install For a complete list of options, run the install script with the -help option or see the Install Script Options page. Automated Install To automate installation and disable install script prompts, use the -interactive=false option. In this case, installation will be the same as during a Quick Install _. Note: In this case, you have to specify the -api-key option. If the installer fails to detect necessary MySQL options, Percona Agent will not be able to collect MySQL metrics and query data, only general server metrics. To avoid this, you can pass necessary MySQL options to the install script, for example: $./install -interactive=false -api-key=1a2b3c -mysql-user=root -mysql-pass=pass -mysql-socket=/var/r Slave Install After you install Percona Agent on the master, run the install script with the -create-mysql-user=false option on the slave. In this case, the install script will prompt you for existing Percona Agent user credentials on MySQL. To install Percona Agent on the slave in automated mode, specify the agent s MySQL user credentials as options for the install script, for example: $./install -interactive=false -create-mysql-user=false -agent-mysql-user=name -agent-mysql-pass=pass Note: Specifying -agent-mysql-user automatically disables -create-mysql-user. 8 Chapter 2. Percona Agent

13 Non-MySQL Install If you want to install Percona Agent on a server without MySQL or you do not want to monitor a particular MySQL instance, pass the -mysql=false option to the install script: $./install -mysql=false In this case, Percona Agent will monitor only general server metrics Percona Software Repositories Percona provides repositories for popular package managers: yum (RPM packages for RedHat, CentOS, Amazon Linux AMI, etc.) apt (.deb packages for Debian, Ubuntu, etc.) You can use those package managers to install and update all Percona software with any dependencies. Installing on RPM-based systems To install Percona Agent using the yum manager: 1. Install an RPM that configures yum and installs the Percona GPG key: $ yum install Make sure that Percona packages are available from the repository: $ yum list grep percona 3. Install the Percona Agent package: $ yum install percona-agent Installing on Debian-based systems To install using the apt manager: 1. Add Percona package key to apt: $ apt-key adv --keyserver keys.gnupg.net --recv-keys 1C4CBDCDCD2EFD2A 2. Add Percona repository sources to /etc/apt/sources.list with the correct name of the distribution. For example, if you are running Ubuntu (Trusty Tahr), add the following lines: deb trusty main deb-src trusty main 3. Update local cache: $ apt-get update 4. Install the Percona Agent package: $ apt-get install percona-agent 2.3. Percona Agent Installation Guide 9

14 2.3.4 Updating Percona Agent When a new version of Percona Agent is available, use either Web Install or Package Install. The install script checks for the currently installed version and applies necessary updates. If you installed Percona Agent using a package manager, as described in Percona Software Repositories, then you can update it as follows: For yum, run the following command: $ yum update percona-agent Note: You can run the previous command without specifying the percona-agent package to make yum update all installed packages. For apt, run the following command: $ apt-get install --only-upgrade percona-agent Note: You can also run the following command, which installs the newest versions of all packages in your system: $ apt-get upgrade Uninstalling Percona Agent If you did a Web Install, run the following command: $ curl -s bash /dev/stdin -uninstall If you did a Package Install, change to the directory where the Percona Agent archive was extracted and run the following command: $./install -uninstall To drop the Percona Agent user from any MySQL instance that the agent was monitoring, execute the following: > DROP USER 'percona-agent'@'localhost'; > DROP USER 'percona-agent'@' '; To remove the agent s configuration and data from Percona Cloud Tools, log in and delete the agent at You can also delete any MySQL instances that the agent was monitoring at 10 Chapter 2. Percona Agent

15 2.4 Percona Agent Install Script Options 2.5 Managing Percona Agent Instance Real-time Status Online Logs Remote Control 2.6 Configuring Percona Agent Instance Percona Agent is a background service that collects performance data from a MySQL server. GitHub. Free You can freely deploy Percona Agent on any Linux host with one command. For more information, see the Percona Agent Installation Guide. Open-source Percona Agent source code is available on Secure Percona Agent encrypts collected data and communicates with PCT through a secure websocket connection. For more information, see Security and Privacy Percona Agent Install Script Options 11

16 12 Chapter 2. Percona Agent

17 CHAPTER 3 Query Analytics 3.1 Setting Up Dashboards The Query Analytics tool enables database administrators and application developers to analyze MySQL queries over periods of time and find performance problems. Query Analytics helps you optimize database performance by making sure that queries are executed as expected and within the shortest time possible. In case of problems, you can see which queries may be the cause and get detailed metrics for them. 3.2 Query Profile The Query Profile section provides a list of queries executed on the server in the specified period of time. It also shows valuable performance information about each query. The following screenshot shows an example of the Query Profile table: By default, the table lists ten queries with the highest total execution time. Use the Sort by field in the toolbar to change how queries are sorted: SUM Sort queries by total execution time (this is the default) MAX Sort queries by maximum execution time A box below the table shows the number of queries listed and the percentage of them compared to all queries. To show ten more queries in the table, click the button with the plus sign. The following information is available in the Query Profile table: 13

18 Rank Determined by the calculated load (see Load). Query The fingerprint of a query, where literal values are removed, whitespace normalized, etc. Similar queries with the same fingerprint are grouped together. Query ID Unique identifier of the query. Queries Number of times this query was executed during the selected period. QPS Average number of queries per second for the selected period. For example, INSERT metric_data was executed 34.7 million times during the last 24 hours (the previous example shows a one day period). If you divide 34.7 million queries by 86.4 thousand seconds, you get queries per second. Load Abstract measure of intensity for the query, calculated as the total time it took to execute all queries (see Total Time) divided by the actual time that passed. For example, INSERT metric_data was executed 34.7 million times during the last 24 hours with an average execution time of milliseconds (see Avg Time). This adds up to a total execution time of 1 day and 7 hours (31 hours). If you divide 31 hours by 24 hours that actually passed during the period, you get a load value of Load % Percentage of the load this query produced compared to the total load of all queries. For example, INSERT metric_data has a load value of 1.331, which is 20.52% out of the total load for all queries combined. Total Time Total time it took to execute all queries. Queries with the biggest total time are causing the most load. Avg Time Average time it took to execute one query, calculated as the total time divided by total number of queries. 95% The 95th percentile is the maximum time it took to execute 95% of queries. Only 5% of queries took more time to execute. This is an important measure of what the majority of users are experiencing. If the 95th percentile is low, then it is generally not a problem to see high values of maximum execution times (see Max Time) for only several queries. Max Time Maximum time it took to execute query. This may not be a good indicator of query performance, because it may have taken a long time to execute only several times out of millions during a specific period. You should use this value in combination with 95th percentile (see 95%). 3.3 Server Summary The Server Summary section provides a list of metrics for queries currently displayed in the Query Profile table. Some of these metrics are Query count, Query_time, Lock_time, Rows_sent, and so on. The following screenshot shows an example of the Server Summary table: The values depend on the units used by the specific metric. However, the columns in the table are the same for all metrics: 14 Chapter 3. Query Analytics

19 Total The count of whatever units are used by the metric. For Query_time, it is the total execution time of queries, for Rows_sent, it is the total rows in MySQL tables that were sent, and so on. Average The average of whatever units are used by the metric. For Query_time, it is the average execution time per query, for Rows_sent, it is the average rows in MySQL tables sent per query, and so on. Minimum The minimum of whatever units are used by the metric. For Query_time, it is the minimum execution time for a query, for Rows_sent, it is the minimum rows in MySQL tables sent by a query, and so on. 95% The 95th percentile of whatever units are used by the metric. It represents the maximum value for 95% of queries (it is lower for the remaining 5%). For Query_time, it is the maximum execution time for 95% of queries, for Rows_sent, it is the maximum amount of rows sent by 95% of queries, and so on. Maximum The maximum of whatever units are used by the metric. For Query_time, it is the maximum execution time for a query, for Rows_sent, it is the maximum rows in MySQL tables sent by a query, and so on Historical data for metric To see historical data for a metric, expand the metric. This opens a time graph with the Total values plotted above Average QPS. The following screenshot shows an example of the time graph for the Query_time metric: The previous example contains data for the last day in 10-minute periods. The time span and granularity depend on the Time range setting (for more information, see WebInterface). The Total graph shows the total time it took to execute queries for each 10-minute chunk. You can compare this to the global average queries per second. For example, in the previous screenshot, you can see how spikes in total execution time correspond to small drops in Average QPS. 3.4 Query Details The Query Details section opens in place of the Server Summary section when you select a specific query in the Query Profile table. This way you can drill down into data related to a particular query. In addition to the query name and checksum (unique identifier), the Query Details section provides the time and date when the query was first and last seen. It also contains a Metrics table similar to the Server Summary, as well as a Query Plan for the selected query Query Details 15

20 3.4.1 Real-time EXPLAIN and Table Info At the bottom of the Query Details section, you can see an example of the selected query. For information about how MySQL executes the query, run EXPLAIN on the query. For this, you can manually copy and paste the query to the server. PCT enables you to run EXPLAIN for the selected query directly from within PCT, and get a response in real time. Note: If you are using Percona Server 5.5 or earlier version, EXPLAIN is available only for SELECT queries due to server implementation. In case of Percona Server 5.6 and later versions, you can run EXPLAIN for UPGRADE, INSERT, and DELETE queries if you add necessary additional permissions to the Percona Agent user. You can also run Table Info for the selected query. This enables you to get SHOW CREATE TABLE, SHOW INDEX, and SHOW TABLE STATUS for each table used by the query directly from within PCT. 3.5 Reviewing Queries The Query Analytics tool enables you to review all database activities as you go through the details for various queries. When you select a query in the Query Profile table, you can use the buttons in the right part of the Query Details section to set the status for the query and categorize it using tags. You can then filter queries according to the assigned status and tags. At the bottom, you can add a comment for the query. This metadata is visible by all users in your organization, which enables collaboration for reviewing and tuning query performance. As you review queries, change the status accordingly: Not reviewed This is the default status. Reviewed Select this status after you review a query and there are no problems with it. Needs attention Select this status if a query requires deeper analysis or some other action associated with it. Query tags can be used by your team to categorize queries. Create your own set of tags, which corresponds to your procedures and environment. For example, one approach is to tag queries according to the different subsystems of your application, such as checkout or hotel-search. This will enable you to filter queries by meaningful actions performed by your users. 3.6 Performance Schema The default source of query data for Percona Cloud Tools is the slow query log. It is available in MySQL 5.1 and later versions. Starting from MySQL 5.6 (including Percona Server 5.6 and later), you can select to parse query data from the Performance Schema. Performance Schema is not as data-rich as the slow query log, but it has all the critical data and is generally faster. In some cases, it may be the only alternative. To use Performance Schema: 16 Chapter 3. Query Analytics

21 1. Enable it on the server by starting MySQL with the performance_schema variable set to ON. For example, use the following lines in my.cnf: [mysql] performance_schema=on Note: Performance Schema instrumentation is enabled by default on MySQL and later versions. 2. Configure Query Analytics to collect data from Performance Schema: (a) In the web UI, select Configure > MySQL. (b) Click Query Analytics for the MySQL instance you want. (c) Select Performance Schema in the Query Analytics Configuration dialog box. (d) Click Apply to save changes. For more information, see conf-qan. 3.7 Other Reading MySQL performance optimization: Don t guess! Measure with Percona Cloud Tools Measure the impact of MySQL configuration changes with Percona Cloud Tools PERFORMANCE_SCHEMA vs Slow Query Log 3.7. Other Reading 17

22 18 Chapter 3. Query Analytics

23 CHAPTER 4 Metrics Monitor The Metrics Monitor tool provides a historical view of metrics that are critical to the MySQL server. You can add charts related to MySQL performance on one dashboard, server availability metrics on another dashboard, and set up separate dashboards for different members in your team. Use the Dashboard drop-down list to select an existing dashboard, create a new dashboard, or remove a dashboard. Note: Use the Time Range menu to select the period of time, for which you would like to view metrics. Use the Host menu to select the host that you want to monitor. 4.1 Adding Charts A dashboard can be configured to contain several charts for various metrics. Although a chart can contain any number of metrics, do not overload it, unless you need to compare several metrics. Keep it simple and separate different types of metrics across charts. To add a chart to a dashboard: 1. Click Add chart. 2. Enter a name for the chart and a description. 3. Click Add new series. 4. Start typing the name of the metric and select the one you need from the drop-down list. Note: There are many metrics available, separated into types and subtypes using the forward slash (/). For example, metrics that begin with disk/ or memory/ are related to the general hardware and OS performance, while metrics related to MySQL begin with mysql/ and mysqlvar/. 19

24 5. Enter a custom description if necessary. 6. Select the type of the chart and the statistical value to be used. Note: The type and value depends on the metric and your needs. For example, you may want to see a bar chart of the count for created MySQL threads, and a line chart of the 95 percentile for MySQL query execution time. 7. Click OK to add the series. 8. If necessary, add other metrics to the chart. 9. Click Save to add the chart to the dashboard. 4.2 Managing Chart Granularity Percona Agent collects data every second, then aggregates it and updates charts every minute. You can select the granularity for charts using the Group menu, if you would like to group values differentely. Available grouping depends on the current time range. For example, if you are viewing data during last week you can select to group data points by 5 minutes, 1 hour, or 6 hours. This is useful for some metrics with high volatility. If frequent spikes are not as important as the overall trend, select a larger group to smooth out the chart. 4.3 Zooming and Synchronizing Charts are interactive, meaning that you can zoom in on a period of interest. For example, if you see a spike in throughput on a weekly chart, you can click and drag to select the period of time when the spike occured. By default, all charts in the dashboard are synchronized to update to the same period, and the corresponding custom time range is selected in the Time Range menu. Synchronization is useful to isolate events that occurred only during the period of interest. Sometimes, you may not want to synchronize all charts when zooming. To disable synchronization, click the Sync button in the Zoom field. Note: If you already zoomed in to a chart, you will not be able to disable synchronization until you reset the zoom. You have to click the Reset button, which appears in the Zoom field, then disable synchronization. If you want to keep synchronization for charts on the current dashboard, but do not want the Time Range menu to update to the corresponding custom time range, click the Metrics Configuration button in the far right corner and clear the Enable Zoom s time range globally check box. In this case, the global time range will remain when you open another dashboard. 20 Chapter 4. Metrics Monitor

25 4.4 Disabling Updates By default, charts are updated with new data every minute, and grouped according to the granularity selected in the Group menu. If you do not want to add new data to the charts, click Disable updates in the toolbar. For example, you may find a possible minor problem that you want to analyze later. You can disable chart updates, then come back to the problem, find the cause, fix it, and enable updates again to continue monitoring. 4.5 Viewing Charts Charts are arranged on a dashboard in the order they were added. Do not overload a dashboard with too many charts. If you have to scroll a lot, it may not be easy to find the chart you need. Besides, charts take time to load: the more charts you have, the greater lag you will experience when they are updated. When you hover over a chart, a popup is displayed with the current values. Also, a menu appears in the top part of the chart, which you can use to customize the appearence of the chart: Min/Max: Show the minimum and maximum values for a metric according to the selected granularity. For example, if values are grouped by hours, then in addition to the average value during that hour, the chart will also display the maximum and minimum values for that hour. 5/95 Pct: Show the 5 and 95 percentile values for a metric according to the selected granularity. For example, if values are grouped by hours, then in addition to the average value during that hour, the chart will also display the values below which 5 and 95 percent of observations during that hour fall. Toggle between linear and logarithmic scale. For example, if the values are too dense, switch to logarithmic scale. Toggle between line and dot chart 4.4. Disabling Updates 21

26 Edit the chart settings (these are initially configured when Adding Charts) Remove chart from dashboard The following screenshot shows an example of the MySQL Throughput metrics (number of queries and questions) on a line chart with a linear scale. The Min/Max and 5/95 Pct options are enabled. In the previous example, the mouse is hovered over April 11, 2015 at 13:00:00. The values correspond to the following: On average, there were MySQL queries per minute during the last hour 5 percent of observations during the last hour showed less than MySQL queries per minute 95 percent of observations during the last hour showed less than MySQL queries per minute The minimum amount of MySQL queries per minute during the last hour was 478 The maximum amount of MySQL queries per minute during the last hour was Chapter 4. Metrics Monitor

27 CHAPTER 5 System Info 23

28 24 Chapter 5. System Info

29 CHAPTER 6 Reports 25

30 26 Chapter 6. Reports

31 CHAPTER 7 Users and Organizations 7.1 Account Settings 7.2 Organization Membership 7.3 User Roles 7.4 API Key 27

32 28 Chapter 7. Users and Organizations

33 CHAPTER 8 Security and Privacy 29

34 30 Chapter 8. Security and Privacy

35 CHAPTER 9 Frequently Asked Questions How to install Percona Agent on Amazon RDS? How to set up Percona Agent to use a proxy server? Which IP addresses does Percona Agent use? Does Percona Agent store data locally? What does write unix /var/lib/mysql/mysql.sock: broken pipe message mean? How to install Percona Agent on a server with old password authentication? 9.1 How to install Percona Agent on Amazon RDS? This is currently not possible, because Percona Agent does not support monitoring multiple remote MySQL instances. It is a planned feature, which will be available soon. 9.2 How to set up Percona Agent to use a proxy server? Percona Agent does not support proxies. It is a planned feature, which will be available soon for HTTPS proxies. 9.3 Which IP addresses does Percona Agent use? Percona Agent communicates using the URI (uniform resource locator) specified by the link entry in /usr/local/percona/percona-agent/config/agent.conf. 9.4 Does Percona Agent store data locally? Percona Agent aggregates collected data in the /usr/local/percona/percona-agent/data folder. It usually reports collected data in regular intervals, but if there is a connection issue, this data is stored until the agent manages to send it. As of Percona Agent , the following limits apply to local data: 1 hour 10 MiB 31

36 100 files Previous versions did not limit the size of the data folder, which lead to situations when Percona Agent filled up disk space indefinitely. 9.5 What does write unix /var/lib/mysql/mysql.sock: broken pipe message mean? Messages in percona-agent.log are not necessarily from Percona Agent. This file is used to capture many various messages. You should refer to the agent log in the web UI for specific Percona Agent errors. To view the agent log, open Configure > Agent, and click info for the agent you want to troubleshoot. For more information, see Configuring Percona Agent Instance. This particular message is from the Go MySQL driver. It indicates a connection issue, and possibly a problem with credentials for the percona-agent user to access MySQL. First of all, make sure that there is a percona-agent user set up for the MySQL instance. If it is, try to restart the agent by running the following command: $ service percona-agent restart or $ /etc/init.d/percona-agent restart 9.6 How to install Percona Agent on a server with old password authentication? If you need to install Percona Agent on a server with old password authentication, specify the -old-passwords=true option. For MySQL 4.1 and later versions, you may have old passwords enabled explicitely. In this case, you can disable old passwords for one session while you install Percona Agent: mysql> SET SESSION old_passwords=0; Then create the percona-agent user and install Percona agent with the -create-mysql-user=false option. 32 Chapter 9. Frequently Asked Questions

37 CHAPTER 10 Help and Support 10.1 Community Support 10.2 Percona Support 10.3 Submitting Bugs 33

38 34 Chapter 10. Help and Support

39 CHAPTER 11 Glossary The following is a list of terms related to Percona Cloud Tools (PCT). API key A unique key used by Percona Agent to identify the data it collects as belonging to the corresponding organization. If you have a PCT Account, you can find the API key at Note: Make sure that the correct organization is selected. Metrics Monitor A tool used for presenting collected MySQL and system metrics on time-based charts. For more information, see the MetricsMonitor section. organization An entity in PCT that defines all infrustructure components and people involved. When you sign up for a PCT Account, a default organization is created. You can add other users to the organization, create other organizations, or be added to existing organizations. Each organization is assigned a unique API key, which is used by Percona Agent to identify the data it collects. During installation, Percona Agent adds corresponding server and MySQL instances to the organization. PCT Account A user account on cloud.percona.com. For more information, see the Account section. Percona Agent to PCT. A service that runs on the server, collects data about perfomance and MySQL metrics, and sends it For more information, see the Agent section. Percona Toolkit A collection of advanced command-line tools to perform a variety of MySQL and system tasks. The toolkit is used by Percona Agent to generate System Info reports. Performance Schema An alternative source of query data to the slow query log. Performance Schema is available starting from MySQL 5.6, and is enabled by default starting from MySQL Data is collected from the performance_schema.events_statements_summary_by_digest table, and is used by the Query Analytics tool. For more information, see Performance Schema. Query Analytics A tool used for analyzing the history of MySQL queries. Data is collected either using the slow query log or Performance Schema. For more information, see the QueryAnalytics section. slow query log The default source of query data for Query Analytics. Slow query log is available starting from MySQL 5.1, and provides a wealth of valuable data for deep analysis. A faster and more efficient way (but without as much data) is the Performance Schema. 35

40 System Info A tool for viewing the status and configuration of the server and MySQL instances. It uses tools from Percona Toolkit to generate the report. For more information, see sysinfo. user Owner of the PCT Account. 36 Chapter 11. Glossary

41 Index A API key, 35 M Metrics Monitor, 35 O organization, 35 P PCT Account, 35 Percona Agent, 35 Percona Toolkit, 35 Performance Schema, 35 Q Query Analytics, 35 S slow query log, 35 System Info, 36 U user, 36 37

percona-agent Documentation

percona-agent Documentation percona-agent Documentation Release 1.0.10 Percona July 01, 2015 Contents 1 How PCT Works 3 2 Quick Start 5 3 Contents 7 3.1 PCT Account............................................... 7 3.2 Percona Agent..............................................

More information

Open Source Database Performance Optimization and Monitoring with PMM. Fernando Laudares, Vinicius Grippa, Michael Coburn Percona

Open Source Database Performance Optimization and Monitoring with PMM. Fernando Laudares, Vinicius Grippa, Michael Coburn Percona Open Source Database Performance Optimization and Monitoring with PMM Fernando Laudares, Vinicius Grippa, Michael Coburn Percona Fernando Laudares 2 Vinicius Grippa 3 Michael Coburn Product Manager for

More information

Analyze MySQL Query Performance with Percona Cloud Tools

Analyze MySQL Query Performance with Percona Cloud Tools Analyze MySQL Query Performance with Percona Cloud Tools Vadim Tkachenko Percona, Co-founder /CTO www.percona.com cloud.percona.com www.mysqlperformanceblog.com 2 This webinar Performance Percona Cloud

More information

Monitoring MySQL Performance with Percona Monitoring and Management

Monitoring MySQL Performance with Percona Monitoring and Management Monitoring MySQL Performance with Percona Monitoring and Management Santa Clara, California April 23th 25th, 2018 MIchael Coburn, Product Manager Your Presenter Product Manager for PMM (also Percona Toolkit

More information

Comodo One Software Version 3.3

Comodo One Software Version 3.3 rat Comodo One Software Version 3.3 Patch Management Module Administrator Guide Guide Version 2.2.101316 Comodo Security Solutions 1255 Broad Street STE 100 Clifton, NJ 07013 Table of Contents 1 Introduction

More information

Percona Monitoring and Management Documentation

Percona Monitoring and Management Documentation Percona Monitoring and Management Documentation Release 1.1.4 Percona LLC and/or its affiliates 2009-2017 May 29, 2017 CONTENTS I Basics 3 II Advanced 27 III Reference 57 i ii Percona Monitoring and Management

More information

Installing SmartSense on HDP

Installing SmartSense on HDP 1 Installing SmartSense on HDP Date of Publish: 2018-07-12 http://docs.hortonworks.com Contents SmartSense installation... 3 SmartSense system requirements... 3 Operating system, JDK, and browser requirements...3

More information

StreamSets Control Hub Installation Guide

StreamSets Control Hub Installation Guide StreamSets Control Hub Installation Guide Version 3.2.1 2018, StreamSets, Inc. All rights reserved. Table of Contents 2 Table of Contents Chapter 1: What's New...1 What's New in 3.2.1... 2 What's New in

More information

Configuration Manager

Configuration Manager CHAPTER 7 This chapter describes how to perform routine Cisco VXC Manager configuration management tasks using the Administrator Console. It provides information on managing the configuration settings

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

Installation 3. Minimum system requirements 3. Download and installation on Windows 3. Download and installation on Linux 3

Installation 3. Minimum system requirements 3. Download and installation on Windows 3. Download and installation on Linux 3 2 TABLE OF CONTENTS Installation 3 Minimum system requirements 3 Download and installation on Windows 3 Download and installation on Linux 3 Mail server configuration 4 Out-of-the-box integrations 4 ServiceDesk

More information

vrealize Operations Manager Customization and Administration Guide vrealize Operations Manager 6.4

vrealize Operations Manager Customization and Administration Guide vrealize Operations Manager 6.4 vrealize Operations Manager Customization and Administration Guide vrealize Operations Manager 6.4 vrealize Operations Manager Customization and Administration Guide You can find the most up-to-date technical

More information

EMC Ionix ControlCenter (formerly EMC ControlCenter) 6.0 StorageScope

EMC Ionix ControlCenter (formerly EMC ControlCenter) 6.0 StorageScope EMC Ionix ControlCenter (formerly EMC ControlCenter) 6.0 StorageScope Best Practices Planning Abstract This white paper provides advice and information on practices that will enhance the flexibility of

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 10.5 Feb 2018 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

ZENworks Reporting System Reference. January 2017

ZENworks Reporting System Reference. January 2017 ZENworks Reporting System Reference January 2017 Legal Notices For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights, patent

More information

vrealize Hyperic Monitoring and Management Guide vrealize Hyperic 5.8.4

vrealize Hyperic Monitoring and Management Guide vrealize Hyperic 5.8.4 vrealize Hyperic Monitoring and Management Guide vrealize Hyperic 5.8.4 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Monitoring MySQL Performance with Percona Monitoring and Management

Monitoring MySQL Performance with Percona Monitoring and Management Monitoring MySQL Performance with Percona Monitoring and Management Your Presenters Michael Coburn - PMM Product Manager Working at Percona for almost 5 years Consultant, Manager, TAM, now Product Manager

More information

Zend Server Cluster Manager 5.5 Beta. Installation Guide. By Zend Technologies.

Zend Server Cluster Manager 5.5 Beta. Installation Guide. By Zend Technologies. Zend Server Cluster Manager 5.5 Beta Installation Guide By Zend Technologies www.zend.com Abstract This is the Installation Guide for Zend Server Cluster Manager Version 5.5 Beta. The information in this

More information

Pure Storage FlashArray Management Pack for VMware vrealize Operations Manager User Guide. (Version with Purity 4.9.

Pure Storage FlashArray Management Pack for VMware vrealize Operations Manager User Guide. (Version with Purity 4.9. Pure Storage FlashArray Management Pack for VMware vrealize Operations Manager User Guide (Version 1.0.139 with Purity 4.9.x or higher) Sunday, November 27, 2016 16:13 Pure Storage FlashArray Management

More information

Acronis Monitoring Service

Acronis Monitoring Service Acronis Monitoring Service PRODUCT DOCUMENTATION Table of contents 1 About the Acronis Monitoring Service...4 2 Software Requirements...4 3 Understanding basic concepts...5 4 Getting started...7 4.1 Setting

More information

END USERS GUIDE. Discover how to use Kerio Control Statistics, VPN Client and 2-step verification

END USERS GUIDE. Discover how to use Kerio Control Statistics, VPN Client and 2-step verification END USERS GUIDE Discover how to use Kerio Control Statistics, VPN Client and 2-step verification The information and content in this document is provided for informational purposes only and is provided

More information

Using the vrealize Orchestrator Operations Client. vrealize Orchestrator 7.5

Using the vrealize Orchestrator Operations Client. vrealize Orchestrator 7.5 Using the vrealize Orchestrator Operations Client vrealize Orchestrator 7.5 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Tasktop Sync - Cheat Sheet

Tasktop Sync - Cheat Sheet Tasktop Sync - Cheat Sheet 1 Table of Contents Tasktop Sync Server Application Maintenance... 4 Basic Installation... 4 Upgrading Sync... 4 Upgrading an Endpoint... 5 Moving a Workspace... 5 Same Machine...

More information

ACTIVE Net Insights user guide. (v5.4)

ACTIVE Net Insights user guide. (v5.4) ACTIVE Net Insights user guide (v5.4) Version Date 5.4 January 23, 2018 5.3 November 28, 2017 5.2 October 24, 2017 5.1 September 26, 2017 ACTIVE Network, LLC 2017 Active Network, LLC, and/or its affiliates

More information

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training OBIEE Oracle Business Intelligence Enterprise Edition Rensselaer Business Intelligence Finance Author Training TABLE OF CONTENTS INTRODUCTION... 1 USER INTERFACE... 1 HOW TO LAUNCH OBIEE... 1 TERMINOLOGY...

More information

KEMP360 Central. 1 Introduction. KEMP360 Central. Feature Description

KEMP360 Central. 1 Introduction. KEMP360 Central. Feature Description 1 Introduction KEMP360 Central Feature Description VERSION: 8.0 UPDATED: JUNE 2016 Introduction Table of Contents 1 Introduction... 5 1.1 Document Purpose... 6 1.2 Intended Audience... 6 2 KEMP360 Interface

More information

Kerio Control. User Guide. Kerio Technologies

Kerio Control. User Guide. Kerio Technologies Kerio Control User Guide Kerio Technologies 2017 Kerio Technologies s.r.o. Contents Viewing activity reports in Kerio Control Statistics......................... 5 Overview..................................................................

More information

Database Performance Analyzer (DPA) Quick Demo

Database Performance Analyzer (DPA) Quick Demo Database Performance Analyzer (DPA) Quick Demo http://database.demo.solarwinds.com/ Log in with the username demo and password demo1. NOTE: You may encounter the following recommended video, while demoing

More information

VMware vcenter AppSpeed User s Guide AppSpeed 1.0 EN

VMware vcenter AppSpeed User s Guide AppSpeed 1.0 EN VMware vcenter AppSpeed User s Guide AppSpeed 1.0 EN-000213-01 VMware vcenter AppSpeed User s Guide You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/

More information

End User Monitoring. AppDynamics Pro Documentation. Version Page 1

End User Monitoring. AppDynamics Pro Documentation. Version Page 1 End User Monitoring AppDynamics Pro Documentation Version 4.1.1 Page 1 End User Monitoring....................................................... 4 Browser Real User Monitoring.............................................

More information

MySQL Performance Optimization and Troubleshooting with PMM. Peter Zaitsev, CEO, Percona

MySQL Performance Optimization and Troubleshooting with PMM. Peter Zaitsev, CEO, Percona MySQL Performance Optimization and Troubleshooting with PMM Peter Zaitsev, CEO, Percona In the Presentation Practical approach to deal with some of the common MySQL Issues 2 Assumptions You re looking

More information

Performance Dashboard User Guide

Performance Dashboard User Guide Performance Dashboard User Guide December 22, 2017 - Version 9.5 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

The Connector. Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual

The Connector.  Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual The Connector Version 1.2 Microsoft Project to Atlassian JIRA Connectivity User Manual Ecliptic Technologies, Inc. Copyright 2008 www.the-connector.com Page 1 of 86 Copyright and Disclaimer All rights

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

Oracle Communications Performance Intelligence Center

Oracle Communications Performance Intelligence Center Oracle Communications Performance Intelligence Center KPI Configuration Guide Release 10.2.1 E77501-01 June 2017 1 Oracle Communications Performance Intelligence Center KPI Configuration Guide, Release

More information

End User Monitoring. AppDynamics Pro Documentation. Version Page 1

End User Monitoring. AppDynamics Pro Documentation. Version Page 1 End User Monitoring AppDynamics Pro Documentation Version 4.1.5 Page 1 End User Monitoring....................................................... 4 Browser Real User Monitoring.............................................

More information

The InfluxDB-Grafana plugin for Fuel Documentation

The InfluxDB-Grafana plugin for Fuel Documentation The InfluxDB-Grafana plugin for Fuel Documentation Release 0.8.0 Mirantis Inc. December 14, 2015 Contents 1 User documentation 1 1.1 Overview................................................. 1 1.2 Release

More information

vfabric Hyperic Monitoring and Management

vfabric Hyperic Monitoring and Management vfabric Hyperic Monitoring and Management VMware vfabric Hyperic 5.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

Downloading and installing Db2 Developer Community Edition on Ubuntu Linux Roger E. Sanders Yujing Ke Published on October 24, 2018

Downloading and installing Db2 Developer Community Edition on Ubuntu Linux Roger E. Sanders Yujing Ke Published on October 24, 2018 Downloading and installing Db2 Developer Community Edition on Ubuntu Linux Roger E. Sanders Yujing Ke Published on October 24, 2018 This guide will help you download and install IBM Db2 software, Data

More information

SAS Viya 3.4 Administration: Monitoring

SAS Viya 3.4 Administration: Monitoring SAS Viya 3.4 Administration: Monitoring Monitoring: Overview.......................................................................... 1 Monitoring: Concepts..........................................................................

More information

Ftp Command Line Manual Windows Username Password Linux

Ftp Command Line Manual Windows Username Password Linux Ftp Command Line Manual Windows Username Password Linux Midnight Commander is a console based full-screen text mode File Manager that allows you to copy, MC has many features which are useful for a user

More information

DupScout DUPLICATE FILES FINDER

DupScout DUPLICATE FILES FINDER DupScout DUPLICATE FILES FINDER User Manual Version 10.3 Dec 2017 www.dupscout.com info@flexense.com 1 1 Product Overview...3 2 DupScout Product Versions...7 3 Using Desktop Product Versions...8 3.1 Product

More information

vcenter Hyperic Monitoring and Management Guide

vcenter Hyperic Monitoring and Management Guide vcenter Hyperic Monitoring and Management Guide vcenter Hyperic 5.8 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

Salesforce Classic Guide for iphone

Salesforce Classic Guide for iphone Salesforce Classic Guide for iphone Version 35.0, Winter 16 @salesforcedocs Last updated: October 27, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Ansible Tower Quick Setup Guide

Ansible Tower Quick Setup Guide Ansible Tower Quick Setup Guide Release Ansible Tower 2.4.5 Red Hat, Inc. Jun 06, 2017 CONTENTS 1 Quick Start 2 2 Login as a Superuser 3 3 Import a License 4 4 Examine the Tower Dashboard 6 5 The Setup

More information

EMCO Ping Monitor Enterprise 6. Copyright EMCO. All rights reserved.

EMCO Ping Monitor Enterprise 6. Copyright EMCO. All rights reserved. Copyright 2001-2017 EMCO. All rights reserved. Company web site: emcosoftware.com Support e-mail: support@emcosoftware.com Table of Contents Chapter... 1: Introduction 4 Chapter... 2: Getting Started 6

More information

Copyright 2018, Oracle and/or its affiliates. All rights reserved.

Copyright 2018, Oracle and/or its affiliates. All rights reserved. Beyond SQL Tuning: Insider's Guide to Maximizing SQL Performance Monday, Oct 22 10:30 a.m. - 11:15 a.m. Marriott Marquis (Golden Gate Level) - Golden Gate A Ashish Agrawal Group Product Manager Oracle

More information

Zend Server Cluster Manager 5.6 Installation Guide

Zend Server Cluster Manager 5.6 Installation Guide Zend Server Cluster Manager 5.6 Installation Guide By Zend Technologies www.zend.com Abstract This is the Installation Guide for Zend Server Cluster Manager Version 5.6. The information in this document

More information

Kaltura Video Building Block 4.0 for Blackboard 9.x Quick Start Guide. Version: 4.0 for Blackboard 9.x

Kaltura Video Building Block 4.0 for Blackboard 9.x Quick Start Guide. Version: 4.0 for Blackboard 9.x Kaltura Video Building Block 4.0 for Blackboard 9.x Quick Start Guide Version: 4.0 for Blackboard 9.x Kaltura Business Headquarters 5 Union Square West, Suite 602, New York, NY, 10003, USA Tel.: +1 800

More information

IT INFRASTRUCTURE PROJECT PHASE I INSTRUCTIONS

IT INFRASTRUCTURE PROJECT PHASE I INSTRUCTIONS Project Overview IT INFRASTRUCTURE PROJECT PHASE I INSTRUCTIONS This project along with the Phase II IT Infrastructure Project will help you understand how a network administrator improves network performance

More information

Colligo Engage Outlook App 7.1. Connected Mode - User Guide

Colligo Engage Outlook App 7.1. Connected Mode - User Guide 7.1 Connected Mode - User Guide Contents Colligo Engage Outlook App 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Engage Outlook App 2 Checking for Updates 3 Updating

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

Zend Server Cluster Manager 5.x Installation Guide

Zend Server Cluster Manager 5.x Installation Guide Zend Server Cluster Manager 5.x Installation Guide By Zend Technologies www.zend.com This is the Installation Guide for Server Cluster Manager, Version 5.0. The information in this document is subject

More information

Sonatype CLM - Release Notes. Sonatype CLM - Release Notes

Sonatype CLM - Release Notes. Sonatype CLM - Release Notes Sonatype CLM - Release Notes i Sonatype CLM - Release Notes Sonatype CLM - Release Notes ii Contents 1 Introduction 1 2 Upgrade instructions 2 3 Sonatype CLM for Bamboo 3 4 Sonatype CLM 1.13 4 5 Sonatype

More information

Practical Performance Tuning using Digested SQL Logs. Bob Burgess Salesforce Marketing Cloud

Practical Performance Tuning using Digested SQL Logs. Bob Burgess Salesforce Marketing Cloud Practical Performance Tuning using Digested SQL Logs Bob Burgess Salesforce Marketing Cloud Who?! Database Architect! Salesforce Marketing Cloud (Radian6 & Buddy Media stack) Why?! I can t be the only

More information

Running MySQL on AWS. Michael Coburn Wednesday, April 15th, 2015

Running MySQL on AWS. Michael Coburn Wednesday, April 15th, 2015 Running MySQL on AWS Michael Coburn Wednesday, April 15th, 2015 Who am I? 2 Senior Architect with Percona 3 years on Friday! Canadian but I now live in Costa Rica I see 3-10 different customer environments

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Gerrit

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Gerrit Gerrit About the Tutorial Gerrit is a web-based code review tool, which is integrated with Git and built on top of Git version control system (helps developers to work together and maintain the history

More information

Using Percona Monitoring and Management to Troubleshoot MySQL Performance Issues

Using Percona Monitoring and Management to Troubleshoot MySQL Performance Issues Using Percona Monitoring and Management to Troubleshoot MySQL Performance Issues Michael Coburn, Product Manager PMM September 7th, 2017 1 Your presenter Michael Coburn - Product Manager PMM Working at

More information

Noction Flow Analyzer

Noction Flow Analyzer INSTALLATION & CONFIGURATION GUIDE Copyright 2018 Noction Inc. Table of Contents Introduction...3 What is Noction Flow Analyzer...3 System Requirements...3 Hardware requirements...3 Software requirements...3

More information

Mission Control 5.0. Mission Control Admin Guide. January, 2016

Mission Control 5.0. Mission Control Admin Guide. January, 2016 Mission Control 5.0 Mission Control Admin Guide January, 2016 Mission Control Admin Guide You can find the most up-to-date technical documentation at: docs.delphix.com The Delphix Web site also provides

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

HTTP Errors User Guide

HTTP Errors User Guide Version 3.8 Published: 2016-03-28 Copyright 2016, Cisco Systems, Inc. Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000

More information

Explore metrics in the ExtraHop system to investigate DNS failures

Explore metrics in the ExtraHop system to investigate DNS failures Explore metrics in the ExtraHop system to investigate DNS failures Published: 2018-02-06 The DNS (domain name system) protocol is critical for supporting internet traffic. It often works without issues.

More information

SAS Viya 3.4 Administration: Logging

SAS Viya 3.4 Administration: Logging SAS Viya 3.4 Administration: Logging Logging: Overview............................................................................. 1 Logging: How To...............................................................................

More information

GOBENCH IQ Release v

GOBENCH IQ Release v GOBENCH IQ Release v1.2.3.3 2018-06-11 New Add-Ons / Features / Enhancements in GOBENCH IQ v1.2.3.3 GOBENCH IQ v1.2.3.3 contains several new features and enhancements ** New version of the comparison Excel

More information

The following sections describe the various menu options.

The following sections describe the various menu options. The Tools menu of the Unified CCX Administration web interface provides access to system tools you can use to perform a variety of administrative tasks and contains the following menu options: Plug-ins

More information

Install and upgrade Qlik Sense. Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved.

Install and upgrade Qlik Sense. Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved. Install and upgrade Qlik Sense Qlik Sense 3.0 Copyright 1993-2016 QlikTech International AB. All rights reserved. Copyright 1993-2016 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik

More information

DBPLUS Performance Monitor for Oracle

DBPLUS Performance Monitor for Oracle DBPLUS Performance Monitor for Oracle User s Manual February 2016 UM-ORA-EN-R01 Table of contents 1 Introduction... 4 1.1 DBPLUS Technical Support... 5 1.2 System architecture... 5 1.3 System requirements...

More information

EMC Unisphere for VMAX Database Storage Analyzer

EMC Unisphere for VMAX Database Storage Analyzer EMC Unisphere for VMAX Database Storage Analyzer Version 8.0.3 Online Help (PDF version) Copyright 2014-2015 EMC Corporation. All rights reserved. Published in USA. Published June, 2015 EMC believes the

More information

Colligo Engage Outlook App 7.1. Offline Mode - User Guide

Colligo Engage Outlook App 7.1. Offline Mode - User Guide Colligo Engage Outlook App 7.1 Offline Mode - User Guide Contents Colligo Engage Outlook App 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Engage Outlook App 3 Checking

More information

SAS Viya 3.2 Administration: Monitoring

SAS Viya 3.2 Administration: Monitoring SAS Viya 3.2 Administration: Monitoring Monitoring: Overview SAS Viya provides monitoring functions through several facilities. Use the monitoring system that matches your needs and your environment: SAS

More information

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

Monitor Qlik Sense sites. Qlik Sense November 2017 Copyright QlikTech International AB. All rights reserved. Monitor Qlik Sense sites Qlik Sense November 2017 Copyright 1993-2017 QlikTech International AB. All rights reserved. Copyright 1993-2017 QlikTech International AB. All rights reserved. Qlik, QlikTech,

More information

Tableau Server on Linux 2018 Update

Tableau Server on Linux 2018 Update # T C 1 8 Tableau Server on Linux 2018 Update Robert S. Brewer Manager, Engineering Tableau Software, Inc. About Me At Tableau Why Linux? Because you wanted it! Orgs already using Linux for servers Reduce

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

InterConnect. Global initiative on gene environment interactions in diabetes / obesity in specific populations. Grant agreement no:

InterConnect. Global initiative on gene environment interactions in diabetes / obesity in specific populations. Grant agreement no: Global data for diabetes and obesity research InterConnect Global initiative on gene environment interactions in diabetes / obesity in specific populations Grant agreement no: 602068 Study IT set up Standard

More information

Talend Open Studio for Data Quality. User Guide 5.5.2

Talend Open Studio for Data Quality. User Guide 5.5.2 Talend Open Studio for Data Quality User Guide 5.5.2 Talend Open Studio for Data Quality Adapted for v5.5. Supersedes previous releases. Publication date: January 29, 2015 Copyleft This documentation is

More information

IBM Endpoint Manager Version 9.0. Software Distribution User's Guide

IBM Endpoint Manager Version 9.0. Software Distribution User's Guide IBM Endpoint Manager Version 9.0 Software Distribution User's Guide IBM Endpoint Manager Version 9.0 Software Distribution User's Guide Note Before using this information and the product it supports,

More information

ObserveIT 7.1 Release Notes

ObserveIT 7.1 Release Notes ObserveIT 7.1 Release Notes In This Document About This Release... 2 New Features and Enhancements... 2 Backward Compatibility... 3 New Supported Platforms... 3 Resolved Issues... 4 Known Issues... 4 Limitations...

More information

SyncBreeze FILE SYNCHRONIZATION. User Manual. Version Dec Flexense Ltd.

SyncBreeze FILE SYNCHRONIZATION. User Manual. Version Dec Flexense Ltd. SyncBreeze FILE SYNCHRONIZATION User Manual Version 10.3 Dec 2017 www.syncbreeze.com info@flexense.com 1 1 SyncBreeze Overview...3 2 SyncBreeze Product Versions...5 3 Product Installation Procedure...6

More information

We start by providing you with an overview of the key feature of the IBM BPM Process Portal.

We start by providing you with an overview of the key feature of the IBM BPM Process Portal. Lab 1 Process Portal 1.1 Overview This lab exercise will make you familiar with the key capabilities of the ready-to-use Process Portal included with IBM Business Process Manager (BPM). You will experience

More information

Connecting Software. CB Mobile CRM - iphone. User Manual

Connecting Software. CB Mobile CRM - iphone. User Manual CB Mobile CRM - iphone User Manual Summary This document describes the ios app Mobile CRM, its functionality and features available. The document is intended for end users as user manual to provide knowledge

More information

Community Edition Getting Started Guide. July 25, 2018

Community Edition Getting Started Guide. July 25, 2018 Community Edition Getting Started Guide July 25, 2018 Copyright 2018 by Qualys, Inc. All Rights Reserved. Qualys and the Qualys logo are registered trademarks of Qualys, Inc. All other trademarks are the

More information

Inventory Reports. Detailed Device Report CHAPTER

Inventory Reports. Detailed Device Report CHAPTER CHAPTER 2 include the following device reports. Detailed Device Report Device Attributes Reports Generating a 24-Hour Inventory Change Report Hardware Reports Management Status Reports Software Reports

More information

IBM Security QRadar Deployment Intelligence app IBM

IBM Security QRadar Deployment Intelligence app IBM IBM Security QRadar Deployment Intelligence app IBM ii IBM Security QRadar Deployment Intelligence app Contents QRadar Deployment Intelligence app.. 1 Installing the QRadar Deployment Intelligence app.

More information

Tenable.io User Guide. Last Revised: November 03, 2017

Tenable.io User Guide. Last Revised: November 03, 2017 Tenable.io User Guide Last Revised: November 03, 2017 Table of Contents Tenable.io User Guide 1 Getting Started with Tenable.io 10 Tenable.io Workflow 12 System Requirements 15 Scanners and Agents 16 Link

More information

Performing an ObserveIT Upgrade Using the Interactive Installer

Performing an ObserveIT Upgrade Using the Interactive Installer Performing an ObserveIT Upgrade Using the Interactive Installer ABOUT THIS DOCUMENT This document contains detailed procedures and instructions on how to upgrade ObserveIT by using the interactive "One

More information

2016 OPSWAT, Inc. All rights reserved. OPSWAT, MetadefenderTM and the OPSWAT logo are trademarks of OPSWAT, Inc.All other trademarks, trade names,

2016 OPSWAT, Inc. All rights reserved. OPSWAT, MetadefenderTM and the OPSWAT logo are trademarks of OPSWAT, Inc.All other trademarks, trade names, 2016 OPSWAT, Inc. All rights reserved. OPSWAT, MetadefenderTM and the OPSWAT logo are trademarks of OPSWAT, Inc.All other trademarks, trade names, service marks, service names, and images mentioned and/or

More information

Colligo Console. Administrator Guide

Colligo Console. Administrator Guide Colligo Console Administrator Guide Contents About this guide... 6 Audience... 6 Requirements... 6 Colligo Technical Support... 6 Introduction... 7 Colligo Console Overview... 8 Colligo Console Home Page...

More information

User Guide. BlackBerry Workspaces for Windows. Version 5.5

User Guide. BlackBerry Workspaces for Windows. Version 5.5 User Guide BlackBerry Workspaces for Windows Version 5.5 Published: 2017-03-30 SWD-20170330110027321 Contents Introducing BlackBerry Workspaces for Windows... 6 Getting Started... 7 Setting up and installing

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

Salesforce Classic Mobile Guide for iphone

Salesforce Classic Mobile Guide for iphone Salesforce Classic Mobile Guide for iphone Version 41.0, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

FileCruiser. Administrator Portal Guide

FileCruiser. Administrator Portal Guide FileCruiser Administrator Portal Guide Contents Administrator Portal Guide Contents Login to the Administration Portal 1 Home 2 Capacity Overview 2 Menu Features 3 OU Space/Team Space/Personal Space Usage

More information

Agent and Agent Browser. Updated Friday, January 26, Autotask Corporation

Agent and Agent Browser. Updated Friday, January 26, Autotask Corporation Agent and Agent Browser Updated Friday, January 26, 2018 2018 Autotask Corporation Table of Contents Table of Contents 2 The AEM Agent and Agent Browser 3 AEM Agent 5 Privacy Mode 9 Agent Browser 11 Agent

More information

Kaltura Video Package for Moodle 2.x Quick Start Guide. Version: 3.1 for Moodle

Kaltura Video Package for Moodle 2.x Quick Start Guide. Version: 3.1 for Moodle Kaltura Video Package for Moodle 2.x Quick Start Guide Version: 3.1 for Moodle 2.0-2.4 Kaltura Business Headquarters 5 Union Square West, Suite 602, New York, NY, 10003, USA Tel.: +1 800 871 5224 Copyright

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

for Q-CHECKER Text version 15-Feb-16 4:49 PM

for Q-CHECKER Text version 15-Feb-16 4:49 PM Q-MONITOR 5.4.X FOR V5 for Q-CHECKER USERS GUIDE Text version 15-Feb-16 4:49 PM Orientation Symbols used in the manual For better orientation in the manual the following symbols are used: Warning symbol

More information

Table of Contents HOL-SDC-1635

Table of Contents HOL-SDC-1635 Table of Contents Lab Overview - - vrealize Log Insight... 2 Lab Guidance... 3 Module 1 - Log Management with vrealize Log Insight - (45 Minutes)... 7 Overview of vrealize Log Insight... 8 Video Overview

More information

Installing Apache Atlas

Installing Apache Atlas 3 Installing Apache Atlas Date of Publish: 2018-04-01 http://docs.hortonworks.com Contents Apache Atlas prerequisites... 3 Migrating Atlas metadata when upgrading to HDP-3.0+... 3 Overview... 3 Migrate

More information

Colligo Manager 5.4 SP3. User Guide

Colligo  Manager 5.4 SP3. User Guide 5.4 SP3 User Guide Contents Enterprise Email Management for SharePoint 2010 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 4 Updating

More information

CounterACT Macintosh/Linux Property Scanner Plugin

CounterACT Macintosh/Linux Property Scanner Plugin CounterACT Macintosh/Linux Property Scanner Plugin Version 7.0.1 and Above Table of Contents About the Macintosh/Linux Property Scanner Plugin... 4 Requirements... 4 Supported Operating Systems... 4 Accessing

More information