lib/hawkular/metrics/metrics_client.rb in hawkular-client-2.7.0 vs lib/hawkular/metrics/metrics_client.rb in hawkular-client-2.8.0
- old
+ new
@@ -23,10 +23,12 @@
attr_reader :tenants
# @return [Counters] access counters API
attr_reader :counters
# @return [Gauges] access gauges API
attr_reader :gauges
+ # @return [Strings] access strings API
+ attr_reader :strings
# @return [Availability] access counters API
attr_reader :avail
# @return [boolean] if it's using the legacy API or not
attr_reader :legacy_api
@@ -59,8 +61,9 @@
check_version
@tenants = Client::Tenants.new self
@counters = Client::Counters.new self
@gauges = Client::Gauges.new self
@avail = Client::Availability.new self
+ @strings = Client::Strings.new self
end
end
end