/usr/bin/ganglia2pcp is in pcp-import-ganglia2pcp 3.10.8build1.
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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 | #!/usr/bin/perl
#
# Copyright (c) 2015 Martins Innus. All Rights Reserved.
#
# 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.
#
use strict;
use warnings;
use Getopt::Std;
use Date::Parse;
use Date::Format;
use RRDs;
use PCP::LogImport;
use POSIX qw( floor );
use File::Basename qw( fileparse );
use vars qw( %rrd_pcp_mapping );
# Hash of hashes.
# First index is time
# Next is metric (rrd filename)
my %rrd_stats;
our $deltaT;
my $zone = ""; # default to local timezone unless -Z on command line
# Conversion routines for ganglia -> pcp
# Mostly units conversion
# Params are ganglia_metric_name, value, current time
# Generic convert counter routine
# Ganglia presents already averaged values, unaverage them based on accumulated count
# The averaging doesn't seem to be done over the sampling interval , so accumulate any leftovers
# to use next time, and round down for the returned value.
sub convert_counter {
my ($base_metric, $inval, $nowtime) = @_;
# Convert based on step size. If values can come and go, this should be more accurate.
my $step = $rrd_pcp_mapping{$base_metric}{"stepsize"};
if( !$step ){
die "Stepsize not defined for $rrd_pcp_mapping{$base_metric}{'name'}\n";
}
my $nowval = 0;
if( $rrd_pcp_mapping{$base_metric}{"prev_time"} != -1 ){
my $deltaT = $nowtime - $rrd_pcp_mapping{$base_metric}{"prev_time"};
if ( $deltaT != $step ){
# Have not seen enough sample data to know if this occurs regularly
# May occur if a metric is not recorded for a timestep
warn "Step/deltaT mismatch: $step/$deltaT for $rrd_pcp_mapping{$base_metric}{'name'} at $nowtime\n"
}
$nowval = ($inval * $step) + $rrd_pcp_mapping{$base_metric}{"curr_total"};
}
else {
$nowval = ($inval * $step);
}
$rrd_pcp_mapping{$base_metric}{"curr_total"} = $nowval;
$rrd_pcp_mapping{$base_metric}{"prev_time"} = $nowtime;
return floor($nowval);
}
sub convert_cpu {
my ($base_metric, $inval, $nowtime) = @_;
my $step = $rrd_pcp_mapping{$base_metric}{"stepsize"};
if( !$step ){
die "Stepsize not defined for $rrd_pcp_mapping{$base_metric}{'name'}\n";
}
my $nowmillisec = 0;
# convert from % (out of 100) of sampling rate (default 15 sec) to total milliseconds counter
if( $rrd_pcp_mapping{$base_metric}{"prev_time"} != -1 ){
my $deltaT = $nowtime - $rrd_pcp_mapping{$base_metric}{"prev_time"};
if ( $deltaT != $step ){
warn "Step/deltaT mismatch: $step/$deltaT for $rrd_pcp_mapping{$base_metric}{'name'} at $nowtime\n"
}
$nowmillisec = $inval * $step * 1000.0 / 100 + $rrd_pcp_mapping{$base_metric}{"curr_total"};
}
else {
$nowmillisec = $inval * $step * 1000.0 / 100;
}
$rrd_pcp_mapping{$base_metric}{"curr_total"} = $nowmillisec;
$rrd_pcp_mapping{$base_metric}{"prev_time"} = $nowtime;
return floor($nowmillisec);
}
sub convert_mem_total {
my ($base_metric, $inval, $nowtime) = @_;
#convert from KB to MB
return floor($inval/1000.0);
}
sub convert_mem {
my ($base_metric, $inval, $nowtime) = @_;
# No conversion, ganglia just reports fractions of KB
return floor($inval);
}
sub convert_swap {
my ($base_metric, $inval, $nowtime) = @_;
#convert from KB to B
return floor($inval*1000);
}
sub convert_boottime {
my ($base_metric, $inval, $nowtime) = @_;
# From boottime to uptime
return ($nowtime - $inval);
}
# Mapping of ganglia (rrd) metrics to pcp metrics.
#
# Undefined metrics found will be skipped
#
# Ganglia metrics are already rate converted.
#
# Need to guess at the metric metadata since there is no guarantee we are processing the logs
# on the host from which they were collected. These values are from x86_64 linux.
#
# Could come up with different mappings based on source host if necessary.
our %rrd_pcp_mapping = (
"boottime.rrd" => { "name" => "kernel.all.uptime",
"pmid" => pmiID(60,26,0),
"type" => PM_TYPE_U32,
"indom" => PM_INDOM_NULL,
"sem" => PM_SEM_INSTANT,
"units" => pmiUnits(0,1,0,0,PM_TIME_SEC,0),
"conv_fcn" => \&convert_boottime,
},
# Will have a dummy "total" instance
# In ganglia, network metrics are all non-loopback interfaces combined
"bytes_in.rrd" => { "name" => "network.interface.in.bytes",
"pmid" => pmiID(60,3,0),
"type" => PM_TYPE_U64,
"indom" => pmiInDom(60,3),
"sem" => PM_SEM_COUNTER,
"units" => pmiUnits(1,0,0,PM_SPACE_BYTE,0,0),
"inst" => 1000,
"iname" => "total",
"curr_total" => 0,
"prev_time" => -1,
"conv_fcn" => \&convert_counter,
},
# Will have a dummy "total" instance
"bytes_out.rrd" => { "name" => "network.interface.out.bytes",
"pmid" => pmiID(60,3,8),
"type" => PM_TYPE_U64,
"indom" => pmiInDom(60,3),
"sem" => PM_SEM_COUNTER,
"units" => pmiUnits(1,0,0,PM_SPACE_BYTE,0,0),
"inst" => 1000,
"iname" => "total",
"curr_total" => 0,
"prev_time" => -1,
"conv_fcn" => \&convert_counter,
},
# These will be converted to millisec from %
"cpu_idle.rrd" => { "name" => "kernel.all.cpu.idle",
"pmid" => pmiID(60,0,23),
"type" => PM_TYPE_U64,
"indom" => PM_INDOM_NULL,
"sem" => PM_SEM_COUNTER,
"units" => pmiUnits(0,1,0,0,PM_TIME_MSEC,0),
"curr_total" => 0,
"prev_time" => -1,
"conv_fcn" => \&convert_cpu,
},
"cpu_nice.rrd" => { "name" => "kernel.all.cpu.nice",
"pmid" => pmiID(60,0,21),
"type" => PM_TYPE_U64,
"indom" => PM_INDOM_NULL,
"sem" => PM_SEM_COUNTER,
"units" => pmiUnits(0,1,0,0,PM_TIME_MSEC,0),
"curr_total" => 0,
"prev_time" => -1,
"conv_fcn" => \&convert_cpu,
},
"cpu_system.rrd" => { "name" => "kernel.all.cpu.sys",
"pmid" => pmiID(60,0,22),
"type" => PM_TYPE_U64,
"indom" => PM_INDOM_NULL,
"sem" => PM_SEM_COUNTER,
"units" => pmiUnits(0,1,0,0,PM_TIME_MSEC,0),
"curr_total" => 0,
"prev_time" => -1,
"conv_fcn" => \&convert_cpu,
},
"cpu_user.rrd" => { "name" => "kernel.all.cpu.user",
"pmid" => pmiID(60,0,20),
"type" => PM_TYPE_U64,
"indom" => PM_INDOM_NULL,
"sem" => PM_SEM_COUNTER,
"units" => pmiUnits(0,1,0,0,PM_TIME_MSEC,0),
"curr_total" => 0,
"prev_time" => -1,
"conv_fcn" => \&convert_cpu,
},
"cpu_wio.rrd" => { "name" => "kernel.all.cpu.wait.total",
"pmid" => pmiID(60,0,35),
"type" => PM_TYPE_U64,
"indom" => PM_INDOM_NULL,
"sem" => PM_SEM_COUNTER,
"units" => pmiUnits(0,1,0,0,PM_TIME_MSEC,0),
"curr_total" => 0,
"prev_time" => -1,
"conv_fcn" => \&convert_cpu,
},
"cpu_num.rrd" => { "name" => "hinv.ncpu",
"pmid" => pmiID(60,0,32),
"type" => PM_TYPE_U32,
"indom" => PM_INDOM_NULL,
"sem" => PM_SEM_DISCRETE,
"units" => pmiUnits(0,0,0,0,0,0),
},
# Need to deal with indoms here in a different way
# Even on multi cpu machines, ganglia reports only one value
"cpu_speed.rrd" => { "name" => "hinv.cpu.clock",
"pmid" => pmiID(60,18,0),
"type" => PM_TYPE_FLOAT,
"indom" => pmiInDom(60,0),
"sem" => PM_SEM_DISCRETE,
"units" => pmiUnits(0,0,0,0,0,0),
"inst_pattern" => "%d",
"iname_pattern" => "cpu%d",
"inst_src" => "cpu_num.rrd",
"inst_constructed" => -1,
},
# Instance parameter denotes that the mapping is to an instance
# ie, 3 rrd files get mapped to 3 instances of 1 pcp metric
"load_fifteen.rrd" => { "name" => "kernel.all.load",
"pmid" => pmiID(60,2,0),
"type" => PM_TYPE_FLOAT,
"indom" => pmiInDom(60,2),
"sem" => PM_SEM_INSTANT,
"units" => pmiUnits(0,0,0,0,0,0),
"inst" => 15,
"iname" => "15 minute",
},
"load_five.rrd" => { "name" => "kernel.all.load",
"pmid" => pmiID(60,2,0),
"type" => PM_TYPE_FLOAT,
"indom" => pmiInDom(60,2),
"sem" => PM_SEM_INSTANT,
"units" => pmiUnits(0,0,0,0,0,0),
"inst" => 5,
"iname" => "5 minute",
},
"load_one.rrd" => { "name" => "kernel.all.load",
"pmid" => pmiID(60,2,0),
"type" => PM_TYPE_FLOAT,
"indom" => pmiInDom(60,2),
"sem" => PM_SEM_INSTANT,
"units" => pmiUnits(0,0,0,0,0,0),
"inst" => 1,
"iname" => "1 minute",
},
# Already in KB
"mem_buffers.rrd" => { "name" => "mem.util.bufmem",
"pmid" => pmiID(60,1,4),
"type" => PM_TYPE_U64,
"indom" => PM_INDOM_NULL,
"sem" => PM_SEM_INSTANT,
"units" => pmiUnits(1,0,0,PM_SPACE_KBYTE,0,0),
"conv_fcn" => \&convert_mem,
},
# Already in KB
"mem_cached.rrd" => { "name" => "mem.util.cached",
"pmid" => pmiID(60,1,5),
"type" => PM_TYPE_U64,
"indom" => PM_INDOM_NULL,
"sem" => PM_SEM_INSTANT,
"units" => pmiUnits(1,0,0,PM_SPACE_KBYTE,0,0),,
"conv_fcn" => \&convert_mem,
},
# Already in KB
"mem_free.rrd" => { "name" => "mem.util.free",
"pmid" => pmiID(60,1,2),
"type" => PM_TYPE_U64,
"indom" => PM_INDOM_NULL,
"sem" => PM_SEM_INSTANT,
"units" => pmiUnits(1,0,0,PM_SPACE_KBYTE,0,0),
"conv_fcn" => \&convert_mem,
},
# Converted from KB to MB
"mem_total.rrd" => { "name" => "hinv.physmem",
"pmid" => pmiID(60,1,9),
"type" => PM_TYPE_U32,
"indom" => PM_INDOM_NULL,
"sem" => PM_SEM_DISCRETE,
"units" => pmiUnits(1,0,0,PM_SPACE_MBYTE,0,0),
"conv_fcn" => \&convert_mem_total,
},
# Dummy total instance
"pkts_in.rrd" => { "name" => "network.interface.in.packets",
"pmid" => pmiID(60,3,1),
"type" => PM_TYPE_U64,
"indom" => pmiInDom(60,3),
"sem" => PM_SEM_COUNTER,
"units" => pmiUnits(0,0,1,0,0,PM_COUNT_ONE),
"inst" => 1000,
"iname" => "total",
"curr_total" => 0,
"prev_time" => -1,
"conv_fcn" => \&convert_counter,
},
"pkts_out.rrd" => { "name" => "network.interface.out.packets",
"pmid" => pmiID(60,3,9),
"type" => PM_TYPE_U64,
"indom" => pmiInDom(60,3),
"sem" => PM_SEM_COUNTER,
"units" => pmiUnits(0,0,1,0,0,PM_COUNT_ONE),
"inst" => 1000,
"iname" => "total",
"curr_total" => 0,
"prev_time" => -1,
"conv_fcn" => \&convert_counter,
},
# Is
# "run" = proc.runq.runnable
# and
# "total" = proc.nprocs
# Need to Confirm
#
# "proc_run.rrd" => { "name" => "",
# "pmid" => pmiID(),
# "type" => ,
# "indom" => ,
# "sem" => ,
# "units" => ,
# },
# "proc_total.rrd" => { "name" => "",
# "pmid" => pmiID(),
# "type" => ,
# "indom" => ,
# "sem" => ,
# "units" => ,
# },
"swap_free.rrd" => { "name" => "swap.free",
"pmid" => pmiID(60,1,8),
"type" => PM_TYPE_U64,
"indom" => PM_INDOM_NULL,
"sem" => PM_SEM_INSTANT,
"units" => pmiUnits(1,0,0,PM_SPACE_BYTE,0,0),
"conv_fcn" => \&convert_swap,
},
"swap_total.rrd" => { "name" => "swap.length",
"pmid" => pmiID(60,1,6),
"type" => PM_TYPE_U64,
"indom" => PM_INDOM_NULL,
"sem" => PM_SEM_INSTANT,
"units" => pmiUnits(1,0,0,PM_SPACE_BYTE,0,0),
"conv_fcn" => \&convert_swap,
}
);
my $host = "";
# Store a list of all the metrics we find
my %rrd_found;
my %args;
my $sts = getopt('f:s:e:Z:h:d:', \%args);
if (!defined($sts) || $#ARGV != 0) {
print "Usage: ganglia2pcp [-s start] [-e end] [-f output file name] [-d output file dir ] [-Z timezone] [-h hostname] input_dir \n";
exit(1);
}
# Default is the last 24 hours
# rrdtool takes a variety of formats, but we convert to unix time for simplicity.
my $localtime = time();
my $startsec = $localtime - 24*60*60;
my $starttimearg = "-s $startsec";
my $endtimearg = "-e $localtime";
if (exists($args{s}) ){
my $starttime = $args{s};
$startsec = str2time( $starttime ) or die "Malformed starttime: $starttime";
$starttimearg = "-s " . $startsec;
}
if (exists($args{e})){
my $endtime = $args{e};
$endtimearg = str2time( $endtime ) or die "Malformed endtime: $endtime";
$endtimearg = "-e " . $endtimearg;
}
my $rrd_dir = $ARGV[0];
$rrd_dir =~ s{/\z}{};
opendir(RRD_DIR, $rrd_dir) || die "Can't open directory: $rrd_dir\n";
while(my $rrd_file = readdir(RRD_DIR)){
# Only grab rrd files and only if we have a mapping
# Skipping metrics we don't know how to convert
if( $rrd_file =~ /\w+.rrd/ && exists $rrd_pcp_mapping{$rrd_file} ){
# Debug
my $rrd_file_hash = RRDs::info("$rrd_dir/$rrd_file");
my $ERR=RRDs::error;
die "ERROR in RRDs::info($rrd_dir/$rrd_file) : $ERR\n" if $ERR;
#print "\nOpening: $rrd_dir/$rrd_file\n";
#foreach my $key (keys %$rrd_file_hash){
# my $vall = "undef";
# print "$key = ";
# if( defined $rrd_file_hash->{"$key"} ){
# $vall = $rrd_file_hash->{"$key"};
# }
# print "$vall\n";
#}
$rrd_found{"$rrd_file"} = 1;
# Grab the highest resolution data
# As returned by RRDs::fetch, step is already : step * pdp_per_row
my ($start,$step,$names,$data) = RRDs::fetch("$rrd_dir/$rrd_file", $starttimearg, $endtimearg, "AVERAGE");
# Debug
#print "Start: ", scalar localtime($start), " ($start)\n";
#print "Step size: $step seconds\n";
#print "DS names: ", join (", ", @$names)."\n";
#print "Data points: ", $#$data + 1, "\n";
# Regardless of when the samples are recorded (some timestamps might be missing),
# we need to know the step size to back convert counters
#
# Might be different for each metric
$rrd_pcp_mapping{$rrd_file}{"stepsize"} = $step;
# I don't have any files with multiple metrics per file
# Using the standard mappings above, each "line" should have only one value
for my $line (@$data) {
$start += $step;
for my $val (@$line) {
if( defined $val){ # Last value is almost always NaN
# Add to the hash
$rrd_stats{$start}{"$rrd_file"} = $val;
}
}
}
}
}
my $label_zone = "";
if (exists($args{Z})) {
$zone = $args{Z};
$label_zone = $zone;
# Stolen from iostat2pcp, is this the right thing to do here as well ?
#
# PCP expects a $TZ style timezone in the archive label, so
# we have to make up a PCP-xx:xx timezone ... note this
# involves a sign reversal!
if ($zone =~ /^[-+][0-9][0-9][0-9][0-9]/) {
$label_zone =~ s/^\+/PCP-/;
$label_zone =~ s/^-/PCP+/;
$label_zone =~ s/(..)$/:$1/;
}
elsif ($zone ne "UTC") {
print "rrd2pcp: Warning: unexpected timezone ($zone), reverting to UTC\n";
$zone = "UTC";
$label_zone = "UTC";
}
}
# Set filename to be the standard pmlogger convention, eg 20150210.00.10
my $outfile = time2str("%Y%m%d.%k.%M", $startsec, $zone);
# Current dir by default
my $outdir = ".";
if (exists($args{f})){
$outfile = $args{f};
}
if (exists($args{d})){
$outdir = $args{d};
$outdir =~ s{/\z}{};
}
pmiStart("$outdir/$outfile", 0) >= 0
or die "pmiStart($outfile, 0): " . pmiErrStr(-1) . "\n";
if($label_zone){
#print "Setting TZ to $zone : $label_zone\n";
pmiSetTimezone($label_zone) >= 0
or die "pmiSetTimezone($label_zone): " . pmiErrStr(-1) . "\n";
}
if (exists($args{h})) {
$host = $args{h};
}
else{
# All the ganglia data I have seen is in a directory named after the hostname to be monitored
$host = fileparse($rrd_dir);
}
if ($host){
#print "Setting hostname: $host\n";
pmiSetHostname($host) == 0
or die "pmiSetHostname($host): ". pmiErrStr(-1) . "\n";
}
# Add the metrics we have found based on the directory contents
# Keep track of the metrics added, so we don't duplicate source metrics that map to instances in pcp
my %metrics_added;
# Keep track of instances added, so we only add each instance once
my %instances_added;
foreach my $rrd_metric ( sort {lc $a cmp lc $b} keys %rrd_found ){
# Skip any we have not been configured to convert
# All should be here, since we check above
if( exists $rrd_pcp_mapping{$rrd_metric} ){
# Don't add metrics that are grouped as instances
if( ! $metrics_added{$rrd_pcp_mapping{$rrd_metric}{"name"}}){
pmiAddMetric($rrd_pcp_mapping{$rrd_metric}{"name"},
$rrd_pcp_mapping{$rrd_metric}{"pmid"},
$rrd_pcp_mapping{$rrd_metric}{"type"},
$rrd_pcp_mapping{$rrd_metric}{"indom"},
$rrd_pcp_mapping{$rrd_metric}{"sem"},
$rrd_pcp_mapping{$rrd_metric}{"units"}) == 0
or die "pmiAddMetric(network.interface.in.bytes, ...): " . pmiErrStr(-1) . "\n";
# Keep track of metrics so we don't add more than once if they map to instances
$metrics_added{$rrd_pcp_mapping{$rrd_metric}{"name"}}=1;
}
# Add correct instance domains
if( $rrd_pcp_mapping{$rrd_metric}{"indom"} != PM_INDOM_NULL ){
# Is this an indom that doesn't map 1:1 from ganglia and we need to duplicate values
if( defined $rrd_pcp_mapping{$rrd_metric}{"inst_pattern"} ){
# And we haven't built it already
if( $rrd_pcp_mapping{$rrd_metric}{'inst_constructed'} == -1){
my $indom_src = $rrd_pcp_mapping{$rrd_metric}{"inst_src"};
my $num_inst = 0;
# Get the first time we see the value we need. A bit cumbersome
my $foundit = 0;
foreach my $timestep ( sort {$a<=>$b} keys %rrd_stats ){
if( $foundit ){
last;
}
foreach my $metric ( sort {lc $a cmp lc $b} keys %{$rrd_stats{$timestep}} ){
if( $metric eq $indom_src ){
my $metric_value = $rrd_stats{$timestep}{$metric};
if( defined $metric_value ){
$num_inst = $metric_value;
$foundit = 1;
last;
}
}
}
}
if( !$foundit ){
# Can't really recover since there is no instance
# Maybe, deconfigure ourselves for this metric and log it?
die "Couldn't find indom information for $rrd_metric\n";
}
# Keep track for later
$rrd_pcp_mapping{$rrd_metric}{'inst_constructed'} = $num_inst;
foreach my $iid (0..$num_inst-1){
my $inst_spec = $rrd_pcp_mapping{$rrd_metric}{"inst_pattern"};
my $iname_spec = $rrd_pcp_mapping{$rrd_metric}{"iname_pattern"};
my $inst = sprintf($inst_spec, $iid);
my $iname = sprintf($iname_spec, $iid);
my $indomID;
$indomID = "$rrd_pcp_mapping{$rrd_metric}{'indom'}" . $inst;
#print "Adding constructed inst: $inst $iname for $rrd_pcp_mapping{$rrd_metric}{'name'}\n";
if( ! $instances_added{$indomID} ){
pmiAddInstance($rrd_pcp_mapping{$rrd_metric}{"indom"},
$iname,
$inst) >= 0
or die "pmiAddInstance " . $rrd_pcp_mapping{$rrd_metric}{'name'} . $rrd_pcp_mapping{$rrd_metric}{'iname'} . pmiErrStr(-1) . "\n";
$instances_added{$indomID}=1;
}
}
}
}
else{
# Regular instance mapping
# An identifier that we can store for indom/instance ID
my $indomID;
$indomID = "$rrd_pcp_mapping{$rrd_metric}{'indom'}" . $rrd_pcp_mapping{$rrd_metric}{'inst'};
if( ! $instances_added{$indomID} ){
pmiAddInstance($rrd_pcp_mapping{$rrd_metric}{"indom"},
$rrd_pcp_mapping{$rrd_metric}{"iname"},
$rrd_pcp_mapping{$rrd_metric}{"inst"}) >= 0
or die "pmiAddInstance " . $rrd_pcp_mapping{$rrd_metric}{'name'} . $rrd_pcp_mapping{$rrd_metric}{'iname'} . pmiErrStr(-1) . "\n";
$instances_added{$indomID}=1;
}
}
}
}
else{
warn "$rrd_metric not configured for conversion\n";
}
}
# TODO, get handles instead ??
# Loop through by time
foreach my $timestep ( sort {$a<=>$b} keys %rrd_stats ){
foreach my $metric ( sort {lc $a cmp lc $b} keys %{$rrd_stats{$timestep}} ){
#print "pmiPutValue : " . $rrd_pcp_mapping{$metric}{"name"} . " : " . $metric . " : " . "$rrd_stats{$timestep}{$metric}" . "\n";
my $metric_value = 0;
if( exists $rrd_pcp_mapping{$metric}{"conv_fcn"} ){
$metric_value = $rrd_pcp_mapping{$metric}{"conv_fcn"}->($metric, $rrd_stats{$timestep}{$metric}, $timestep);
}
else{
$metric_value = $rrd_stats{$timestep}{$metric};
}
if( $rrd_pcp_mapping{$metric}{"indom"} == PM_INDOM_NULL){
# No indom
my $sts = pmiPutValue($rrd_pcp_mapping{$metric}{"name"}, "", $metric_value);
if( $sts < 0 ){
die "pmiPutValue failed NULL indom : " . pmiErrStr($sts) . "\n";
}
}
elsif(!defined $rrd_pcp_mapping{$metric}{"inst_pattern"}){
# Regular Indom
my $sts = pmiPutValue($rrd_pcp_mapping{$metric}{"name"}, $rrd_pcp_mapping{$metric}{"iname"}, $metric_value);
if( $sts < 0 ){
die "pmiPutValue failed indom : " . pmiErrStr($sts) . "\n";
}
}
else{
# Constructed indom
my $num_inst = $rrd_pcp_mapping{$metric}{'inst_constructed'};
foreach my $iid(0..$num_inst-1){
my $iname_spec = $rrd_pcp_mapping{$metric}{"iname_pattern"};
my $iname = sprintf($iname_spec, $iid);
my $sts = pmiPutValue($rrd_pcp_mapping{$metric}{"name"}, $iname, $metric_value);
if( $sts < 0 ){
die "pmiPutValue failed constructed indom : " . pmiErrStr($sts) . "\n";
}
}
}
}
pmiWrite($timestep, 0) >= 0 or die "pmiWrite failed :" . pmiErrStr(-1) . "\n";
}
pmiEnd() >= 0 or die "pmiEnd failed\n";
|