Sponsored Content
Operating Systems Solaris Monitoring and Reporting Solutions Post 302425384 by pgarousi on Thursday 27th of May 2010 05:40:48 PM
Old 05-27-2010
Take a look at Halcyon's Neuron Agent. It monitors the health and performance of Solaris Zones and LDoms, and can be installed and running in less than 5 minutes.

Screenshots and free evaluation download can be found here:
Halcyon | Neuron Agent Screenshots

You can also find more info about the product here:

Monitoring and Reporting Solutions


Do you have a large Solaris environment?

Pegah
 

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Reporting

I have to do a lot of reporting for the company that I work for and was wondering if anyone had suggestions for a way to create professional looking reports. I currently use Filepro so much that I rarely see the shell. Any help is appreciated. (3 Replies)
Discussion started by: Mike11
3 Replies

2. Linux

VPN Solutions

Hello Friends I want to know about VPN Solutions under Linux Please help me :confused: (6 Replies)
Discussion started by: jaibw
6 Replies

3. Filesystems, Disks and Memory

Backup solutions

Hi guys, We are looking to replace our current backup solution - we currently backup our Progress databases (on SCO Unixware7) to DLT7000 tapes but that being old technology the failure rate is increasing and we need to replace them with a more reliable solution. We've been looking at SDLT... (2 Replies)
Discussion started by: Seraphic
2 Replies

4. SCO

Backup solutions

Hi guys, We are looking to replace our current backup solution - we currently backup our Progress databases (on SCO) to DLT7000 tapes but that being old technology the failure rate is increasing and we need to replace them with a more reliable solution. We've been looking at SDLT drives/tapes... (2 Replies)
Discussion started by: Seraphic
2 Replies

5. Filesystems, Disks and Memory

Storage Monitoring/Reporting?

Hi. How do you guys, monitor/report your Storage environment? I have people (don't we all? ) that like to have monthly reports on space (raw/assigned/available), ports available/used, switches and the such. Do you use anything special? Or are you like me, a nice big Excel spreadsheet? How... (1 Reply)
Discussion started by: Stephan
1 Replies
merge_fonts(3alleg4)						  Allegro manual					      merge_fonts(3alleg4)

NAME
merge_fonts - Merges two fonts into one font. Allegro game programming library. SYNOPSIS
#include <allegro.h> FONT *merge_fonts(FONT *f1, FONT *f2) DESCRIPTION
This function merges the character ranges from two fonts and returns a new font containing all characters in the old fonts. In general, you cannot merge fonts of different types (eg, TrueType fonts and bitmapped fonts), but as a special case, this function can promote a mono- chrome bitmapped font to a color font and merge those. Example: FONT *myfont; FONT *myfancy_font; FONT *lower_range; FONT *upper_range; FONT *capitals; FONT *combined_font; FONT *tempfont; ... /* Create a font that contains the capitals from */ /* the fancy font but other characters from myfont */ lower_range = extract_font_range(myfont, -1, 'A'-1); upper_range = extract_font_range(myfont, 'Z'+1, -1); capitals = extract_font_range(myfancy_font, 'A', 'Z'); tempfont = merge_fonts(lower_range, capitals); combined_font = merge_fonts(tempfont, upper_range); /* Clean up temporary fonts */ destroy_font(lower_range); destroy_font(upper_range); destroy_font(capitals); destroy_font(tempfont); RETURN VALUE
Returns a pointer to the new font or NULL on error. Remember that you are responsible for destroying the font when you are finished with it to avoid memory leaks. SEE ALSO
extract_font_range(3alleg4), is_trans_font(3alleg4), is_color_font(3alleg4), is_mono_font(3alleg4), exfont(3alleg4) Allegro version 4.4.2 merge_fonts(3alleg4)
All times are GMT -4. The time now is 08:40 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy