2019-04-11 16:03:05 -07:00
|
|
|
/*
|
|
|
|
* ws_cobra_to_sentry.cpp
|
|
|
|
* Author: Benjamin Sergeant
|
|
|
|
* Copyright (c) 2019 Machine Zone, Inc. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
2020-03-11 15:55:45 -07:00
|
|
|
#include <ixbots/IXCobraToSentryBot.h>
|
2019-04-11 16:03:05 -07:00
|
|
|
|
|
|
|
namespace ix
|
|
|
|
{
|
2020-03-11 10:48:27 -07:00
|
|
|
int ws_cobra_to_sentry_main(const ix::CobraConfig& config,
|
2019-04-11 16:03:05 -07:00
|
|
|
const std::string& channel,
|
2019-08-01 15:22:24 -07:00
|
|
|
const std::string& filter,
|
2019-04-11 16:03:05 -07:00
|
|
|
const std::string& dsn,
|
|
|
|
bool verbose,
|
|
|
|
bool strict,
|
2019-12-19 20:49:28 -08:00
|
|
|
int jobs,
|
2020-03-11 12:40:32 -07:00
|
|
|
size_t maxQueueSize)
|
2019-04-11 16:03:05 -07:00
|
|
|
{
|
2020-03-11 15:55:45 -07:00
|
|
|
return cobra_to_sentry_bot(
|
|
|
|
config, channel, filter, dsn, verbose, strict, jobs, maxQueueSize);
|
2019-04-11 16:03:05 -07:00
|
|
|
}
|
2019-09-23 10:25:23 -07:00
|
|
|
} // namespace ix
|