mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
29 lines
651 B
C++
29 lines
651 B
C++
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#include <glog/logging.h>
|
|
|
|
#include "osquery/config.h"
|
|
#include "osquery/config/plugin.h"
|
|
#include "osquery/core.h"
|
|
#include "osquery/logger.h"
|
|
#include "osquery/logger/plugin.h"
|
|
#include "osquery/registry.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
osquery::initOsquery(argc, argv);
|
|
|
|
LOG(INFO) << "Listing all plugins";
|
|
|
|
LOG(INFO) << "Logger plugins:";
|
|
for (const auto& it : REGISTERED_LOGGER_PLUGINS) {
|
|
LOG(INFO) << " - " << it.first;
|
|
}
|
|
|
|
LOG(INFO) << "Config plugins:";
|
|
for (const auto& it : REGISTERED_CONFIG_PLUGINS) {
|
|
LOG(INFO) << " - " << it.first;
|
|
}
|
|
|
|
return 0;
|
|
}
|