/Users/deen/code/yugabyte-db/src/yb/tserver/heartbeater_factory.cc
Line | Count | Source |
1 | | // Copyright (c) YugaByte, Inc. |
2 | | // |
3 | | // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
4 | | // in compliance with the License. You may obtain a copy of the License at |
5 | | // |
6 | | // http://www.apache.org/licenses/LICENSE-2.0 |
7 | | // |
8 | | // Unless required by applicable law or agreed to in writing, software distributed under the License |
9 | | // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
10 | | // or implied. See the License for the specific language governing permissions and limitations |
11 | | // under the License. |
12 | | // |
13 | | |
14 | | #include "yb/tserver/heartbeater_factory.h" |
15 | | |
16 | | #include "yb/tserver/tserver_metrics_heartbeat_data_provider.h" |
17 | | |
18 | | namespace yb { |
19 | | namespace tserver { |
20 | | |
21 | | std::unique_ptr<Heartbeater> CreateHeartbeater( |
22 | 8.74k | const TabletServerOptions& options, TabletServer* server) { |
23 | 8.74k | std::vector<std::unique_ptr<HeartbeatDataProvider>> data_providers; |
24 | 8.74k | data_providers.push_back( |
25 | 8.74k | std::make_unique<TServerMetricsHeartbeatDataProvider>(server)); |
26 | 8.74k | return std::make_unique<Heartbeater>(options, server, std::move(data_providers)); |
27 | 8.74k | } |
28 | | |
29 | | } // namespace tserver |
30 | | } // namespace yb |