stacker_bee 2.1.0.pre187 → 2.1.0.pre188
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/README.md +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NTg5M2YzNzZlNTY1ZWU2OGExYjA5MDQyZDA0YTQ5YmY4N2M4ODcxNQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NGM0ODIzMDY0MzBmZmJjNWNhNzI5ZmE1NWU4NmU2OWEwMDk2YzljNw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
M2Y0YmY0NjZhYzM4YTBhZjA5MDU3NmQ3MTlhM2MwNDA0ZDk5OGVlZjgwOGQ3
|
|
10
|
+
YTk0ZGEzM2QzMDE2OWVjZDVkODVhMzQ2NTljMzg2NDY4OTdlOTc0YTA4ZTMz
|
|
11
|
+
YmMwOGRiZTAxMGVmODM5MGI5NTlhOWE2YjgxYzcyNzc2ZmRmMzc=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MTkyYmI1NmUzOTUxZjgwMjY1N2YyMzk5MGQ3NmI1MWI0MmFjZTNhOTMzNzM3
|
|
14
|
+
ZWYxZGFlNjRlN2NmODFiOGFjMzkwY2M5NzVjODExZTA0MmUyZjE3OTgxNDgw
|
|
15
|
+
ZmM4ODZkYzViMjZjODE0NDg3OGYzZDE1MGM1NGNmYzExNzBkMGY=
|
data/README.md
CHANGED
|
@@ -214,7 +214,9 @@ If you're using the Graylog2 GELF format, you're in luck because StackerBee curr
|
|
|
214
214
|
logger = GELF::Notifier.new("localhost", 12201)
|
|
215
215
|
|
|
216
216
|
StackerBee::Client.configuration = {
|
|
217
|
-
faraday_middlewares: ->(faraday)
|
|
217
|
+
faraday_middlewares: ->(faraday) do
|
|
218
|
+
faraday.use StackerBee::HTTPMiddleware::Graylog, logger
|
|
219
|
+
end
|
|
218
220
|
}
|
|
219
221
|
```
|
|
220
222
|
|