What is Performance data nad Event data?

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat What is Performance data nad Event data?
# 1  
Old 07-22-2011
Question What is Performance data nad Event data?

What is Performance data and Event data?

I want to write own discription about a data flow diagram but I don't understand exact meaning of following words.

1.Performance data
2.Event data

I googled it but still no luck.

Please guide me.
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Programming

Event driven programming / epoll / typedef union / session data array

Sorry for the “word salad” subject, but I wanted to cast a wide net for help. I've created an IP (Internet Protocol) server which serves HTTP, SMTP, and FTP requests. As you probably know, they all require creating a socket, listening on it, accepting connections, and then having a short... (3 Replies)
Discussion started by: John S.
3 Replies

2. Infrastructure Monitoring

Performance data via HPOV tool

Hi, We have HP OpenView tool to extract utilization report and extract them in csv. Every month I pull 30 days CPU and Memory utilization, every 5 minutes via GUI and export it in csv (excel) format. It is always a time consuming process to run it on a set of servers and then pick next set because... (0 Replies)
Discussion started by: solaris_1977
0 Replies

3. Red Hat

What is the best tools for performance data gathering and analysis?

Dear Guru, IHAC who complaint that his CentOS is getting performance issue. I have to help him out of there. Could you please tell me which tools is better to gathering the whole system performance data? -- CPU/Memory/IO(disk & Network)/swap I would like the tools could be... (6 Replies)
Discussion started by: devyfong
6 Replies

4. IP Networking

Convert txt performance data into OID

Hey everyone, I want to ask you some questions, I have some network performance data in txt formatted. I want to change it to OID format, so it could be collected with snmptrap. How this could be done?? Thank you so much (0 Replies)
Discussion started by: franzramadhan
0 Replies

5. Shell Programming and Scripting

Extract data based on match against one column data from a long list data

My input file: data_5 Ali 422 2.00E-45 102/253 140/253 24 data_3 Abu 202 60.00E-45 12/23 140/23 28 data_1 Ahmad 256 7.00E-45 120/235 140/235 22 data_4 Aman 365 8.00E-45 15/65 140/65 20 data_10 Jones 869 9.00E-45 65/253 140/253 18... (12 Replies)
Discussion started by: patrick87
12 Replies

6. Shell Programming and Scripting

Transpose data from columns to lines for each event

Hi everyone, Maybe somebody could help me with this. I have a text file showing in 2 columns registers of services used by customers in a comercial place. The register for the use of any particular service begins with "EVENT" in column 1. I would like to transpose the info for each... (20 Replies)
Discussion started by: cgkmal
20 Replies

7. Shell Programming and Scripting

Performance data, *nix

Hello, I want to write a tool which fetches performance data from remote machines. Sounds easy? well there are some requirements: No extra "client" software should be needed on the hosts, remote shell access (e.g. SSH) should be enough. -> I'm limited to a small amount of tools. I want CPU,... (8 Replies)
Discussion started by: Eliteforce
8 Replies
Login or Register to Ask a Question
Sys::Virt::Event(3)					User Contributed Perl Documentation				       Sys::Virt::Event(3)

NAME
Sys::Virt::Event - An event loop contract DESCRIPTION
The "Sys::Virt::Event" module represents the contract for integrating libvirt with an event loop. This package is abstract and intended to be subclassed to provide an actual implementation. METHODS
register_default() Register the default libvirt event loop implementation run_default() Run a single iteration of the default event loop implementation register($impl) Register an event loop implementation. The implementation should be a instance of a sub-class of the "Sys::Virt::Event" package. $self->_run_handle_callback($watch, $fd, $events, $cb, $opaque) A helper method for executing a callback in response to one of more $events on the file handle $fd. The $watch number is the unique idenifier associated with the file descriptor. The $cb and $opaque parameters are the callback and data registered for the handle. $self->_run_timeout_callback($timer, $cb, $opaque) A helper method for executing a callback in response to the expiry of a timeout identified by $timer. The $cb and $opaque parameters are the callback and data registered for the timeout. $self->_free_callback_opaque($ff, $opaque) A helper method for freeing the data associated with a callback. The $ff and $opaque parameters are the callback and data registered for the handle/timeout. my $watch = Sys::Virt::Event::add_handle($fd, $events, $coderef) Adds a watch on the file descriptor $fd for the events $events which is a mask of the FILE HANDLE EVENTS constants listed later. The $coderef parameter is a subroutine to invoke when an event is triggered. The subroutine will be passed three parameters, the watch identifier, the file descriptor and the event mask. This method returns the watch identifier which can be used to update or remove the watch Sys::Virt::Event::update_handle($watch, $events) Update the event mask for the file descriptor watch $watch to use the events $events. Sys::Virt::Event::remove_handle($watch) Remove the event mask for the file descriptor watch $watch. my $watch = Sys::Virt::Event::add_timeout($frequency, $coderef) Adds a timeout to trigger with $frequency milliseconds interval. The $coderef parameter is a subroutine to invoke when an event is triggered. The subroutine will be passed one parameter, the timer identifier. This method returns the watch identifier which can be used to update or remove the watch Sys::Virt::Event::update_timeout($timer, $frequency) Update the timeout $timer to have the frequency $frequency milliseconds. Sys::Virt::Event::remove_timeout($timer) Remove the timeout $timer CONSTANTS
FILE HANDLE EVENTS When integrating with an event loop the following constants define the file descriptor events Sys::Virt::Event::HANDLE_READABLE The file descriptor has data available for read without blocking Sys::Virt::Event::HANDLE_WRITABLE The file descriptor has ability to write data without blocking Sys::Virt::Event::HANDLE_ERROR An error occurred on the file descriptor Sys::Virt::Event::HANDLE_HANGUP The remote end of the file descriptor closed AUTHORS
Daniel P. Berrange <berrange@redhat.com> COPYRIGHT
Copyright (C) 2006-2009 Red Hat Copyright (C) 2006-2009 Daniel P. Berrange LICENSE
This program is free software; you can redistribute it and/or modify it under the terms of either the GNU General Public License as published by the Free Software Foundation (either version 2 of the License, or at your option any later version), or, the Artistic License, as specified in the Perl README file. SEE ALSO
Sys::Virt, "http://libvirt.org" perl v5.16.3 2013-07-30 Sys::Virt::Event(3)