Online Monitoring in the CDF II experiment
|
|
|
- Virgil Hicks
- 10 years ago
- Views:
Transcription
1 Online Monitoring in the CDF II experiment 3t, Tetsuo Arisawa 4, Koji Ikado 4, Kaori Maeshima 1, Hartmut Stadie 3, Greg Veramendi 2, Hans Wenzel 1 1 Fermi National Accelerator Laboratory, Batavia, U.S.A. 2 Lawrence Berkeley National Laboratory, Berkeley, U.S.A. 3 Universitiit Karlsruhe, Institut fur Experimentelle Kernphysik, Karlsruhe, Germany 4 Waseda University, Tokyo, Japan ABSTRACT: We describe the online monitoring system of the CDF II experiment designed to check the data quality of all subsystems in real-time. A subset of the events accepted by the highest trigger level is made available to 10 analysis programs which check the data quality on an event-by-event basis and produce diagnostic histograms. The monitoring results are distributed to the user via a client-server scheme. The display clients feature an intuitive GUI which allows to browse and request the available results. The monitoring package is coded in C++ and makes use of the ROOT analysis framework which offers histogramining methods, networking classes and graphics handling. We report about the design and the implementation of the monitoring system and discuss our experiences during the first months of operation. The Collider Detector at Fermilab (CDF) is a general purpose detector operating at the Tevatron pp collider located in Batavia, Illinois. During Run I, from 1992 to 1996, the Tevatron operated at VB = 1.8 TeV and CDF collected data with an integrated luminosity of. 110 pb- 1. Numerous high quality physics results were obtained, among them the discovery of the top quark, the discovery of the Be meson and first indications on CP violation in the system of neutral mesons. From 1996 to 2001 the Tevatron collider was upgraded to provide an instantaneous luminosity of about cm- 2 s-1, i.e. 20 times more than in Run I, at VB = 2.0 TeV. The larger data samples to be expected in Run II, lasting from 2001 to 2007, will allow to repeat measurements of Run I with higher precision and perform new ones which were out of reach before. In order to prepare for the improved conditions CDF was considerably upgraded in all subsystems. Among these upgrades are new monitoring programs to control the data quality which are described in this article. Speaker. t [email protected]
2 1. Goals and system requirements Our main goal is to monitor the data quality of all subsystems of CDF online, while the data are being taken. The monitoring is realized by consistency checks on an event-by-event basis, by filling diagnostic histograms or time-charts, which show the time development of certain quantities, and by performing periodic statistical tests of the bin contents of those histograms. Furthermore, we want to report discovered errors in an automatic way to run control and thereby allow to request an automatic action, e.g. to reset or reboot faulty front-end crates or even halt, recover and restart the run. At the end of each run each monitoring program should give a final assessment of run quality. The judgments should be stored in a data base to give an overview and allow access by higher level assessment programs. Additionally, we want to use the monitoring programs offline, for example to check reconstructed data, to analyze test beam data or for primary checks on Monte Carlo data sets. To accomplish the goals mentioned above our monitoring system needs to fulfill certain technical requirements: (1) avoid interference with the data acquisition; (2) select events according to the trigger types; (3) parallelize concurrent tasks, like monitoring different su bdetectors or different quantities; (4) guarantee each monitoring process an adequate input rate of minimum 1 Hz; (5) minimize the interference between the monitoring process and the display process, which delivers and visualizes the monitoring results to the user; the communication with the user should not slow down the monitoring process considerably; (6) implement structures and interfaces which are common to all monitoring processes; we named this common basis for all monitoring programs, which are in CDF jargon called consumers, the Consumer Framework [2]; (7) offer access to the monitoring results from remote institutions; that is important since not all subsystem experts are permanently located at Fermilab. (8) an easy-to use and versatile graphical user interface (GUI); (9) stable operation for long time periods; (10) a large part of the Consumer Framework should be kept independent of the CDF framework; this allows us to develop a universal tool which can be ported easily to other applications. 2. Design of the Consumer Framework The highest trigger level (Level 3) of the CDF II experiment is a software trigger implemented on a large PC farm. The available bandwidth for data logging is 20 Mbyte/s, the approximate size of an event is 250 kbyte. Therefore, the expected trigger output rate is typically 75 Hz. The data are transfered from Level 3 to a process called Consumer Server Logger (CSL) [3] which sends the data to the computer center where they are written to tape and forwards copies of a subset of these events to the online monitoring programs. The total bandwidth available to the consumers is limited to 10 MByte/s. The Consumer Framework is written in C++ and makes heavy use of the ROOT [4] package. Monitoring programs: The CSL serves in total 10 monitoring programs: YMon (occupancies), XMon (trigger rates), LumMon (luminosity), TrigMon (trigger bits, trigger decisions), StageO (drift chamber calibrations), BeamMon (beam position), ObjectMon 2
3 monitoring programs d;., ;E a: z ~ R ~ ti: w w w w :;; :;; :;; :::e :::l :::l ::;) ::;) til til til til Z Z Z Z (,) (,) (,) (,) serious errors push protocol socket connections configuration via 'talk to' Figure 1: Design of the Consumer Framework. (reconstructed objects like jets, electron and photon candidates, muon candidates and tracks), SiliMon (silicon hit maps, silicon tracks), SvxMon (chip-wise silicon information: raw ADC counts, pedestals, signal-to-noise) and L3RegionalMon (silicon Level 3 regional tracking). The consumers can be configured and parameters can be customized via a steering file (in CDF jargon called a talk-to) which is read in at start-up. The monitoring programs are written by the subsystem experts. However, the Consumer Framework provides common features: the embedding in the CDF offline software (AC++), interfaces for initialization and event processing, the transport of results to the users, a common display program and error logging. This allows the subsystem experts to concentrate on their monitoring tasks, insures a large coherence between the individual consumers and eases additions and maintainability. The availability of such a common basis for all online monitors has to be viewed as a major improvement as compared to Run I of CDF. The design and the components of the Consumer Framework are shown in Fig. l. One important design choice was to implement a distributed system with many consumers running in parallel on different machines rather than one huge central process. The reason for this is that consumer jobs are CPU bound rather than limited by the available input rate. Display Servers: Another major design decision was to separate the publishing of monitoring results from the consumer jobs, in order to increase stability and smoothness 3
4 of operation. Thus, we designed a client-server model to transport the monitoring results to the user. Each consumer has its own server program. The display servers receive all monitoring results from the consumers via a push protocol. The update occurs by default every 10 events. The update frequency can be customized via a steering file. To increase the performance we do not instantiate objects inside the display servers but rather keep them in a buffer type format. The display servers are running on the same machine as the affiliated consumers. The bandwidth of the internal socket communication is about 10 Mbyte/s. Since each consumer and its display server are running on the same machine, we can start the server process from the consumer in an automated way using fork/exec. When the consumer exists, the server is stopped automatically. Display clients can connect to several servers at the same time and request specific monitoring results via a pull protocol. After connection to a server the display clients request first a list of all objects which are available by that server. This list is presented to the user in a list tree of the GUI. The user has access to the available objects via atomized requests: The user chooses from this list an object he wants to view. The request is sent to the server and the object is returned. Inter-process communication between consumer and display server on one hand and display server and display client on the other hand is realized by socket connections provided by the ROOT package (TSocket). The display clients offer an auto-update mode to" users, such that a selected object will be automatically updated with a specified update frequency, the default being 5 seconds. Another important feature of the display is the slide show option. The consumer writers can flag certain histograms or canvases as particularly important. If the user switches the slide show on, the display window will pop up and the flagged objects will consecutively be shown on this window. The objects will be automatically updated and the display will cycle over them. The standard input method for the display is via sockets as discussed above. However, it is also possible to use the GUI to view ROOT files written by the monitoring programs. Error receiver: Above all it is the purpose of the monitoring to find errors in the data or produce warnings about faulty distributions. Thus, it is important to get an overview about the error messages produced by the monitoring processes. For this purpose we collect error messages of all consumers by a central process: the error receiver. The last ten messages of each consumer are displayed on a web page. Serious error messages will be forwarded to run control to take necessary actions. These messages have to be registered in advance to acquire a specific error key, which allows the error receiver to identify them. The registered error messages are forwarded to run control and can prompt an automated action, for example to halt, recover and restart a run. State Monitor: This is a watchdog process which monitors the status of each consumer and displays it on a web page. The state monitor provides information on how many events each consumer has processed, on which machine the consumer and the affiliated server are running and the port number on which the server offers its service to the display clients. -- 4
5 3. Performance The online monitoring programs are permanently running in the CDF control room since April The 10 processes are distributed over 6 Linux PCs (4 1.4 GHz and 2 2 x 800 MHz). The PCs serve 10 screens where the display clients are showing the results. To start the consumers and displays in standard operation the shift crew runs two scripts which start the necessary processes on the assigned machines. To commission our monitoring system we have made several performance tests. Some findings are reported here: We checked how the communication of a consumer with its display server influences its monitoring performance by running the consumer with the highest number of histograms (YMon) with and without server connected. With YMon running alone on one machine we got an event rate of 5.8 Hz if the server was off and 4.7 Hz if the server was on. We consider this decrease in processing rate due to the export of monitoring results to be acceptable. Another test dealt with the resources used up by the display client if it is running on the same machine. It turned out that the update time when being in auto-update mode is a crucial quantity. If set to a reasonable value of 5 seconds the consumer gets 80% of the CPU, the display uses 4%, the X server 6% and the display server 2%. If the update time is set to a far too low value, e.g. 0.3 seconds the share left for the consumer goes down to 36%, the X server uses 34% and the display 21%. With the full system under operation we find that all consumers reach an event processing rate of approximately 2 Hz which is within specifications. 4. Conclusions We have designed and implemented a common framework (Consumer Framework) for all 10 CDF online monitoring programs. The package includes common base classes, a display server to publish monitoring results and a versatile and user-friendly display GUI. The monitoring programs are in continuous operation since April Monitoring results are accessible from remote sites. References [1] F. Abe et al, The CDF detector: an overview, Nucl. Instrum. Meth. A 271 (1988) [2] H. Wenzel et al., Online Monitoring and Module Maintenance for CDF in the Upcoming Fermilab Tevatron Run ll, CHEP 2000, Padova, Italy, February 2000; T. Arisawa et al, CDF Run II Run Control and Online Monitor, CHEP 2001, Beijing, China, September [3) M. Shimojima et al., Consumer-Server/Logger system for the CDF experiment, 11th IEEE NPSS Real Time Conference, June 1999, Santa Fe, U.S.A.; B. Kilminster et al., Design and Specifications for the CDF Run II Consumer-Server/Logger, CDF internal note CDF/DOC/ONLINE/PUBLIC/4794, [4] R. Brun, F. Rademakers et al, 5
Online Monitoring for CDF in the Upcoming Fermilab Tevatron Run II
Online Monitoring for CDF in the Upcoming Fermilab Tevatron Run II Design and Status Tetsuo Arisawa, Frank Hartmann, Kouji Ikado, Kaori Maeshima, Hartmut Stadie, Gregory Veramendi, Hans Wenzel http://www-b0.fnal.gov:8000/consumer/consumer.html
Web based monitoring in the CMS experiment at CERN
FERMILAB-CONF-11-765-CMS-PPD International Conference on Computing in High Energy and Nuclear Physics (CHEP 2010) IOP Publishing Web based monitoring in the CMS experiment at CERN William Badgett 1, Irakli
Online CMS Web-Based Monitoring. Zongru Wan Kansas State University & Fermilab (On behalf of the CMS Collaboration)
Online CMS Web-Based Monitoring Kansas State University & Fermilab (On behalf of the CMS Collaboration) Technology and Instrumentation in Particle Physics June 13, 2011 Chicago, USA CMS One of the high
The CMS analysis chain in a distributed environment
The CMS analysis chain in a distributed environment on behalf of the CMS collaboration DESY, Zeuthen,, Germany 22 nd 27 th May, 2005 1 The CMS experiment 2 The CMS Computing Model (1) The CMS collaboration
Memory Database Application in the Processing of Huge Amounts of Data Daqiang Xiao 1, Qi Qian 2, Jianhua Yang 3, Guang Chen 4
5th International Conference on Advanced Materials and Computer Science (ICAMCS 2016) Memory Database Application in the Processing of Huge Amounts of Data Daqiang Xiao 1, Qi Qian 2, Jianhua Yang 3, Guang
Data-analysis scheme and infrastructure at the X-ray free electron laser facility, SACLA
Data-analysis scheme and infrastructure at the X-ray free electron laser facility, SACLA T. Sugimoto, T. Abe, Y. Joti, T. Kameshima, K. Okada, M. Yamaga, R. Tanaka (Japan Synchrotron Radiation Research
The data acquisition system of the XMASS experiment
The data acquisition system of the XMASS experiment Katsuki Hiraide 1,2, for the XMASS Collaboration 1 Kamioka Observatory, Institute for Cosmic Ray Research, the University of Tokyo, Higashi-Mozumi, Kamioka,
The Data Quality Monitoring Software for the CMS experiment at the LHC
The Data Quality Monitoring Software for the CMS experiment at the LHC On behalf of the CMS Collaboration Marco Rovere, CERN CHEP 2015 Evolution of Software and Computing for Experiments Okinawa, Japan,
Email: [email protected]
USE OF VIRTUAL INSTRUMENTS IN RADIO AND ATMOSPHERIC EXPERIMENTS P.N. VIJAYAKUMAR, THOMAS JOHN AND S.C. GARG RADIO AND ATMOSPHERIC SCIENCE DIVISION, NATIONAL PHYSICAL LABORATORY, NEW DELHI 110012, INDIA
User Manual WatchPower
User Manual WatchPower Management Software for Inverter Table of Contents 1. WatchPower Overview... 1 1.1. Introduction... 1 1.2. Features... 1 2. WatchPower Install and Uninstall... 1 2.1. System Requirement...
WEEE Directive & Product Disposal
User s Manual WEEE Directive & Product Disposal At the end of its serviceable life, this product should not be treated as household or general waste. It should be handed over to the applicable collection
CLAS12 Offline Software Tools. G.Gavalian (Jlab)
CLAS12 Offline Software Tools G.Gavalian (Jlab) Overview Data formats I/O gemc data reader raw data reader detector hit decoder ET ring data reader Geometry Package implementation of all baseline detectors
World-wide online monitoring interface of the ATLAS experiment
World-wide online monitoring interface of the ATLAS experiment S. Kolos, E. Alexandrov, R. Hauser, M. Mineev and A. Salnikov Abstract The ATLAS[1] collaboration accounts for more than 3000 members located
Vibration analysis and monitoring Compact. Powerful. Modern technology.
Vibration analysis and monitoring Compact. Powerful. Modern technology. Maximum performance Vibration measurement with state of the art processor technology Expert Vibro is Delphin Technology's new device
Pharos Control User Guide
Outdoor Wireless Solution Pharos Control User Guide REV1.0.0 1910011083 Contents Contents... I Chapter 1 Quick Start Guide... 1 1.1 Introduction... 1 1.2 Installation... 1 1.3 Before Login... 8 Chapter
ENC Enterprise Network Center. Intuitive, Real-time Monitoring and Management of Distributed Devices. Benefits. Access anytime, anywhere
Scalability management up to 2,000 devices Network and device auto-discovery Firmware upgrade/backup and device configurations Performance alerts and monitoring ZyXEL switch specialized in RMON management
AN APPLICATION OF INFORMATION RETRIEVAL IN P2P NETWORKS USING SOCKETS AND METADATA
AN APPLICATION OF INFORMATION RETRIEVAL IN P2P NETWORKS USING SOCKETS AND METADATA Ms. M. Kiruthika Asst. Professor, Fr.C.R.I.T, Vashi, Navi Mumbai. [email protected] Ms. Smita Dange Lecturer,
SNMP Manager User s Manual
SNMP Manager User s Manual Table of Contents 1. Introduction...2 2. SNMP Manager Install, Quick Start and Uninstall...2 2.1. Software Installation...2 2.2. Software Quick Start...2 2.3. Software Uninstall...2
THE TESLA TEST FACILITY AS A PROTOTYPE FOR THE GLOBAL ACCELERATOR NETWORK
THE TESLA TEST FACILITY AS A PROTOTYPE FOR THE GLOBAL ACCELERATOR NETWORK K. Rehlich, DESY, Hamburg, Germany Abstract The next generation of large accelerators facilities will be produced and operated
What is LOG Storm and what is it useful for?
What is LOG Storm and what is it useful for? LOG Storm is a high-speed digital data logger used for recording and analyzing the activity from embedded electronic systems digital bus and data lines. It
pc resource monitoring and performance advisor
pc resource monitoring and performance advisor application note www.hp.com/go/desktops Overview HP Toptools is a modular web-based device management tool that provides dynamic information about HP hardware
Getting Started with. Ascent Capture Internet Server 5. 10300260-000 Revision A
Ascent Capture Internet Server 5 Getting Started with Ascent Capture Internet Server 5 10300260-000 Revision A Copyright Copyright 2001 Kofax Image Products. All Rights Reserved. Printed in USA. The information
Changing Your Cameleon Server IP
1.1 Overview Technical Note Cameleon requires that you have a static IP address defined for the server PC the Cameleon server application runs on. Even if the server PC has a static IP address, you may
RiMONITOR. Monitoring Software. for RIEGL VZ-Line Laser Scanners. Ri Software. visit our website www.riegl.com. Preliminary Data Sheet
Monitoring Software RiMONITOR for RIEGL VZ-Line Laser Scanners for stand-alone monitoring applications by autonomous operation of all RIEGL VZ-Line Laser Scanners adaptable configuration of data acquisition
A Scheme for Implementing Load Balancing of Web Server
Journal of Information & Computational Science 7: 3 (2010) 759 765 Available at http://www.joics.com A Scheme for Implementing Load Balancing of Web Server Jianwu Wu School of Politics and Law and Public
HARTING Ha-VIS Management Software
HARTING Ha-VIS Management Software People Power Partnership HARTING Management Software Network Management Automation IT - with mcon Switches from HARTING With the Ha-VIS mcon families, HARTING has expanded
Overlapping Data Transfer With Application Execution on Clusters
Overlapping Data Transfer With Application Execution on Clusters Karen L. Reid and Michael Stumm [email protected] [email protected] Department of Computer Science Department of Electrical and Computer
Database Monitoring Requirements. Salvatore Di Guida (CERN) On behalf of the CMS DB group
Database Monitoring Requirements Salvatore Di Guida (CERN) On behalf of the CMS DB group Outline CMS Database infrastructure and data flow. Data access patterns. Requirements coming from the hardware and
Backup and Redundancy
Backup and Redundancy White Paper NEC s UC for Business Backup and Redundancy allow businesses to operate with confidence, providing security for themselves and their customers. When a server goes down
Access to remote DVR from IE USER S MANUAL CONTENT
Access to remote DVR from IE CONTENT... 2 Preface... 2 1. Introduction... 2 2. System requirement and executing environment... 2 2.1. Supported operating System:... 2 2.2. Hardware requirement (recommend):...
What is new in Switch 12
What is new in Switch 12 New features and functionality: Remote Designer From this version onwards, you are no longer obliged to use the Switch Designer on your Switch Server. Now that we implemented the
EUROPEAN ORGANIZATION FOR NUCLEAR RESEARCH CERN ACCELERATORS AND TECHNOLOGY SECTOR A REMOTE TRACING FACILITY FOR DISTRIBUTED SYSTEMS
EUROPEAN ORGANIZATION FOR NUCLEAR RESEARCH CERN ACCELERATORS AND TECHNOLOGY SECTOR CERN-ATS-2011-200 A REMOTE TRACING FACILITY FOR DISTRIBUTED SYSTEMS F. Ehm, A. Dworak, CERN, Geneva, Switzerland Abstract
Web application for detailed realtime database transaction monitoring
Web application for detailed realtime database transaction monitoring for CMS condition data ICCMSE 2009 The 7th International Conference of Computational Methods for Science and Engineering Friday October
AUTOMATION OF OPERATIONS ON THE VEPP-4 CONTROL SYSTEM
10th ICALEPCS Int. Conf. on Accelerator & Large Expt. Physics Control Systems. Geneva, 10-14 Oct 2005, PO1.072-7 (2005) AUTOMATION OF OPERATIONS ON THE VEPP-4 CONTROL SYSTEM A. Bogomyagkov, S. Karnaev,
SNMP Web card. User s Manual. Management Software for Uninterruptible Power Supply Systems
SNMP Web card User s Manual Management Software for Uninterruptible Power Supply Systems Table of Contents 1. Overview... 3 1.1 Introduction... 3 1.2 Features... 3 1.3 Overlook... 3 1.4 Installation and
Think Automation and beyond... IDEC WindSRV. KEPServerEX OPC Server
Think Automation and beyond... IDEC WindSRV KEPServerEX OPC Server Direct connectivity Linking your client applications with IDEC PLCs WindSRV SCADA Application Master Pentra PLC Datalink Protocol Ethernet
HP IMC Firewall Manager
HP IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW102-20120420 Legal and notice information Copyright 2012 Hewlett-Packard Development Company, L.P. No part of this
Software Scalability Issues in Large Clusters
Software Scalability Issues in Large Clusters A. Chan, R. Hogue, C. Hollowell, O. Rind, T. Throwe, T. Wlodek Brookhaven National Laboratory, NY 11973, USA The rapid development of large clusters built
CMS data quality monitoring web service
CMS data quality monitoring web service L Tuura 1, G Eulisse 1, A Meyer 2,3 1 Northeastern University, Boston, MA, USA 2 DESY, Hamburg, Germany 3 CERN, Geneva, Switzerland E-mail: [email protected], [email protected],
Installation Notes for Outpost Network Security (ONS) version 3.2
Outpost Network Security Installation Notes version 3.2 Page 1 Installation Notes for Outpost Network Security (ONS) version 3.2 Contents Installation Notes for Outpost Network Security (ONS) version 3.2...
Jetico Central Manager. Administrator Guide
Jetico Central Manager Administrator Guide Introduction Deployment, updating and control of client software can be a time consuming and expensive task for companies and organizations because of the number
Ultra Thin Client TC-401 TC-402. Users s Guide
Ultra Thin Client TC-401 TC-402 Users s Guide CONTENT 1. OVERVIEW... 3 1.1 HARDWARE SPECIFICATION... 3 1.2 SOFTWARE OVERVIEW... 4 1.3 HARDWARE OVERVIEW...5 1.4 NETWORK CONNECTION... 7 2. INSTALLING THE
A J2EE based server for Muon Spectrometer Alignment monitoring in the ATLAS detector Journal of Physics: Conference Series
A J2EE based server for Muon Spectrometer Alignment monitoring in the ATLAS detector Journal of Physics: Conference Series Andrea Formica, Pierre-François Giraud, Frederic Chateau and Florian Bauer, on
OPERATING SYSTEMS Software in the Background. Chapter 2
OPERATING SYSTEMS Software in the Background Chapter 2 Objectives Describe the functions of an Operating System Explain the basics of a personal computer operating system Describe the advantages of a graphical
Using Symantec NetBackup with Symantec Security Information Manager 4.5
Using Symantec NetBackup with Symantec Security Information Manager 4.5 Using Symantec NetBackup with Symantec Security Information Manager Legal Notice Copyright 2007 Symantec Corporation. All rights
Smart. Scalable. Simple.
Thermo Scientific Wireless Monitoring Solution Smart. Scalable. Simple. providing the protection you need with the simplicity you deserve Thermo Scientific Wireless Monitoring Solution Optimized Sample
s@lm@n Oracle Exam 1z0-599 Oracle WebLogic Server 12c Essentials Version: 6.4 [ Total Questions: 91 ]
s@lm@n Oracle Exam 1z0-599 Oracle WebLogic Server 12c Essentials Version: 6.4 [ Total Questions: 91 ] Question No : 1 How can you configure High Availability for interacting with a non-oracle database
User s Manual. Management Software for Inverter
WatchPower User s Manual Management Software for Inverter Table of Contents 1. WatchPower Overview... 2 1.1. Introduction... 2 1.2. Features... 2 2. WatchPower Install and Uninstall... 2 2.1. System Requirement...
Author A.Kishore/Sachin http://appsdba.info. VNC Background
VNC Background VNC means Virtual Network Computing, is an open-source, crossplatform protocol for viewing GUI desktops on remote machines within a LAN or over a WAN/Internet connection. This document discusses
A PC-BASED TIME INTERVAL COUNTER WITH 200 PS RESOLUTION
35'th Annual Precise Time and Time Interval (PTTI) Systems and Applications Meeting San Diego, December 2-4, 2003 A PC-BASED TIME INTERVAL COUNTER WITH 200 PS RESOLUTION Józef Kalisz and Ryszard Szplet
7.x Upgrade Instructions. 2015 Software Pursuits, Inc.
7.x Upgrade Instructions 2015 Table of Contents INTRODUCTION...2 SYSTEM REQUIREMENTS FOR SURESYNC 7...2 CONSIDERATIONS BEFORE UPGRADING...3 TERMINOLOGY CHANGES... 4 Relation Renamed to Job... 4 SPIAgent
Getting Started. Symantec Client Security. About Symantec Client Security. How to get started
Getting Started Symantec Client Security About Security Security provides scalable, cross-platform firewall, intrusion prevention, and antivirus protection for workstations and antivirus protection for
SysPatrol - Server Security Monitor
SysPatrol Server Security Monitor User Manual Version 2.2 Sep 2013 www.flexense.com www.syspatrol.com 1 Product Overview SysPatrol is a server security monitoring solution allowing one to monitor one or
Quality Assurance for Hydrometric Network Data as a Basis for Integrated River Basin Management
Quality Assurance for Hydrometric Network Data as a Basis for Integrated River Basin Management FRANK SCHLAEGER 1, MICHAEL NATSCHKE 1 & DANIEL WITHAM 2 1 Kisters AG, Charlottenburger Allee 5, 52068 Aachen,
The KNX visualization software
01 The KNX visualization software Visualization software pre-installed in an industrial embedded Linux PC. Available in different hardware versions to match the requirements of any type of installation:
NEW. EVEN MORE data acquisition and test stand automation
NEW EVEN MORE data acquisition and test stand automation the new class of data The plug&play complete package User benefits Expert Series is the latest generation of data acquisition Complete hardware
theguard! ApplicationManager System Windows Data Collector
theguard! ApplicationManager System Windows Data Collector Status: 10/9/2008 Introduction... 3 The Performance Features of the ApplicationManager Data Collector for Microsoft Windows Server... 3 Overview
NVMS-1200. User Manual
NVMS-1200 User Manual Contents 1 Software Introduction... 1 1.1 Summary... 1 1.2 Install and Uninstall... 1 1.2.1 Install the Software... 1 2 Login Software... 3 2.1 Login... 3 2.2 Control Panel Instruction...
Smart Cloud Integration Pack. For System Center Operation Manager. v1.1.0. User's Guide
Smart Cloud Integration Pack For System Center Operation Manager v1.1.0 User's Guide Table of Contents 1. INTRODUCTION... 6 1.1. Overview... 6 1.2. Feature summary... 7 1.3. Supported Microsoft System
The Study on Web GIS Architecture Based on JNLP
ISPRS SIPT IGU UCI CIG ACSG Table of contents Table des matières Authors index Index des auteurs Search Recherches Exit Sortir The Study on Web GIS Architecture Based on JNLP Li Luqun 1, Li Jian 2,Tian
AXIOM 4 AXIOM SERVER GUIDE
AXIOM 4 AXIOM SERVER GUIDE iconcur Software Corporation 1266 West Paces Ferry Road Atlanta, GA 30327-2306 Axiom is a trademark of iconcur Software Corporation. All other product and company names are trademarks
ViewPower. User s Manual. Management Software for Uninterruptible Power Supply Systems
ViewPower User s Manual Management Software for Uninterruptible Power Supply Systems Table of Contents 1. ViewPower Overview... 2 1.1. Introduction...2 1.2. Structure...2 1.3. Applications...2 1.4. Features...2
Chapter 8 Router and Network Management
Chapter 8 Router and Network Management This chapter describes how to use the network management features of your ProSafe Dual WAN Gigabit Firewall with SSL & IPsec VPN. These features can be found by
Honeywell Internet Connection Module
Honeywell Internet Connection Module Setup Guide Version 1.0 - Page 1 of 18 - ICM Setup Guide Technical Support Setup - Guide Table of Contents Introduction... 3 Network Setup and Configuration... 4 Setting
Bulletin. Introduction. Dates and Venue. History. Important Dates. Registration
Bulletin Introduction The International Conference on Computing in High Energy and Nuclear Physics (CHEP) is a major series of international conferences for physicists and computing professionals from
1. Product Information
ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such
Online Backup Client User Manual Linux
Online Backup Client User Manual Linux 1. Product Information Product: Online Backup Client for Linux Version: 4.1.7 1.1 System Requirements Operating System Linux (RedHat, SuSE, Debian and Debian based
Big Data Analytics. for the Exploitation of the CERN Accelerator Complex. Antonio Romero Marín
Big Data Analytics for the Exploitation of the CERN Accelerator Complex Antonio Romero Marín Milan 11/03/2015 Oracle Big Data and Analytics @ Work 1 What is CERN CERN - European Laboratory for Particle
Do you know what makes NetSupport Manager so unique?
Do you know what makes NetSupport Manager so unique? NetSupport Manager is recognised internationally as the market leading Remote Control solution for Enterprises large and small. Over the last 23 years,
applicomio Profibus-DP
BradCommunications Profibus-DP network interface cards allow deterministic I/O data acquisition for PC-based control applications. Features New! Support of Windows 32-bit and 64-bit (WoW64) Support of
HP A-IMC Firewall Manager
HP A-IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW101-20110805 Legal and notice information Copyright 2011 Hewlett-Packard Development Company, L.P. No part of this
Dr.Backup Release Notes - Version 11.2.4
Dr.Backup Release Notes - Version 11.2.4 This version introduces several new capabilities into the Dr.Backup remote backup client software (rbclient). The notes below provide the details about the new
Access Control and Audit Trail Software
Varian, Inc. 2700 Mitchell Drive Walnut Creek, CA 94598-1675/USA Access Control and Audit Trail Software Operation Manual Varian, Inc. 2002 03-914941-00:3 Table of Contents Introduction... 1 Access Control
Tools and strategies to monitor the ATLAS online computing farm
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Tools and strategies to monitor the ATLAS online computing farm S. Ballestrero 1,2, F. Brasolin 3, G. L. Dârlea 1,4, I. Dumitru 4, D. A. Scannicchio 5, M. S. Twomey
Rcore Embedded Software Platform
Industrial Computing Rcore Embedded Software Platform The high reliability and stability of Moxa s embedded computers give our customers an edge over the competition. Moxa s Rcore embedded software platform
Ensure Continuous Availability and Real-Time Monitoring of your HP NonStop Systems with ESQ Automated Operator
Ensure Continuous Availability and Real-Time Monitoring of your HP NonStop Systems with ESQ Automated Operator Open networks and connectivity give rise to increasingly complex environments and growing
Moxa Device Manager 2.0 User s Guide
First Edition, March 2009 www.moxa.com/product 2009 Moxa Inc. All rights reserved. Reproduction without permission is prohibited. Moxa Device Manager 2.0 User Guide The software described in this manual
webkpi SaaS ETL Connector Installation & Configuration Guide
webkpi SaaS ETL Connector Installation & Configuration Guide SaaS ETL Version 2.5.0.12 Version 1.6 September 2013 webkpi SaaS ETL Connector Version 2.5.0.12 V 1.6 Page 1 Table of Contents Table of Contents
EBERSPÄCHER ELECTRONICS automotive bus systems. solutions for network analysis
EBERSPÄCHER ELECTRONICS automotive bus systems solutions for network analysis DRIVING THE MOBILITY OF TOMORROW 2 AUTOmotive bus systems System Overview Analyzing Networks in all Development Phases Control
www.aten.com Application Guide Matrix KVM Solution for Data Centers
www.aten.com Matrix KVM Solution for Data Centers Data Center Management Concurrent with developments in Information Technology and Network Infrastructure, more and more computers are being utilized for
SANbox Manager Release Notes Version 1.03.28 50208-06 Rev A
SANbox Manager Release Notes Version 1.03.28 50208-06 Rev A This software is licensed by QLogic for use by its customers only. Copyright (c) 2001 QLogic Corporation All rights reserved Version 1.03.28
