osquery-1/osquery/config/parsers/prometheus_targets.h
2017-02-26 21:59:51 -08:00

28 lines
724 B
C++

/*
* Copyright (c) 2014-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
#pragma once
#include <string>
#include <vector>
#include <osquery/config.h>
namespace osquery {
const std::string kConfigParserRootKey("prometheus_targets");
class PrometheusMetricsConfigParserPlugin : public ConfigParserPlugin {
public:
std::vector<std::string> keys() const override;
Status setUp() override;
Status update(const std::string& source, const ParserConfig& config) override;
};
}