/usr/share/cricket/util/dump-targets is in cricket 1.0.5-21.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | #!/usr/bin/perl -w
# -*- perl -*-
# Cricket: a configuration, polling and data display wrapper for RRD files
#
# Copyright (C) 1998 Jeff R. Allen and WebTV Networks, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
BEGIN {
require '/etc/cricket/cricket-conf.pl';
}
use lib "$Common::global::gInstallRoot/lib";
use Common::Options;
use Common::Log;
use Common::global;
use ConfigTree::Cache;
Common::Options::commonOptions();
Common::Log::setLevel('debug');
$Common::global::gCT = new ConfigTree::Cache;
$gCT = $Common::global::gCT;
$gCT->Base($Common::global::gConfigRoot);
$gCT->Warn(\&Warn);
if (! $gCT->init()) {
Die("Failed to open compiled config tree from " .
"$Common::global::gConfigRoot/config.db: $!");
}
# if they gave us no subtrees to focus on, use the root of the config tree
if ($#ARGV+1 == 0) {
push @ARGV, '/';
}
# foreach subtree to do
# find the base node of that subtree
# foreach leaf node of this subtree
# process it
my($subtree);
foreach $subtree (@ARGV) {
if ($gCT->nodeExists($subtree)) {
$gCT->visitLeafs($subtree, \&myHandleTarget);
} else {
Warn("Unknown subtree $subtree.");
}
}
exit;
sub myHandleTarget {
my($name) = @_;
my($tpath, $tname) = ($name =~ /^(.*)\/(.*)$/);
my($target) = $gCT->configHash($name, 'target', undef, 1);
print "Target dictionary for $tname\n";
my($k, $v);
foreach $k (sort (keys(%{$target}))) {
next if ($k eq "tname");
$v = $target->{$k};
print "\t$k = $v\n";
}
print "\n";
}
|