ZABBIX 1.5.4 (Development branch)


 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Infrastructure Monitoring ZABBIX 1.5.4 (Development branch)
# 1  
Old 08-19-2008
ZABBIX 1.5.4 (Development branch)

ImageZABBIX is an enterprise-class distributed monitoring solution designed to monitor and track performance and availability of network servers, devices, and other IT resources. It supports distributed and Web-based monitoring, auto-discovery, real-time monitoring, SLA assurance, trending, and more.License: GNU General Public License (GPL)Changes:
This release introduces a significant performanceimprovement for ZABBIX server, a mass update fortriggers, an improved permission schema for thefront-end, and other pieces of functionality andfixes.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Infrastructure Monitoring

A Review of Zabbix - Zabbix Rules! (Part 2)

Tim Bass 03-23-2009 03:45 PM Source... (0 Replies)
Discussion started by: Linux Bot
0 Replies

2. Infrastructure Monitoring

A Review of Zabbix - Zabbix Rules! (Part 1)

Tim Bass 03-20-2009 07:02 AM Source... (0 Replies)
Discussion started by: Linux Bot
0 Replies

3. Infrastructure Monitoring

ZABBIX 1.6.1 (Stable branch)

http://c.fsdn.com/fm/screenshots/13929_thumb.png ZABBIX is an enterprise-class distributed monitoring solution designed to monitor and track performance and availability of network servers, devices, and other IT resources. It supports distributed and Web-based monitoring, auto-discovery, real-time... (0 Replies)
Discussion started by: Linux Bot
0 Replies

4. Infrastructure Monitoring

ZABBIX 1.6 (Stable branch)

http://c.fsdn.com/fm/screenshots/13929_thumb.png ZABBIX is an enterprise-class distributed monitoring solution designed to monitor and track performance and availability of network servers, devices, and other IT resources. It supports distributed and Web-based monitoring, auto-discovery, real-time... (0 Replies)
Discussion started by: Linux Bot
0 Replies

5. Infrastructure Monitoring

ZABBIX 1.4.6 (Stable branch)

http://c.fsdn.com/fm/screenshots/13929_thumb.png ZABBIX is an enterprise-class distributed monitoring solution designed to monitor and track performance and availability of network servers, devices, and other IT resources. It supports distributed and Web-based monitoring, auto-discovery, real-time... (0 Replies)
Discussion started by: Linux Bot
0 Replies

6. Infrastructure Monitoring

ZABBIX 1.5.2 (Development branch)

http://images.freshmeat.net/screenshots/13929_thumb.png ZABBIX is an enterprise-class distributed monitoring solution designed to monitor and track performance and availability of network servers, devices, and other IT resources. It supports distributed and Web-based monitoring, auto-discovery,... (0 Replies)
Discussion started by: Linux Bot
0 Replies

7. Infrastructure Monitoring

ZABBIX 1.5.1 (Development branch)

http://images.freshmeat.net/screenshots/13929_thumb.png ZABBIX is an enterprise-class distributed monitoring solution designed to monitor and track performance and availability of network servers, devices, and other IT resources. It supports distributed and Web-based monitoring, auto-discovery,... (0 Replies)
Discussion started by: Linux Bot
0 Replies

8. Infrastructure Monitoring

ZABBIX 1.4.5 (Stable branch)

http://images.freshmeat.net/screenshots/13929_thumb.png ZABBIX is an enterprise-class distributed monitoring solution designed to monitor and track performance and availability of network servers, devices, and other IT resources. It supports distributed and Web-based monitoring, auto-discovery,... (0 Replies)
Discussion started by: Linux Bot
0 Replies

9. Infrastructure Monitoring

ZABBIX 1.5 (Development branch)

http://images.freshmeat.net/screenshots/13929_thumb.png ZABBIX is an enterprise-class distributed monitoring solution designed to monitor and track performance and availability of network servers, devices, and other IT resources. It supports distributed and Web-based monitoring, auto-discovery,... (0 Replies)
Discussion started by: Linux Bot
0 Replies
Login or Register to Ask a Question
branch(2rheolef)						    rheolef-6.1 						  branch(2rheolef)

NAME
branch - a parameter-dependent sequence of field DESCRIPTION
Stores a field sequence together with its associated parameter value: a branch variable represents a pair (t,uh(t)) for a specific value of the parameter t. Applications concern time-dependent problems and continuation methods. This class is convenient for file inputs/outputs and building graphical animations. EXAMPLES
Coming soon... LIMITATIONS
This class is under development. The branch class store pointers on field class without reference counting. Thus, branch automatic variables cannot be returned by func- tions. branch variable are limited to local variables. IMPLEMENTATION
template <class T, class M = rheo_default_memory_model> class branch_basic : public std::vector<std::pair<std::string,field_basic<T,M> > > { public : // typedefs: typedef std::vector<std::pair<std::string,field_basic<T,M> > > base; typedef typename base::size_type size_type; // allocators: branch_basic (); branch_basic (const std::string& parameter_name, const std::string& u0); branch_basic (const std::string& parameter_name, const std::string& u0, const std::string& u1); ~branch_basic(); // accessors: const T& parameter () const; const std::string& parameter_name () const; size_type n_value () const; size_type n_field () const; // modifiers: void set_parameter (const T& value); void set_range (const std::pair<T,T>& u_range); // input/output: // get/set current value __obranch<T,M> operator() (const T& t, const field_basic<T,M>& u0); __obranch<T,M> operator() (const T& t, const field_basic<T,M>& u0, const field_basic<T,M>& u1); __iobranch<T,M> operator() (T& t, field_basic<T,M>& u0); __iobranch<T,M> operator() (T& t, field_basic<T,M>& u0, field_basic<T,M>& u1); __branch_header<T,M> header (); __const_branch_header<T,M> header () const; __const_branch_finalize<T,M> finalize () const; rheolef-6.1 rheolef-6.1 branch(2rheolef)