Apache Mesos
statistics.hpp
Go to the documentation of this file.
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, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 
17 #ifndef __LINUX_ROUTING_QUEUEING_STATISTICS_HPP__
18 #define __LINUX_ROUTING_QUEUEING_STATISTICS_HPP__
19 
20 namespace routing {
21 namespace queueing {
22 namespace statistics {
23 
24 constexpr char PACKETS[] = "packets";
25 constexpr char BYTES[] = "bytes";
26 constexpr char RATE_BPS[] = "rate_bps";
27 constexpr char RATE_PPS[] = "rate_pps";
28 constexpr char QLEN[] = "qlen";
29 constexpr char BACKLOG[] = "backlog";
30 constexpr char DROPS[] = "drops";
31 constexpr char REQUEUES[] = "requeues";
32 constexpr char OVERLIMITS[] = "overlimits";
33 
34 } // namespace statistics {
35 } // namespace queueing {
36 } // namespace routing {
37 
38 #endif // __LINUX_ROUTING_QUEUEING_STATISTICS_HPP__
constexpr char QLEN[]
Definition: statistics.hpp:28
constexpr char REQUEUES[]
Definition: statistics.hpp:31
constexpr char BACKLOG[]
Definition: statistics.hpp:29
constexpr char RATE_BPS[]
Definition: statistics.hpp:26
constexpr char PACKETS[]
Definition: statistics.hpp:24
constexpr char OVERLIMITS[]
Definition: statistics.hpp:32
Definition: diagnosis.hpp:30
constexpr char DROPS[]
Definition: statistics.hpp:30
constexpr char BYTES[]
Definition: statistics.hpp:25
constexpr char RATE_PPS[]
Definition: statistics.hpp:27