blob: 52fb5a66ac8cef85087db4a96cb86459b5bcaa42 [file] [log] [blame]
// Copyright 2018 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_LOGGER_EVENT_RECORD_H_
#define COBALT_LOGGER_EVENT_RECORD_H_
#include <memory>
#include "./event.pb.h"
#include "config/metric_definition.pb.h"
namespace cobalt {
namespace logger {
// A container for an Event proto message and the MetricDefinition for which
// that Event should be logged.
struct EventRecord {
const MetricDefinition* metric;
std::unique_ptr<Event> event = std::make_unique<Event>();
};
} // namespace logger
} // namespace cobalt
#endif // COBALT_LOGGER_EVENT_RECORD_H_