gitlab-labkit 1.8.0 → 1.9.0
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 +4 -4
- data/lib/labkit/fields.rb +5 -5
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ce6ea44972e6b4b1831c66fd9980f6b501d7c517d89e987cd13e54fa8869fd8d
|
|
4
|
+
data.tar.gz: e03f282e419b06a8a030eaf5b9215eb99ced4883064c66abbca3ca84f9d452bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 602a91b5315f74bdfd68997e7c5dd7bc4c4ec888fb7ab79e68baa98ca0173b77d59a826bcdb695c492665ef3d3f46e586863ea06274245b0d8047e46297408bd
|
|
7
|
+
data.tar.gz: 7d972eaf40419b5b4c33ae4c283a72d496cfc81be35386d16924fc133b9b94f028456bd9e0bfc7f076799239f938dee931b7a7a20c690cabcb4fcab571df8b8a
|
data/lib/labkit/fields.rb
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Code generated by labkit-spec. DO NOT EDIT.
|
|
4
4
|
#
|
|
5
|
-
# Source: schema/fields.yaml (version 1.0)
|
|
5
|
+
# Source: https://gitlab.com/gitlab-org/quality/tooling/labkit-spec/-/blob/main/schema/fields.yaml (version 1.0)
|
|
6
6
|
|
|
7
7
|
module Labkit
|
|
8
8
|
module Fields
|
|
@@ -33,9 +33,9 @@ module Labkit
|
|
|
33
33
|
# HTTP method (e.g. "GET", "POST").
|
|
34
34
|
HTTP_METHOD = "method"
|
|
35
35
|
|
|
36
|
-
# URL of an HTTP request containing only scheme, host, and path
|
|
37
|
-
#
|
|
38
|
-
#
|
|
36
|
+
# URL of an HTTP request containing only scheme, host, and path. Query
|
|
37
|
+
# strings and fragments must be omitted to avoid logging sensitive
|
|
38
|
+
# information.
|
|
39
39
|
HTTP_URL = "url"
|
|
40
40
|
|
|
41
41
|
# Duration of any operation in seconds. Not limited to HTTP requests; can be
|
|
@@ -51,7 +51,7 @@ module Labkit
|
|
|
51
51
|
TCP_ADDRESS = "tcp_address"
|
|
52
52
|
|
|
53
53
|
# Request URI including path and query string with sensitive parameters
|
|
54
|
-
# masked (e.g. "?password=
|
|
54
|
+
# masked (e.g. "?password=FILTERED").
|
|
55
55
|
HTTP_URI = "uri"
|
|
56
56
|
|
|
57
57
|
# HTTP Host header of a request (e.g. "api.gitlab.com").
|