25 lines
785 B
C++
25 lines
785 B
C++
/*
|
|
* IXCobraToSentryBot.h
|
|
* Author: Benjamin Sergeant
|
|
* Copyright (c) 2019-2020 Machine Zone, Inc. All rights reserved.
|
|
*/
|
|
#pragma once
|
|
|
|
#include <ixcobra/IXCobraConfig.h>
|
|
#include <ixsentry/IXSentryClient.h>
|
|
#include <string>
|
|
#include <cstdint>
|
|
|
|
namespace ix
|
|
{
|
|
int64_t cobra_to_sentry_bot(const CobraConfig& config,
|
|
const std::string& channel,
|
|
const std::string& filter,
|
|
const std::string& position,
|
|
SentryClient& sentryClient,
|
|
bool verbose,
|
|
size_t maxQueueSize,
|
|
bool enableHeartbeat,
|
|
int runtime);
|
|
} // namespace ix
|