First release of open-appsec source code

This commit is contained in:
roybarda
2022-10-26 19:33:19 +03:00
parent 3883109caf
commit a883352f79
1353 changed files with 276290 additions and 1 deletions

View File

@@ -0,0 +1,96 @@
// Copyright (C) 2022 Check Point Software Technologies Ltd. All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef __MAINLOOP_METRIC_H__
#define __MAINLOOP_METRIC_H__
#include "generic_metric.h"
class MainloopEvent : public Event<MainloopEvent>
{
public:
void
setTimeSlice(int value)
{
time_slice_used = value;
}
void
setSleepTime(uint64_t value)
{
sleep_time_used = value;
}
void
setStressValue(uint32_t value)
{
current_stress_used = value;
}
uint32_t
getTimeSlice() const
{
return time_slice_used;
}
uint32_t
getSleepTime() const
{
return sleep_time_used;
}
uint32_t
getStressValue() const
{
return current_stress_used;
}
private:
uint32_t time_slice_used = 0;
uint64_t sleep_time_used = 0;
uint32_t current_stress_used = 0;
};
class MainloopMetric
:
public GenericMetric,
public Listener<MainloopEvent>
{
public:
void
upon(const MainloopEvent &event) override
{
max_time_slice.report(event.getTimeSlice());
avg_time_slice.report(event.getTimeSlice());
last_report_time_slice.report(event.getTimeSlice());
max_sleep_time.report(event.getSleepTime());
avg_sleep_time.report(event.getSleepTime());
last_report_sleep_time.report(event.getSleepTime());
max_stress_value.report(event.getStressValue());
avg_stress_value.report(event.getStressValue());
last_report_stress_value.report(event.getStressValue());
}
private:
MetricCalculations::Max<uint32_t> max_time_slice{this, "mainloopMaxTimeSliceSample", 0};
MetricCalculations::Average<double> avg_time_slice{this, "mainloopAvgTimeSliceSample"};
MetricCalculations::LastReportedValue<uint32_t> last_report_time_slice{this, "mainloopLastTimeSliceSample"};
MetricCalculations::Max<uint64_t> max_sleep_time{this, "mainloopMaxSleepTimeSample", 0};
MetricCalculations::Average<double> avg_sleep_time{this, "mainloopAvgSleepTimeSample"};
MetricCalculations::LastReportedValue<uint32_t> last_report_sleep_time{this, "mainloopLastSleepTimeSample"};
MetricCalculations::Max<uint32_t> max_stress_value{this, "mainloopMaxStressValueSample", 0};
MetricCalculations::Average<double> avg_stress_value{this, "mainloopAvgStressValueSample"};
MetricCalculations::LastReportedValue<uint32_t> last_report_stress_value{this, "mainloopLastStressValueSample"};
};
#endif // __MAINLOOP_METRIC_H__