Skip to content

Commit

Permalink
fix(metrics): RHINENG-13848 temporarily disable path in metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
skateman committed Oct 25, 2024
1 parent 98a0f79 commit 292a09a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/controllers/application_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def append_info_to_payload(payload)
return if identity_header.blank?

payload[:qe] = OpenshiftEnvironment.qe_account?(identity_header.org_id)
payload[:path] = nil
# payload[:path] = nil
payload[:source] = nil
end

Expand Down
2 changes: 1 addition & 1 deletion app/controllers/v2/application_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def append_info_to_payload(payload)
return if identity_header.blank?

payload[:qe] = OpenshiftEnvironment.qe_account?(identity_header.org_id)
payload[:path] = obfuscate_path
# payload[:path] = obfuscate_path
payload[:source] = request_source
end

Expand Down
2 changes: 1 addition & 1 deletion config/initializers/yabeda.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
default_tag :qe, 0
default_tag :gql_op, nil
# APIv2 specific tags
default_tag :path, nil
# default_tag :path, nil
default_tag :source, 'basic'
end

Expand Down

0 comments on commit 292a09a

Please sign in to comment.