osquery-1/osquery/dispatcher/distributed.cpp

45 lines
1.1 KiB
C++
Raw Normal View History

2015-09-07 18:09:06 +00:00
/*
* Copyright (c) 2014, 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.
*
*/
#include "osquery/dispatcher/distributed.h"
#include "osquery/distributed.h"
namespace osquery {
FLAG(uint64,
2015-10-02 18:33:50 +00:00
distributed_interval,
2015-09-07 18:09:06 +00:00
60,
2015-10-02 18:33:50 +00:00
"Seconds between polling for new queries (default 60)")
2015-09-07 18:09:06 +00:00
2015-10-02 18:33:50 +00:00
DECLARE_bool(disable_distributed);
2015-09-07 18:09:06 +00:00
DECLARE_string(distributed_plugin);
void DistributedRunner::start() {
auto dist = Distributed();
while (true) {
dist.pullUpdates();
if (dist.getPendingQueryCount() > 0) {
dist.runQueries();
}
2015-10-02 18:33:50 +00:00
::sleep(FLAGS_distributed_interval);
2015-09-07 18:09:06 +00:00
}
}
Status startDistributed() {
2015-10-02 18:33:50 +00:00
if (!FLAGS_disable_distributed && !FLAGS_distributed_plugin.empty() &&
2015-09-07 18:09:06 +00:00
Registry::getActive("distributed") == FLAGS_distributed_plugin) {
Dispatcher::addService(std::make_shared<DistributedRunner>());
return Status(0, "OK");
} else {
return Status(1, "Distributed query service not enabled.");
}
}
}