esp_sdk 2.5.0 → 2.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/.yardopts +1 -0
- data/CHANGELOG.md +8 -0
- data/Gemfile.lock +5 -3
- data/Guardfile +3 -1
- data/esp_sdk.gemspec +2 -1
- data/lib/esp/aws_clients.rb +2 -1
- data/lib/esp/commands/commands_tasks.rb +2 -1
- data/lib/esp/commands/console.rb +4 -0
- data/lib/esp/exceptions.rb +1 -0
- data/lib/esp/extensions/active_resource/dirty.rb +51 -0
- data/lib/esp/extensions/active_resource/formats/json_api_format.rb +5 -3
- data/lib/esp/extensions/active_resource/paginated_collection.rb +71 -38
- data/lib/esp/extensions/active_resource/validations.rb +4 -2
- data/lib/esp/external_account_creator.rb +4 -1
- data/lib/esp/resources/alert.rb +53 -42
- data/lib/esp/resources/cloud_trail_event.rb +18 -12
- data/lib/esp/resources/concerns/stat_totals.rb +70 -67
- data/lib/esp/resources/contact_request.rb +17 -14
- data/lib/esp/resources/custom_signature/definition.rb +46 -51
- data/lib/esp/resources/custom_signature/result/alert.rb +13 -5
- data/lib/esp/resources/custom_signature/result.rb +49 -53
- data/lib/esp/resources/custom_signature.rb +52 -61
- data/lib/esp/resources/dashboard.rb +11 -5
- data/lib/esp/resources/external_account.rb +59 -58
- data/lib/esp/resources/metadata.rb +21 -11
- data/lib/esp/resources/organization.rb +49 -39
- data/lib/esp/resources/region.rb +25 -28
- data/lib/esp/resources/report.rb +46 -44
- data/lib/esp/resources/reports/export/integration.rb +22 -13
- data/lib/esp/resources/resource.rb +4 -3
- data/lib/esp/resources/scan_interval.rb +19 -13
- data/lib/esp/resources/service.rb +17 -11
- data/lib/esp/resources/signature.rb +43 -53
- data/lib/esp/resources/stat.rb +72 -55
- data/lib/esp/resources/stat_custom_signature.rb +73 -65
- data/lib/esp/resources/stat_region.rb +76 -65
- data/lib/esp/resources/stat_service.rb +76 -65
- data/lib/esp/resources/stat_signature.rb +76 -65
- data/lib/esp/resources/sub_organization.rb +51 -60
- data/lib/esp/resources/suppression/region.rb +35 -30
- data/lib/esp/resources/suppression/signature.rb +35 -29
- data/lib/esp/resources/suppression/unique_identifier.rb +27 -22
- data/lib/esp/resources/suppression.rb +45 -34
- data/lib/esp/resources/tag.rb +20 -11
- data/lib/esp/resources/team.rb +56 -58
- data/lib/esp/resources/user.rb +35 -32
- data/lib/esp/version.rb +1 -1
- data/lib/esp.rb +39 -16
- data/lib/esp_sdk.rb +1 -0
- data/test/esp/extensions/active_resource/dirty_test.rb +81 -0
- data/test/esp/extensions/active_resource/formats/json_api_format_test.rb +8 -0
- data/test/esp/extensions/active_resource/paginated_collection_test.rb +7 -0
- data/test/esp/integration/json_api_format_integration_test.rb +5 -2
- data/test/esp/integration/organization_integration_test.rb +1 -1
- data/test/esp/resources/custom_signature_test.rb +15 -0
- data/test/factories/custom_signatures.rb +0 -10
- metadata +21 -3
@@ -1,15 +1,20 @@
|
|
1
1
|
module ESP
|
2
2
|
class Signature < ESP::Resource
|
3
|
-
##
|
4
3
|
# The service this signature belongs to.
|
4
|
+
#
|
5
|
+
# @return [ESP::Service]
|
5
6
|
belongs_to :service, class_name: 'ESP::Service'
|
6
7
|
|
7
8
|
# Not Implemented. You cannot create or update a Signature.
|
9
|
+
#
|
10
|
+
# @return [void]
|
8
11
|
def save
|
9
12
|
fail ESP::NotImplementedError
|
10
13
|
end
|
11
14
|
|
12
15
|
# Not Implemented. You cannot destroy a Signature.
|
16
|
+
#
|
17
|
+
# @return [void]
|
13
18
|
def destroy
|
14
19
|
fail ESP::NotImplementedError
|
15
20
|
end
|
@@ -18,15 +23,10 @@ module ESP
|
|
18
23
|
# Returns a collection of alerts.
|
19
24
|
# Throws an error if not successful.
|
20
25
|
#
|
21
|
-
#
|
22
|
-
#
|
23
|
-
#
|
24
|
-
#
|
25
|
-
# ===== Valid Arguments
|
26
|
-
#
|
27
|
-
# See {API documentation}[http://api-docs.evident.io?ruby#signature-run] for valid arguments
|
28
|
-
#
|
29
|
-
# ==== Example
|
26
|
+
# @param (see #run)
|
27
|
+
# @return [ActiveResource::PaginatedCollection<ESP::Alert>]
|
28
|
+
# @raise [ActiveResource::ResourceInvalid] if not successful.
|
29
|
+
# @example
|
30
30
|
# signature = ESP::Signature.find(3)
|
31
31
|
# alerts = signature.run!(external_account_id: 3, region: 'us_east_1')
|
32
32
|
def run!(arguments = {})
|
@@ -40,15 +40,12 @@ module ESP
|
|
40
40
|
# Returns a collection of alerts.
|
41
41
|
# If not successful, returns a Signature object with the errors object populated.
|
42
42
|
#
|
43
|
-
#
|
44
|
-
#
|
45
|
-
# +arguments+ | Required | A hash of run arguments
|
46
|
-
#
|
47
|
-
# ===== Valid Arguments
|
48
|
-
#
|
49
|
-
# See {API documentation}[http://api-docs.evident.io?ruby#signature-run] for valid arguments
|
43
|
+
# @param arguments [Hash] Required hash of run arguments.
|
44
|
+
# ===== Valid Arguments
|
50
45
|
#
|
51
|
-
#
|
46
|
+
# See {API documentation}[http://api-docs.evident.io?ruby#signature-run] for valid arguments
|
47
|
+
# @return [ActiveResource::PaginatedCollection<ESP::Alert>, self]
|
48
|
+
# @example
|
52
49
|
# signature = ESP::Signature.find(3)
|
53
50
|
# alerts = signature.run(external_account_id: 3, region: 'us_east_1')
|
54
51
|
def run(arguments = {})
|
@@ -66,57 +63,50 @@ module ESP
|
|
66
63
|
|
67
64
|
# Create a suppression for this signature.
|
68
65
|
#
|
69
|
-
#
|
66
|
+
# @param arguments [Hash] Required hash of signature suppression attributes.
|
67
|
+
# ===== Valid Arguments
|
70
68
|
#
|
71
|
-
#
|
72
|
-
#
|
73
|
-
#
|
74
|
-
#
|
75
|
-
# See {API documentation}[http://api-docs.evident.io?ruby#suppression-create] for valid arguments
|
76
|
-
#
|
77
|
-
# ==== Example
|
69
|
+
# See {API documentation}[http://api-docs.evident.io?ruby#suppression-create] for valid arguments
|
70
|
+
# @return [ESP::Suppression::Signature]
|
71
|
+
# @example
|
78
72
|
# suppress(regions: ['us_east_1'], external_account_ids: [5], reason: 'My very good reason for creating this suppression')
|
79
73
|
def suppress(arguments = {})
|
80
74
|
arguments = arguments.with_indifferent_access
|
81
75
|
ESP::Suppression::Signature.create(signature_ids: [id], regions: Array(arguments[:regions]), external_account_ids: Array(arguments[:external_account_ids]), reason: arguments[:reason])
|
82
76
|
end
|
83
77
|
|
84
|
-
#
|
85
|
-
#
|
86
|
-
#
|
87
|
-
# ==== Parameters
|
88
|
-
#
|
89
|
-
# +clauses+ | Hash of attributes with appended predicates to search, sort and include.
|
78
|
+
# @!method self.where(clauses = {})
|
79
|
+
# Return a paginated Signature list filtered by search parameters
|
90
80
|
#
|
91
|
-
#
|
81
|
+
# *call-seq* -> +super.where(clauses = {})+
|
92
82
|
#
|
93
|
-
#
|
83
|
+
# @param clauses [Hash] A hash of attributes with appended predicates to search, sort and include.
|
84
|
+
# ===== Valid Clauses
|
94
85
|
#
|
95
|
-
#
|
96
|
-
#
|
86
|
+
# See {API documentation}[http://api-docs.evident.io?ruby#signature-attributes] for valid arguments
|
87
|
+
# @return [ActiveResource::PaginatedCollection<ESP::Signature>]
|
97
88
|
|
98
|
-
|
99
|
-
#
|
100
|
-
# Find a Signature by id
|
89
|
+
# @!method self.find(id)
|
90
|
+
# Find a Signature by id
|
101
91
|
#
|
102
|
-
#
|
92
|
+
# *call-seq* -> +super.find(id, options = {})+
|
103
93
|
#
|
104
|
-
#
|
94
|
+
# @overload find(id)
|
95
|
+
# @overload find(id, options={})
|
96
|
+
# @param options [Hash] Optional hash of options.
|
97
|
+
# ===== Valid Options
|
105
98
|
#
|
106
|
-
#
|
99
|
+
# +include+ | The list of associated objects to return on the initial request.
|
107
100
|
#
|
108
|
-
#
|
101
|
+
# ===== Valid Includable Associations
|
109
102
|
#
|
110
|
-
#
|
111
|
-
#
|
112
|
-
#
|
113
|
-
#
|
114
|
-
# See {API documentation}[http://api-docs.evident.io?ruby#signature-attributes] for valid arguments
|
115
|
-
#
|
116
|
-
# :call-seq:
|
117
|
-
# find(id, options = {})
|
103
|
+
# See {API documentation}[http://api-docs.evident.io?ruby#signature-attributes] for valid arguments
|
104
|
+
# @param id [Integer, Numeric, #to_i] Required ID of the signature to retrieve.
|
105
|
+
# @return [ESP::Signature]
|
118
106
|
|
119
|
-
#
|
120
|
-
#
|
107
|
+
# @!method self.all
|
108
|
+
# Return a paginated Signature list
|
109
|
+
#
|
110
|
+
# @return [ActiveResource::PaginatedCollection<ESP::Signature>]
|
121
111
|
end
|
122
112
|
end
|
data/lib/esp/resources/stat.rb
CHANGED
@@ -2,60 +2,75 @@ module ESP
|
|
2
2
|
class Stat < ESP::Resource
|
3
3
|
include ESP::StatTotals
|
4
4
|
|
5
|
-
##
|
6
5
|
# The report these stats are for.
|
6
|
+
#
|
7
|
+
# @return [ESP::Report]
|
7
8
|
belongs_to :report, class_name: 'ESP::Report'
|
8
9
|
|
9
|
-
##
|
10
10
|
# The stats for each region associated with this stat object.
|
11
|
+
#
|
12
|
+
# @return [ActiveResource::PaginatedCollection<ESP::StatRegion>]
|
11
13
|
has_many :regions, class_name: 'ESP::StatRegion'
|
12
14
|
|
13
|
-
##
|
14
15
|
# The stats for each service associated with this stat object.
|
16
|
+
#
|
17
|
+
# @return [ActiveResource::PaginatedCollection<ESP::StatService>]
|
15
18
|
has_many :services, class_name: 'ESP::StatService'
|
16
19
|
|
17
|
-
##
|
18
20
|
# The stats for each signature associated with this stat object.
|
21
|
+
#
|
22
|
+
# @return [ActiveResource::PaginatedCollection<ESP::StatSignature>]
|
19
23
|
has_many :signatures, class_name: 'ESP::StatSignature'
|
20
24
|
|
21
|
-
##
|
22
25
|
# The stats for each custom signature associated with this stat object.
|
26
|
+
#
|
27
|
+
# @return [ActiveResource::PaginatedCollection<ESP::StatCustomSignature>]
|
23
28
|
has_many :custom_signatures, class_name: 'ESP::StatCustomSignature'
|
24
29
|
|
25
30
|
# Not Implemented. You cannot search for a Stat.
|
31
|
+
#
|
32
|
+
# @return [void]
|
26
33
|
def self.where(*)
|
27
34
|
fail ESP::NotImplementedError
|
28
35
|
end
|
29
36
|
|
30
37
|
# Not Implemented. You cannot search for a Stat.
|
38
|
+
#
|
39
|
+
# @return [void]
|
31
40
|
def self.find(*)
|
32
41
|
fail ESP::NotImplementedError, 'Regular ARELlike methods are disabled. Use either the ESP::Stat.for_report or ESP::Stat.latest_for_teams method.'
|
33
42
|
end
|
34
43
|
|
35
|
-
#
|
36
|
-
#
|
44
|
+
# @!method self.create
|
45
|
+
# Not Implemented. You cannot create a Stat.
|
46
|
+
#
|
47
|
+
# @return [void]
|
37
48
|
|
38
|
-
#
|
39
|
-
#
|
49
|
+
# @!method save
|
50
|
+
# Not Implemented. You cannot create or update a Stat.
|
51
|
+
#
|
52
|
+
# @return [void]
|
40
53
|
|
41
|
-
#
|
42
|
-
#
|
54
|
+
# @!method destroy
|
55
|
+
# Not Implemented. You cannot delete a Stat.
|
56
|
+
#
|
57
|
+
# @return [void]
|
43
58
|
|
44
59
|
# Returns all the stats of all the alerts for a report identified by the report_id parameter. Said report contains all statistics for this alert triggered from signatures contained in all regions for the selected hour.
|
45
60
|
#
|
46
61
|
# ==== Parameters
|
47
62
|
#
|
48
|
-
#
|
63
|
+
# @param report_id [Integer, Numeric] Required ID of the report to retrieve stats for.
|
64
|
+
# @param options [Hash] Optional hash of options.
|
65
|
+
# ===== Valid Options
|
49
66
|
#
|
50
|
-
#
|
67
|
+
# +include+ | The list of associated objects to return on the initial request.
|
51
68
|
#
|
52
|
-
#
|
69
|
+
# ===== valid Includable Associations
|
53
70
|
#
|
54
|
-
#
|
55
|
-
#
|
56
|
-
#
|
57
|
-
#
|
58
|
-
# See {API documentation}[http://api-docs.evident.io?ruby#alert-attributes] for valid arguments
|
71
|
+
# See {API documentation}[http://api-docs.evident.io?ruby#alert-attributes] for valid arguments
|
72
|
+
# @return [ActiveResource::PaginatedCollection<ESP::Stat>]
|
73
|
+
# @raise [ArgumentError] if no +report_id+ is supplied.
|
59
74
|
def self.for_report(report_id = nil, options = {}) # rubocop:disable Style/OptionHash
|
60
75
|
fail ArgumentError, "You must supply a report id." unless report_id.present?
|
61
76
|
# call find_one directly since find is overriden/not implemented
|
@@ -63,81 +78,83 @@ module ESP
|
|
63
78
|
end
|
64
79
|
|
65
80
|
# Returns all the stats for the most recent report of each team accessible by the given API key.
|
81
|
+
#
|
82
|
+
# @return [ActiveResource::PaginatedCollection<ESP::Stat>]
|
66
83
|
def self.latest_for_teams
|
67
84
|
# call find_every directly since find is overriden/not implemented
|
68
85
|
find_every(from: :latest_for_teams)
|
69
86
|
end
|
70
87
|
|
71
|
-
#
|
88
|
+
# @!group 'total' rollup methods
|
72
89
|
|
73
|
-
#
|
90
|
+
# @!method total
|
74
91
|
|
75
|
-
#
|
92
|
+
# @!method total_pass
|
76
93
|
|
77
|
-
#
|
94
|
+
# @!method total_fail
|
78
95
|
|
79
|
-
#
|
96
|
+
# @!method total_warn
|
80
97
|
|
81
|
-
#
|
98
|
+
# @!method total_error
|
82
99
|
|
83
|
-
#
|
100
|
+
# @!method total_info
|
84
101
|
|
85
|
-
#
|
102
|
+
# @!method total_new_1h_pass
|
86
103
|
|
87
|
-
#
|
104
|
+
# @!method total_new_1h_fail
|
88
105
|
|
89
|
-
#
|
106
|
+
# @!method total_new_1h_warn
|
90
107
|
|
91
|
-
#
|
108
|
+
# @!method total_new_1h_error
|
92
109
|
|
93
|
-
#
|
110
|
+
# @!method total_new_1h_info
|
94
111
|
|
95
|
-
#
|
112
|
+
# @!method total_new_1d_pass
|
96
113
|
|
97
|
-
#
|
114
|
+
# @!method total_new_1d_fail
|
98
115
|
|
99
|
-
#
|
116
|
+
# @!method total_new_1d_warn
|
100
117
|
|
101
|
-
#
|
118
|
+
# @!method total_new_1d_error
|
102
119
|
|
103
|
-
#
|
120
|
+
# @!method total_new_1d_info
|
104
121
|
|
105
|
-
#
|
122
|
+
# @!method total_new_1w_pass
|
106
123
|
|
107
|
-
#
|
124
|
+
# @!method total_new_1w_fail
|
108
125
|
|
109
|
-
#
|
126
|
+
# @!method total_new_1w_error
|
110
127
|
|
111
|
-
#
|
128
|
+
# @!method total_new_1w_info
|
112
129
|
|
113
|
-
#
|
130
|
+
# @!method total_new_1w_warn
|
114
131
|
|
115
|
-
#
|
132
|
+
# @!method total_old_fail
|
116
133
|
|
117
|
-
#
|
134
|
+
# @!method total_old_pass
|
118
135
|
|
119
|
-
#
|
136
|
+
# @!method total_old_warn
|
120
137
|
|
121
|
-
#
|
138
|
+
# @!method total_old_error
|
122
139
|
|
123
|
-
#
|
140
|
+
# @!method total_old_info
|
124
141
|
|
125
|
-
#
|
142
|
+
# @!method total_suppressed
|
126
143
|
|
127
|
-
#
|
144
|
+
# @!method total_suppressed_pass
|
128
145
|
|
129
|
-
#
|
146
|
+
# @!method total_suppressed_fail
|
130
147
|
|
131
|
-
#
|
148
|
+
# @!method total_suppressed_warn
|
132
149
|
|
133
|
-
#
|
150
|
+
# @!method total_suppressed_error
|
134
151
|
|
135
|
-
#
|
152
|
+
# @!method total_new_1h
|
136
153
|
|
137
|
-
#
|
154
|
+
# @!method total_new_1d
|
138
155
|
|
139
|
-
#
|
156
|
+
# @!method total_new_1w
|
140
157
|
|
141
|
-
#
|
158
|
+
# @!method total_old
|
142
159
|
end
|
143
160
|
end
|
@@ -2,33 +2,33 @@ module ESP
|
|
2
2
|
class StatCustomSignature < ESP::Resource
|
3
3
|
include ESP::StatTotals
|
4
4
|
|
5
|
-
##
|
6
5
|
# The custom_signature these stats are for.
|
6
|
+
#
|
7
|
+
# @return [ESP::CustomSignature]
|
7
8
|
belongs_to :custom_signature, class_name: 'ESP::CustomSignature'
|
8
9
|
|
9
10
|
# Not Implemented. You cannot search for a StatSignature.
|
11
|
+
#
|
12
|
+
# @return [void]
|
10
13
|
def self.where(*)
|
11
14
|
fail ESP::NotImplementedError
|
12
15
|
end
|
13
16
|
|
14
17
|
# Returns a paginated collection of custom_signature stats for the given stat_id
|
15
|
-
# Convenience method to use instead of
|
16
|
-
#
|
17
|
-
# ==== Parameters
|
18
|
-
#
|
19
|
-
# +stat_id+ | Required | The ID of the stat to list custom_signature stats for
|
20
|
-
#
|
21
|
-
# +options+ | Optional | A hash of options
|
18
|
+
# Convenience method to use instead of {.find} since a stat_id is required to return custom_signature stats.
|
22
19
|
#
|
23
|
-
#
|
20
|
+
# @param stat_id [Integer, Numeric] Required ID of the stat to list custom_signature stats for.
|
21
|
+
# @param options [Hash] Optional hash of options.
|
22
|
+
# ===== Valid Options
|
24
23
|
#
|
25
|
-
#
|
24
|
+
# +include+ | The list of associated objects to return on the initial request.
|
26
25
|
#
|
27
|
-
#
|
26
|
+
# ===== valid Includable Associations
|
28
27
|
#
|
29
|
-
#
|
30
|
-
#
|
31
|
-
#
|
28
|
+
# See {API documentation}[http://api-docs.evident.io?ruby#stat-custom-signature-attributes] for valid arguments
|
29
|
+
# @return [ESP::StatCustomSignature]
|
30
|
+
# @raise [ArgumentError] if no +stat_id+ is supplied.
|
31
|
+
# @example
|
32
32
|
# stats = ESP::StatCustomSignature.for_stat(1194)
|
33
33
|
def self.for_stat(stat_id = nil, options = {}) # rubocop:disable Style/OptionHash
|
34
34
|
fail ArgumentError, "You must supply a stat id." unless stat_id.present?
|
@@ -38,22 +38,27 @@ module ESP
|
|
38
38
|
|
39
39
|
# Find a StatRegion by id
|
40
40
|
#
|
41
|
-
#
|
42
|
-
#
|
43
|
-
# +id+ | Required | The ID of the custom_signature stat to retrieve
|
44
|
-
#
|
45
|
-
# +options+ | Optional | A hash of options
|
46
|
-
#
|
47
|
-
# ===== Valid Options
|
41
|
+
# *call-seq* -> +super.find(id, options = {})+
|
48
42
|
#
|
49
|
-
#
|
43
|
+
# @overload find(id)
|
44
|
+
# @param id [Integer, Numeric, #to_i] Required ID of the custom_signature stat to retrieve.
|
45
|
+
# @overload find(id, options)
|
46
|
+
# @param id [Integer, Numeric, #to_i] Required ID of the custom_signature stat to retrieve.
|
47
|
+
# @param options [Hash] Optional hash of options.
|
48
|
+
# ===== Valid Options
|
50
49
|
#
|
51
|
-
#
|
50
|
+
# +include+ | The list of associated objects to return on the initial request.
|
52
51
|
#
|
53
|
-
#
|
52
|
+
# ===== valid Includable Associations
|
54
53
|
#
|
55
|
-
#
|
56
|
-
#
|
54
|
+
# See {API documentation}[http://api-docs.evident.io?ruby#stat-custom-signature-attributes] for valid arguments
|
55
|
+
# @overload find(scope, options)
|
56
|
+
# *call-seq* -> +super.all(options)+
|
57
|
+
# @api private
|
58
|
+
# @param scope [Object] *Example:* +:all+
|
59
|
+
# @param options [Hash] +params: { stat_id: Integer }+
|
60
|
+
# @raise [ArgumentError] if no +stat_id+ is supplied.
|
61
|
+
# @return [ESP::StatCustomSignature]
|
57
62
|
def self.find(*arguments)
|
58
63
|
scope = arguments.slice!(0)
|
59
64
|
options = (arguments.slice!(0) || {}).with_indifferent_access
|
@@ -63,85 +68,88 @@ module ESP
|
|
63
68
|
for_stat(stat_id)
|
64
69
|
end
|
65
70
|
|
66
|
-
#
|
71
|
+
# @!method self.create
|
67
72
|
# Not Implemented. You cannot create a Stat.
|
73
|
+
# @return [void]
|
68
74
|
|
69
|
-
#
|
75
|
+
# @!method save
|
70
76
|
# Not Implemented. You cannot create or update a Stat.
|
77
|
+
# @return [void]
|
71
78
|
|
72
|
-
#
|
79
|
+
# @!method destroy
|
73
80
|
# Not Implemented. You cannot delete a Stat.
|
81
|
+
# @return [void]
|
74
82
|
|
75
|
-
#
|
83
|
+
# @!group 'total' rollup methods
|
76
84
|
|
77
|
-
#
|
85
|
+
# @!method total
|
78
86
|
|
79
|
-
#
|
87
|
+
# @!method total_pass
|
80
88
|
|
81
|
-
#
|
89
|
+
# @!method total_fail
|
82
90
|
|
83
|
-
#
|
91
|
+
# @!method total_warn
|
84
92
|
|
85
|
-
#
|
93
|
+
# @!method total_error
|
86
94
|
|
87
|
-
#
|
95
|
+
# @!method total_info
|
88
96
|
|
89
|
-
#
|
97
|
+
# @!method total_new_1h_pass
|
90
98
|
|
91
|
-
#
|
99
|
+
# @!method total_new_1h_fail
|
92
100
|
|
93
|
-
#
|
101
|
+
# @!method total_new_1h_warn
|
94
102
|
|
95
|
-
#
|
103
|
+
# @!method total_new_1h_error
|
96
104
|
|
97
|
-
#
|
105
|
+
# @!method total_new_1h_info
|
98
106
|
|
99
|
-
#
|
107
|
+
# @!method total_new_1d_pass
|
100
108
|
|
101
|
-
#
|
109
|
+
# @!method total_new_1d_fail
|
102
110
|
|
103
|
-
#
|
111
|
+
# @!method total_new_1d_warn
|
104
112
|
|
105
|
-
#
|
113
|
+
# @!method total_new_1d_error
|
106
114
|
|
107
|
-
#
|
115
|
+
# @!method total_new_1d_info
|
108
116
|
|
109
|
-
#
|
117
|
+
# @!method total_new_1w_pass
|
110
118
|
|
111
|
-
#
|
119
|
+
# @!method total_new_1w_fail
|
112
120
|
|
113
|
-
#
|
121
|
+
# @!method total_new_1w_error
|
114
122
|
|
115
|
-
#
|
123
|
+
# @!method total_new_1w_info
|
116
124
|
|
117
|
-
#
|
125
|
+
# @!method total_new_1w_warn
|
118
126
|
|
119
|
-
#
|
127
|
+
# @!method total_old_fail
|
120
128
|
|
121
|
-
#
|
129
|
+
# @!method total_old_pass
|
122
130
|
|
123
|
-
#
|
131
|
+
# @!method total_old_warn
|
124
132
|
|
125
|
-
#
|
133
|
+
# @!method total_old_error
|
126
134
|
|
127
|
-
#
|
135
|
+
# @!method total_old_info
|
128
136
|
|
129
|
-
#
|
137
|
+
# @!method total_suppressed
|
130
138
|
|
131
|
-
#
|
139
|
+
# @!method total_suppressed_pass
|
132
140
|
|
133
|
-
#
|
141
|
+
# @!method total_suppressed_fail
|
134
142
|
|
135
|
-
#
|
143
|
+
# @!method total_suppressed_warn
|
136
144
|
|
137
|
-
#
|
145
|
+
# @!method total_suppressed_error
|
138
146
|
|
139
|
-
#
|
147
|
+
# @!method total_new_1h
|
140
148
|
|
141
|
-
#
|
149
|
+
# @!method total_new_1d
|
142
150
|
|
143
|
-
#
|
151
|
+
# @!method total_new_1w
|
144
152
|
|
145
|
-
#
|
153
|
+
# @!method total_old
|
146
154
|
end
|
147
155
|
end
|