20 lines
499 B
C++
20 lines
499 B
C++
/*
|
|
* IXCobraMetricsToStatsdBot.h
|
|
* Author: Benjamin Sergeant
|
|
* Copyright (c) 2020 Machine Zone, Inc. All rights reserved.
|
|
*/
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <ixbots/IXStatsdClient.h>
|
|
#include "IXCobraBotConfig.h"
|
|
#include <stddef.h>
|
|
#include <string>
|
|
|
|
namespace ix
|
|
{
|
|
int64_t cobra_metrics_to_statsd_bot(const ix::CobraBotConfig& config,
|
|
StatsdClient& statsdClient,
|
|
bool verbose);
|
|
} // namespace ix
|