blob: 3538176dac08ef9af58ac80467ec61f563e96467 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
// Copyright (c) 2019 Cisco and/or its affiliates.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package adapter
import (
"fmt"
)
// StatsAPI provides connection to VPP stats API.
type StatsAPI interface {
// Connect establishes client connection to the stats API.
Connect() error
// Disconnect terminates client connection.
Disconnect() error
// ListStats lists names for all stats.
ListStats(patterns ...string) (statNames []string, err error)
// DumpStats dumps all stat entries.
DumpStats(patterns ...string) ([]*StatEntry, error)
}
// StatType represents type of stat directory and simply
// defines what type of stat data is stored in the stat entry.
type StatType int
const (
_ StatType = 0
ScalarIndex = 1
SimpleCounterVector = 2
CombinedCounterVector = 3
ErrorIndex = 4
)
func (d StatType) String() string {
switch d {
case ScalarIndex:
return "ScalarIndex"
case SimpleCounterVector:
return "SimpleCounterVector"
case CombinedCounterVector:
return "CombinedCounterVector"
case ErrorIndex:
return "ErrorIndex"
}
return fmt.Sprintf("UnknownStatType(%d)", d)
}
// StatEntry represents single stat entry. The type of stat stored in Data
// is defined by Type.
type StatEntry struct {
Name string
Type StatType
Data Stat
}
// Counter represents simple counter with single value.
type Counter uint64
// CombinedCounter represents counter with two values, for packet count and bytes count.
type CombinedCounter struct {
Packets Counter
Bytes Counter
}
// ScalarStat represents stat for ScalarIndex.
type ScalarStat float64
// ErrorStat represents stat for ErrorIndex.
type ErrorStat uint64
// SimpleCounterStat represents stat for SimpleCounterVector.
// The outer array represents workers and the inner array represents interface/node/.. indexes.
// Values should be aggregated per interface/node for every worker.
type SimpleCounterStat [][]Counter
// CombinedCounterStat represents stat for CombinedCounterVector.
// The outer array represents workers and the inner array represents interface/node/.. indexes.
// Values should be aggregated per interface/node for every worker.
type CombinedCounterStat [][]CombinedCounter
// Data represents some type of stat which is usually defined by StatType.
type Stat interface {
// isStat is unexported to limit implementations of Data interface to this package,
isStat()
}
func (ScalarStat) isStat() {}
func (ErrorStat) isStat() {}
func (SimpleCounterStat) isStat() {}
func (CombinedCounterStat) isStat() {}
|