8 lines
158 B
Ruby
8 lines
158 B
Ruby
class Metric
|
|
include ActiveGraph::Node
|
|
property :key, type: String
|
|
property :value, type: Integer, default: 0
|
|
validates :key, :presence => true
|
|
|
|
end
|