aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/wilson/wilson_profile_span.cpp
blob: 3939be3c94db0825f5dd6f35a15f2a263c476810 (plain) (blame)
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
#include "wilson_profile_span.h"
#include <library/cpp/json/writer/json.h>

namespace NWilson {

void TProfileSpan::AddMax(const TString& eventId, const TString& /*info*/) {
    if (!Enabled) {
        return;
    }
    auto it = PairInstances.find(eventId);
    if (it == PairInstances.end()) {
        PairInstances.emplace(eventId, TMinMaxPair::BuildMax(Now()));
    } else {
        it->second.AddMax(Now());
    }
}

void TProfileSpan::AddMin(const TString& eventId, const TString& /*info*/) {
    if (!Enabled) {
        return;
    }
    auto it = PairInstances.find(eventId);
    if (it == PairInstances.end()) {
        PairInstances.emplace(eventId, TMinMaxPair::BuildMin(Now()));
    } else {
        it->second.AddMin(Now());
    }
}

TProfileSpan::TProfileSpan(const ui8 verbosity, TTraceId parentId, std::optional<TString> name)
    : TBase(verbosity, std::move(parentId), name, NWilson::EFlags::AUTO_END)
{

}

TProfileSpan::~TProfileSpan() {
    if (Enabled && (ResultTimes.GetMapSafe().size() || PairInstances.size())) {
        TBase::Attribute("profile", ProfileToString());
    }
}

NWilson::TProfileSpan TProfileSpan::BuildChildrenSpan(std::optional<TString> name, const ui8 verbosity) const {
    TTraceId parentTraceId = TBase::GetTraceId();
    const ui8 newVerbosity = verbosity ? verbosity : parentTraceId.GetVerbosity();
    return TProfileSpan(newVerbosity, std::move(parentTraceId), name);
}

TString TProfileSpan::ProfileToString() const {
    if (!Enabled) {
        return "DISABLED";
    }
    TStringBuilder sb;
    FlushNoGuards();
    {
        NJsonWriter::TBuf sout;
        ResultTimes.InsertValue("-current_guards_count", CurrentJsonPath.size());
        ResultTimes.InsertValue("-duration", (Now() - StartTime).MicroSeconds() * 0.000001);
        sout.WriteJsonValue(&ResultTimes, true, EFloatToStringMode::PREC_POINT_DIGITS, 6);
        sb << sout.Str();
    }
    sb << ";";
    sb << "Pairs:{";
    for (auto&& i : PairInstances) {
        sb << i.first << ":" << i.second.ToString() << ";";
    }
    sb << "}";
    return sb;
}

void TProfileSpan::FlushNoGuards() const {
    if (!Enabled) {
        return;
    }
    if (CurrentJsonPath.empty()) {
        NJson::TJsonValue* currentNodeOutside;
        if (!ResultTimes.GetValuePointer("--outside_duration", &currentNodeOutside)) {
            currentNodeOutside = &ResultTimes.InsertValue("--outside_duration", 0);
            currentNodeOutside->SetType(NJson::JSON_DOUBLE);
        }
        currentNodeOutside->SetValue(currentNodeOutside->GetDoubleRobust() + (Now() - LastNoGuards).MicroSeconds() * 0.000001);
        LastNoGuards = Now();
    }
}

NWilson::TProfileSpan::TMinMaxPair TProfileSpan::TMinMaxPair::BuildMin(const TInstant value) {
    TMinMaxPair result;
    result.MinMinInstance = value;
    result.MaxMinInstance = value;
    return result;
}

NWilson::TProfileSpan::TMinMaxPair TProfileSpan::TMinMaxPair::BuildMax(const TInstant value) {
    TMinMaxPair result;
    result.MaxInstance = value;
    return result;
}

void TProfileSpan::TMinMaxPair::AddMax(const TInstant instance) {
    if (!MaxInstance) {
        MaxInstance = instance;
    } else {
        MaxInstance = Max(*MaxInstance, instance);
    }
}

void TProfileSpan::TMinMaxPair::AddMin(const TInstant instance) {
    if (!MinMinInstance) {
        MinMinInstance = instance;
    } else {
        MinMinInstance = Min(*MinMinInstance, instance);
    }
    if (!MaxMinInstance) {
        MaxMinInstance = instance;
    } else {
        MaxMinInstance = Max(*MaxMinInstance, instance);
    }
}

TString TProfileSpan::TMinMaxPair::ToString() const {
    TStringBuilder sb;
    sb << "[";
    if (MinMinInstance) {
        sb << MinMinInstance->MicroSeconds();
    } else {
        sb << "UNDEFINED";
    }
    sb << "-";
    if (MaxMinInstance) {
        sb << MaxMinInstance->MicroSeconds();
    } else {
        sb << "UNDEFINED";
    }
    sb << ",";
    if (MaxInstance) {
        sb << MaxInstance->MicroSeconds();
    } else {
        sb << "UNDEFINED";
    }
    if (MaxInstance && MinMinInstance) {
        sb << ",";
        sb << *MaxInstance - *MaxMinInstance << "-" << *MaxInstance - *MinMinInstance;
    }
    sb << "]";
    return sb;
}

TProfileSpan::TGuard::~TGuard() {
    if (!Owner.Enabled) {
        return;
    }
    Y_VERIFY(CurrentNodeDuration->IsDouble());
    CurrentNodeDuration->SetValue((Now() - Start).MicroSeconds() * 0.000001 + CurrentNodeDuration->GetDoubleRobust());
    Y_VERIFY(Owner.CurrentJsonPath.size());
    Owner.CurrentJsonPath.pop_back();
    if (Owner.CurrentJsonPath.empty()) {
        Owner.LastNoGuards = Now();
    }
}

TProfileSpan::TGuard::TGuard(const TString& event, TProfileSpan& owner, const TString& /*info*/)
    : Owner(owner) {
    if (!Owner.Enabled) {
        return;
    }
    Owner.FlushNoGuards();
    NJson::TJsonValue* currentNode = Owner.CurrentJsonPath.empty() ? &Owner.ResultTimes : Owner.CurrentJsonPath.back();
    NJson::TJsonValue* currentNodeParent;
    if (!currentNode->GetValuePointer(event, &currentNodeParent)) {
        currentNodeParent = &currentNode->InsertValue(event, NJson::JSON_MAP);
    }
    Owner.CurrentJsonPath.emplace_back(currentNodeParent);
    if (!currentNodeParent->GetValuePointer("--duration", &CurrentNodeDuration)) {
        CurrentNodeDuration = &currentNodeParent->InsertValue("--duration", 0);
        CurrentNodeDuration->SetType(NJson::JSON_DOUBLE);
    }
}

} // NWilson