File tree 4 files changed +312
-189
lines changed 4 files changed +312
-189
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,10 @@ Metrics:
70
70
# # Fabrics
71
71
- Path : /redfish/v1/Fabrics/{fabric}
72
72
- Path : /redfish/v1/Fabrics/{fabric}/Switches
73
+ - Path : /redfish/v1/Fabrics/{fabric}/Switches/{switch}
74
+ - Path : /redfish/v1/Fabrics/{fabric}/Switches/{switch}/Ports
75
+ - Path : /redfish/v1/Fabrics/{fabric}/Switches/{switch}/Ports/{switchport}
76
+
73
77
# # Managers
74
78
- Path : /redfish/v1/Managers/{manager}
75
79
- Path : /redfish/v1/Managers/{manager}/Attributes
Original file line number Diff line number Diff line change
1
+ How to install collector command
2
+ =====================================
3
+
4
+ The collector command can run in a setup-hw container or on a bare metal Linux server.
5
+ This memo describes how to install the command on a bare metal server.
6
+
7
+ ## 1.Clone code from github repository
8
+
9
+ ```
10
+ $ git clone https://github.com/cybozu-go/setup-hw
11
+ ```
12
+
13
+ ## 2.Build & install collector command
14
+
15
+ ```
16
+ $ cd setup-hw
17
+ $ make install
18
+ ```
19
+
20
+ ## 3.Setup config
21
+
22
+ Put a bmc-user.json file in /etc/neco/ that must have "support" user to use the collector command.
23
+
24
+ ```
25
+ {
26
+ "support": {
27
+ "password": {
28
+ "raw": "raw password here"
29
+ }
30
+ }
31
+ }
32
+ ```
33
+
34
+ Put a bmc-address.json file in /etc/neco.
35
+
36
+ ```
37
+ {
38
+ "ipv4": {
39
+ "address": "192.0.2.3",
40
+ "netmask": "255.255.255.0",
41
+ "gateway": "192.0.2.1"
42
+ }
43
+ }
44
+ ```
45
+
46
+ please see [ config.md] ( config.md ) file.
47
+
48
+ ## 4.Check
49
+
50
+ By following the above steps, you can execute the collector command.
51
+
52
+ ```
53
+ $ collector show
54
+ ```
55
+
56
+ Next, see [ how to generate rules] ( how_to_generate_rules.md ) .
You can’t perform that action at this time.
0 commit comments