|
2010-01-27
, 11:27
|
Posts: 68 |
Thanked: 36 times |
Joined on Dec 2009
|
#32
|
|
2010-01-29
, 15:57
|
Posts: 16 |
Thanked: 169 times |
Joined on Dec 2009
@ Chicago, IL
|
#33
|
|
2010-01-29
, 16:59
|
Posts: 68 |
Thanked: 36 times |
Joined on Dec 2009
|
#34
|
Maegios supports scrolling. So those issues that you describe with the text being truncated are not present on my installation.
DISK WARNING - free space: /root 202144 MB (10% inode=-) APT OK: 0 packages available for upgrade (0 critical updates).
DISK WARNING APT OK
|
2010-02-02
, 03:15
|
|
Posts: 14 |
Thanked: 10 times |
Joined on Jan 2010
@ Italy
|
#35
|
|
2010-02-02
, 15:23
|
Posts: 3,841 |
Thanked: 1,079 times |
Joined on Nov 2006
|
#36
|
|
2010-02-02
, 15:24
|
|
Posts: 14 |
Thanked: 10 times |
Joined on Jan 2010
@ Italy
|
#37
|
Type "help", "copyright", "credits" or "license" for more information. >>> import re >>> p = re.compile('(http|https)?:?\/?\/?([a-z]*\.?[a-z]*\.[a-z]*)\/?(.*)') >>> m = re.search(p,'http://www.nagios.org') >>> m.group(1) 'http' >>> m.group(2) 'www.nagios.org' >>> m.group(3) '' >>> m = re.search(p,'https://www.nagios.org/foo') >>> m.group(1) 'https' >>> m.group(2) 'www.nagios.org' >>> m.group(3) 'foo' >>> m = re.search(p,'nagios.org/foo') >>> m.group(1) >>> m.group(2) 'nagios.org' >>> m.group(3) 'foo' >>>
The Following User Says Thank You to Ralph For This Useful Post: | ||
|
2010-02-02
, 15:42
|
|
Posts: 14 |
Thanked: 10 times |
Joined on Jan 2010
@ Italy
|
#38
|
The correct URL is always with a trailing slash, unless the URL is to a specific file.
I.e. http://nagios.domain.it/ is correct, http://nagios.domain.it is not. The latter will generate a redirection event, i.e. two lookups where only one is needed in the first version. This applies to URLs in general, e.g. when using browsers or anything.
|
2010-02-22
, 14:20
|
Posts: 1 |
Thanked: 0 times |
Joined on Feb 2010
|
#39
|
|
2010-05-31
, 15:41
|
Posts: 25 |
Thanked: 27 times |
Joined on Oct 2009
@ Amsterdam
|
#40
|
Thanks for the reply. Maegios supports scrolling on my n900 too, but the text seems to be truncated.
Here is the text of of two services as I see them in the nagios web interface:
In maegios, I just seeCode:DISK WARNING - free space: /root 202144 MB (10% inode=-) APT OK: 0 packages available for upgrade (0 critical updates).
The message seems to be truncated at the first ":" or "-" character.Code:DISK WARNING APT OK
You've just made my day! The icons are very nice too...