blob: ae441d0bbd8d987c8069bc86e8f5779e9a59a7b9 [file] [log] [blame]
Bertrand SIMONNET608e4282015-11-12 17:52:17 -08001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Bertrand SIMONNET608e4282015-11-12 17:52:17 -080017#include <base/command_line.h>
18#include <base/files/file_path.h>
19#include <base/logging.h>
Bertrand SIMONNET608e4282015-11-12 17:52:17 -080020#include <base/time/time.h>
21#include <brillo/flag_helper.h>
22#include <brillo/syslog_logging.h>
23
24#include "constants.h"
Bertrand SIMONNETb6c77af2015-12-08 17:46:00 -080025#include "uploader/metricsd_service_runner.h"
Bertrand SIMONNET608e4282015-11-12 17:52:17 -080026#include "uploader/upload_service.h"
27
Bertrand SIMONNET608e4282015-11-12 17:52:17 -080028int main(int argc, char** argv) {
29 DEFINE_bool(foreground, false, "Don't daemonize");
30
31 // Upload the metrics once and exit. (used for testing)
Bertrand SIMONNET6b8629a2015-11-18 13:46:33 -080032 DEFINE_bool(uploader_test, false, "run the uploader once and exit");
Bertrand SIMONNET608e4282015-11-12 17:52:17 -080033
34 // Upload Service flags.
Bertrand SIMONNET6b8629a2015-11-18 13:46:33 -080035 DEFINE_int32(upload_interval_secs, 1800,
Bertrand SIMONNET608e4282015-11-12 17:52:17 -080036 "Interval at which metrics_daemon sends the metrics. (needs "
37 "-uploader)");
Bertrand SIMONNET6b8629a2015-11-18 13:46:33 -080038 DEFINE_string(server, metrics::kMetricsServer,
Bertrand SIMONNET608e4282015-11-12 17:52:17 -080039 "Server to upload the metrics to. (needs -uploader)");
Bertrand SIMONNET9d3a4ae2015-11-25 13:49:12 -080040 DEFINE_string(private_directory, metrics::kMetricsdDirectory,
41 "Path to the private directory used by metricsd "
42 "(testing only)");
43 DEFINE_string(shared_directory, metrics::kSharedMetricsDirectory,
44 "Path to the shared metrics directory, used by "
45 "metrics_collector, metricsd and all metrics clients "
46 "(testing only)");
Bertrand SIMONNET608e4282015-11-12 17:52:17 -080047
48 DEFINE_bool(logtostderr, false, "Log to standard error");
49 DEFINE_bool(logtosyslog, false, "Log to syslog");
50
51 brillo::FlagHelper::Init(argc, argv, "Brillo metrics daemon.");
52
Bertrand SIMONNET6b8629a2015-11-18 13:46:33 -080053 int logging_location =
54 (FLAGS_foreground ? brillo::kLogToStderr : brillo::kLogToSyslog);
Bertrand SIMONNET608e4282015-11-12 17:52:17 -080055 if (FLAGS_logtosyslog)
56 logging_location = brillo::kLogToSyslog;
57
58 if (FLAGS_logtostderr)
59 logging_location = brillo::kLogToStderr;
60
61 // Also log to stderr when not running as daemon.
62 brillo::InitLog(logging_location | brillo::kLogHeader);
63
64 if (FLAGS_logtostderr && FLAGS_logtosyslog) {
65 LOG(ERROR) << "only one of --logtosyslog and --logtostderr can be set";
66 return 1;
67 }
68
69 if (!FLAGS_foreground && daemon(0, 0) != 0) {
70 return errno;
71 }
72
Bertrand SIMONNET6b8629a2015-11-18 13:46:33 -080073 UploadService upload_service(
Bertrand SIMONNET9d3a4ae2015-11-25 13:49:12 -080074 FLAGS_server, base::TimeDelta::FromSeconds(FLAGS_upload_interval_secs),
75 base::FilePath(FLAGS_private_directory),
Bertrand SIMONNETb6c77af2015-12-08 17:46:00 -080076 base::FilePath(FLAGS_shared_directory));
Bertrand SIMONNET608e4282015-11-12 17:52:17 -080077
Bertrand SIMONNETb6c77af2015-12-08 17:46:00 -080078 return upload_service.Run();
Bertrand SIMONNET608e4282015-11-12 17:52:17 -080079}