forked from slashdoom/aruba_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outline.txt
48 lines (48 loc) · 1.41 KB
/
outline.txt
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
main.go/main()
|
- main.go/initialize()
|
- main.go/loadConfig()
|
- main.go/loadConfigFromFlags()
|
- config/config.go/DevicesFromTargets()
OR
- config/config.go/Load()
- devices.go/devicesForConfig()
|
- config/config.go/deviceFromDeviceConfig()
|
- config/config.go/authForDevice()
|
- config/config.go/authForKeyFile()
OR
- config/config.go/AuthByPassword()
|
- main.go/startServer()
|
- route /
|
- output about
- route metric
|
- main.go/handleMetricsRequest()
|
- aruba_collector.go/newArubaCollector()
|
- collectors.go/collectorsForDevices()
|
- collectors.go/initCollectorsForDevice()
|
- config/config.go/FeaturesForDevice()
|
- config/config.go/findDeviceConfig()
|
- collectors.go/addCollectorIfEnabledForDevice()
|
- [feature]/[feature]_collector.go/NewCollector()
- Name()
- Describe()
- Collect()
|
- [feature]/[feature]_collector.go/init()