8 lines
170 B
Ruby
8 lines
170 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ClusterErrorEntity < Grape::Entity
|
||
|
expose :connection_error
|
||
|
expose :metrics_connection_error
|
||
|
expose :node_connection_error
|
||
|
end
|