blob: 7c8bd6a768d022d7ec5b3f285159d3602546957f [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COBALT_SRC_LOCAL_AGGREGATION_1_1_AGGREGATION_PROCEDURES_COUNT_AGGREGATION_PROCEDURE_H_
#define COBALT_SRC_LOCAL_AGGREGATION_1_1_AGGREGATION_PROCEDURES_COUNT_AGGREGATION_PROCEDURE_H_
#include "src/lib/statusor/statusor.h"
#include "src/local_aggregation_1_1/aggregation_procedures/hourly_aggregation_procedure.h"
#include "src/registry/metric_definition.pb.h"
#include "src/registry/report_definition.pb.h"
namespace cobalt::local_aggregation {
class CountAggregationProcedure : public HourlyAggregationProcedure {
public:
CountAggregationProcedure(const MetricDefinition &metric, const ReportDefinition &report)
: HourlyAggregationProcedure(metric, report) {}
void UpdateAggregateData(const logger::EventRecord & /*event_record*/,
AggregateData *aggregate_data,
EventCodeAggregate * /*aggregate*/) override;
lib::statusor::StatusOr<std::unique_ptr<Observation>> GenerateHourlyObservation(
EventCodeAggregate *aggregates) override;
[[nodiscard]] std::string DebugString() const override;
};
} // namespace cobalt::local_aggregation
#endif // COBALT_SRC_LOCAL_AGGREGATION_1_1_AGGREGATION_PROCEDURES_COUNT_AGGREGATION_PROCEDURE_H_