![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
# $summary is a SyslogScan::Summary object
# default is to organize by internet host my $byGroup = new SyslogScan::ByGroup($summary); print $byGroup -> dump();
# group by whether users use 'jupiter' or 'satellife' as # their machine name, and discard users who use neither
my $pointerToGroupingRoutine = sub { my $address = shift;
return 'jupiter' if $address =~ /jupiter.healthnet.org$/; return 'satellife' if $address =~ /satellife.healthnet.org$/;
# ignore all others return undef; }
my $groupByMachine = new SyslogScan::ByGroup($summary, $pointerToGroupingRoutine); print $groupByMachine -> dump();
# Extract a SyslogScan::Group object my $jupiterGroup = $$groupByMachine{jupiter}; print $jupiterGroup -> dump();
# Extract a SyslogScan::Summary object my $summaryOfJupiter = $jupiterGroup{byAddress}; print $summaryOfJupiter -> dump(); # Create a summary by group, rather than a summary by address my $summaryByMachine = $groupByMachine -> createSummary();
A SyslogScan::Group is a hash table with two members: 'byAddress', which is a SyslogScan::Summary of each address which is a member of the Group, and 'groupUsage', which is a SyslogScan::Usage object containing the total usage of the group.
This code is Copyright (C) SatelLife, Inc. 1996. All rights reserved. This code is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
In no event shall SatelLife be liable to any party for direct, indirect, special, incidental, or consequential damages arising out of the use of this software and its documentation (including, but not limited to, lost profits) even if the authors have been advised of the possibility of such damage.
$CommentsMailTo = "perl5@dcs.ed.ac.uk"; include("../syssies_footer.inc");?>