Class: SDM::Healthcheck

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

Healthcheck defines the status of the link between a node and a resource

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(error_msg: nil, healthy: nil, id: nil, node_id: nil, node_name: nil, resource_id: nil, resource_name: nil, timestamp: nil) ⇒ Healthcheck

Returns a new instance of Healthcheck.



8905
8906
8907
8908
8909
8910
8911
8912
8913
8914
8915
8916
8917
8918
8919
8920
8921
8922
8923
# File 'lib/models/porcelain.rb', line 8905

def initialize(
  error_msg: nil,
  healthy: nil,
  id: nil,
  node_id: nil,
  node_name: nil,
  resource_id: nil,
  resource_name: nil,
  timestamp: nil
)
  @error_msg = error_msg == nil ? "" : error_msg
  @healthy = healthy == nil ? false : healthy
  @id = id == nil ? "" : id
  @node_id = node_id == nil ? "" : node_id
  @node_name = node_name == nil ? "" : node_name
  @resource_id = resource_id == nil ? "" : resource_id
  @resource_name = resource_name == nil ? "" : resource_name
  @timestamp = timestamp == nil ? nil : timestamp
end

Instance Attribute Details

#error_msgObject

The error if unhealthy



8889
8890
8891
# File 'lib/models/porcelain.rb', line 8889

def error_msg
  @error_msg
end

#healthyObject

Whether the healthcheck succeeded.



8891
8892
8893
# File 'lib/models/porcelain.rb', line 8891

def healthy
  @healthy
end

#idObject

Unique identifier of the healthcheck.



8893
8894
8895
# File 'lib/models/porcelain.rb', line 8893

def id
  @id
end

#node_idObject

Unique identifier of the healthcheck node.



8895
8896
8897
# File 'lib/models/porcelain.rb', line 8895

def node_id
  @node_id
end

#node_nameObject

The name of the node.



8897
8898
8899
# File 'lib/models/porcelain.rb', line 8897

def node_name
  @node_name
end

#resource_idObject

Unique identifier of the healthcheck resource.



8899
8900
8901
# File 'lib/models/porcelain.rb', line 8899

def resource_id
  @resource_id
end

#resource_nameObject

The name of the resource.



8901
8902
8903
# File 'lib/models/porcelain.rb', line 8901

def resource_name
  @resource_name
end

#timestampObject

The time at which the healthcheck state was recorded.



8903
8904
8905
# File 'lib/models/porcelain.rb', line 8903

def timestamp
  @timestamp
end

Instance Method Details

#to_json(options = {}) ⇒ Object



8925
8926
8927
8928
8929
8930
8931
# File 'lib/models/porcelain.rb', line 8925

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end