/Users/deen/code/yugabyte-db/src/yb/tserver/tserver-path-handlers.h
Line | Count | Source |
1 | | // Licensed to the Apache Software Foundation (ASF) under one |
2 | | // or more contributor license agreements. See the NOTICE file |
3 | | // distributed with this work for additional information |
4 | | // regarding copyright ownership. The ASF licenses this file |
5 | | // to you under the Apache License, Version 2.0 (the |
6 | | // "License"); you may not use this file except in compliance |
7 | | // with the License. You may obtain a copy of the License at |
8 | | // |
9 | | // http://www.apache.org/licenses/LICENSE-2.0 |
10 | | // |
11 | | // Unless required by applicable law or agreed to in writing, |
12 | | // software distributed under the License is distributed on an |
13 | | // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
14 | | // KIND, either express or implied. See the License for the |
15 | | // specific language governing permissions and limitations |
16 | | // under the License. |
17 | | // |
18 | | // The following only applies to changes made to this file as part of YugaByte development. |
19 | | // |
20 | | // Portions Copyright (c) YugaByte, Inc. |
21 | | // |
22 | | // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
23 | | // in compliance with the License. You may obtain a copy of the License at |
24 | | // |
25 | | // http://www.apache.org/licenses/LICENSE-2.0 |
26 | | // |
27 | | // Unless required by applicable law or agreed to in writing, software distributed under the License |
28 | | // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
29 | | // or implied. See the License for the specific language governing permissions and limitations |
30 | | // under the License. |
31 | | // |
32 | | #ifndef YB_TSERVER_TSERVER_PATH_HANDLERS_H |
33 | | #define YB_TSERVER_TSERVER_PATH_HANDLERS_H |
34 | | |
35 | | #include <string> |
36 | | #include <sstream> |
37 | | #include <vector> |
38 | | |
39 | | #include "yb/gutil/macros.h" |
40 | | #include "yb/server/webserver.h" |
41 | | |
42 | | namespace yb { |
43 | | |
44 | | class Schema; |
45 | | |
46 | | namespace consensus { |
47 | | class ConsensusStatePB; |
48 | | } // namespace consensus |
49 | | |
50 | | namespace tserver { |
51 | | |
52 | | class TabletServer; |
53 | | |
54 | | class TabletServerPathHandlers { |
55 | | public: |
56 | | explicit TabletServerPathHandlers(TabletServer* tserver) |
57 | 9.27k | : tserver_(tserver) { |
58 | 9.27k | } |
59 | | |
60 | | ~TabletServerPathHandlers(); |
61 | | |
62 | | CHECKED_STATUS Register(Webserver* server); |
63 | | |
64 | | private: |
65 | | void HandleTablesPage(const Webserver::WebRequest& req, |
66 | | Webserver::WebResponse* resp); |
67 | | void HandleTabletsPage(const Webserver::WebRequest& req, |
68 | | Webserver::WebResponse* resp); |
69 | | void HandleOperationsPage(const Webserver::WebRequest& req, |
70 | | Webserver::WebResponse* resp); |
71 | | void HandleDashboardsPage(const Webserver::WebRequest& req, |
72 | | Webserver::WebResponse* resp); |
73 | | void HandleMaintenanceManagerPage(const Webserver::WebRequest& req, |
74 | | Webserver::WebResponse* resp); |
75 | | void HandleHealthCheck(const Webserver::WebRequest& req, |
76 | | Webserver::WebResponse* resp); |
77 | | void HandleVersionInfoDump(const Webserver::WebRequest& req, |
78 | | Webserver::WebResponse* resp); |
79 | | std::string ConsensusStatePBToHtml(const consensus::ConsensusStatePB& cstate) const; |
80 | | std::string GetDashboardLine(const std::string& link, |
81 | | const std::string& text, const std::string& desc); |
82 | | |
83 | | TabletServer* const tserver_; |
84 | | |
85 | | DISALLOW_COPY_AND_ASSIGN(TabletServerPathHandlers); |
86 | | }; |
87 | | |
88 | | } // namespace tserver |
89 | | } // namespace yb |
90 | | #endif /* YB_TSERVER_TSERVER_PATH_HANDLERS_H */ |