summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Instrument.pm
blob: 4ab74ff8e480fc86053781bf868a6cf62e94fb50 (plain)
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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.

package Bugzilla::Instrument;

use strict;
use warnings;

use Time::HiRes qw(clock_gettime CLOCK_MONOTONIC);
use Encode qw(encode_utf8);
use Sys::Syslog qw(:DEFAULT);

sub new {
    my ($class, $label) = @_;
    my $self = bless({ times => [], labels => [], values => [] }, $class);
    $self->label($label);
    $self->time('start_time');
    return $self;
}

sub time {
    my ($self, $name) = @_;
    # for now $name isn't used
    push @{ $self->{times} }, clock_gettime(CLOCK_MONOTONIC);
}

sub label {
    my ($self, $value) = @_;
    push @{ $self->{labels} }, $value;
}

sub value {
    my ($self, $name, $value) = @_;
    # for now $name isn't used
    push @{ $self->{values} }, $value;
}

sub log {
    my $self = shift;

    my @times = @{ $self->{times} };
    return unless scalar(@times) >= 2;
    my @labels = @{ $self->{labels} };
    my @values = @{ $self->{values} };

    # calculate diffs
    my @diffs = ($times[$#times] - $times[0]);
    while (1) {
        my $start = shift(@times);
        last unless scalar(@times);
        push @diffs, $times[0] - $start;
    }

    # build syslog string
    my $format = '[timing]' . (' %s' x scalar(@labels)) . (' %.6f' x scalar(@diffs)) . (' %s' x scalar(@values));
    my $entry = sprintf($format, @labels, @diffs, @values);

    # and log
    openlog('apache', 'cons,pid', 'local4');
    syslog('notice', encode_utf8($entry));
    closelog();
}

1;