Re: Implementing a monitoring system with django.

2012-12-17 Thread Sergiy Khohlov
"Pro python system administration" by Rytis Sileika published by Apress covers this area. Jinja2 is used for generating templates. You also can use django for this task. Many thanks, Serge +380 636150445 skype: skhohlov 2012/12/17 Ryan Nowakowski : > Checkout Graphite[1]. It seems like i

Re: Implementing a monitoring system with django.

2012-12-16 Thread Ryan Nowakowski
Checkout Graphite[1]. It seems like it would handle your graphing requirement. 1. http://graphite.wikidot.com/start On Mon, Dec 10, 2012 at 08:41:14PM +0100, Marc Aymerich wrote: > Hi, > I'm considering to implement a simple monitorization system that > basically gathers some data from a set of

Re: Implementing a monitoring system with django.

2012-12-14 Thread Marc Aymerich
On Wed, Dec 12, 2012 at 12:23 PM, Tom Evans wrote: > On Mon, Dec 10, 2012 at 7:41 PM, Marc Aymerich wrote: >> Hi, >> I'm considering to implement a simple monitorization system that >> basically gathers some data from a set of nodes (<1000 nodes). The >> gathered data should be stored in order to

Re: Implementing a monitoring system with django.

2012-12-13 Thread Marc Aymerich
On Wed, Dec 12, 2012 at 7:59 AM, ephan wrote: > Depending on what you need for the graphs,have a look at flot,jqplot or > rapheal.js(heavy).There is also high charts althought there are some > licensing issues you may want to avoid. > > If you get stuck with the charts,let me know..am running some

Re: Implementing a monitoring system with django.

2012-12-13 Thread mulianto
hi what are you monitoring in the 1000 nodes, web server load, db load , network interface stats, cpu load, memory usage, or specific thing. i would use centralized monitoring that collect from all the server in centralized location, with low overhead in periodical time like 10 seconds and s

Re: Implementing a monitoring system with django.

2012-12-12 Thread Ken Hill
I've been considering a very similar Django to help simplify some of my daily server system admin tasks (e.g. monitor and trend CPU uase, memory usage, disk space, etc.). I'd like to try CouchDB to store the data with a Django UI to make the app usable to non-technical users. On Monday, Decembe

Re: Implementing a monitoring system with django.

2012-12-12 Thread Tom Evans
On Mon, Dec 10, 2012 at 7:41 PM, Marc Aymerich wrote: > Hi, > I'm considering to implement a simple monitorization system that > basically gathers some data from a set of nodes (<1000 nodes). The > gathered data should be stored in order to let users perform some > queries and maybe also generate

Re: Implementing a monitoring system with django.

2012-12-11 Thread ephan
Depending on what you need for the graphs,have a look at flot,jqplot or rapheal.js(heavy).There is also high charts althought there are some licensing issues you may want to avoid. If you get stuck with the charts,let me know..am running some. On Tuesday, December 11, 2012 11:09:06 PM UTC+2, Ma

Re: Implementing a monitoring system with django.

2012-12-11 Thread Marc Aymerich
On Tue, Dec 11, 2012 at 4:32 PM, Bill Freeman wrote: > > > On Mon, Dec 10, 2012 at 2:41 PM, Marc Aymerich wrote: >> >> Hi, >> I'm considering to implement a simple monitorization system that >> basically gathers some data from a set of nodes (<1000 nodes). The >> gathered data should be stored in

Re: Implementing a monitoring system with django.

2012-12-11 Thread Bill Freeman
On Mon, Dec 10, 2012 at 2:41 PM, Marc Aymerich wrote: > Hi, > I'm considering to implement a simple monitorization system that > basically gathers some data from a set of nodes (<1000 nodes). The > gathered data should be stored in order to let users perform some > queries and maybe also generate

Implementing a monitoring system with django.

2012-12-10 Thread Marc Aymerich
Hi, I'm considering to implement a simple monitorization system that basically gathers some data from a set of nodes (<1000 nodes). The gathered data should be stored in order to let users perform some queries and maybe also generate some graphs. I'm looking for advice in what components are best