trisulrp 3.2.37 → 3.2.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/trisulrp/trp.pb.rb +2 -0
- data/lib/trisulrp/trp.proto +2 -0
- data/trisulrp.gemspec +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c5863ffee309bffc8f054f19f25a02d2803533517fefe53eb1dde66afcdcdd01
|
|
4
|
+
data.tar.gz: 50a124a5d47ccdcc0332a443368a3d77d4e25f9cf2a96d0fdf1fa7ee02beb0a5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce9b0b1161d2af572e3f0bdac07c3d2d71c7a7d8024e3846d19aa0afe7cede75d917712244d414ad5c4ff5a0f11393539678a10470edb3f52f491dec81283939
|
|
7
|
+
data.tar.gz: 3713aaae54eba9f3b1105f9637109b187327e7ff88ce5eaf8bf64320b2519d5cfd5e49c90fcbc5388cd7db0e36c6fb820a0fc171a108f7a2c016c262526127ca
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.2.
|
|
1
|
+
3.2.39
|
data/lib/trisulrp/trp.pb.rb
CHANGED
|
@@ -623,6 +623,7 @@ module TRP
|
|
|
623
623
|
optional ::TRP::StatsArray, :minimums, 6
|
|
624
624
|
optional ::TRP::StatsArray, :samples, 8
|
|
625
625
|
optional ::TRP::StatsArray, :percentiles, 9
|
|
626
|
+
optional ::TRP::StatsArray, :latests, 10
|
|
626
627
|
end
|
|
627
628
|
|
|
628
629
|
class CounterGroupTopperRequest
|
|
@@ -868,6 +869,7 @@ module TRP
|
|
|
868
869
|
repeated ::TRP::KeySpaceRequest::KeySpace, :spaces, 5
|
|
869
870
|
optional :bool, :resolve_keys, 6, :default => true
|
|
870
871
|
optional :bool, :totals_only, 7, :default => false
|
|
872
|
+
optional :bool, :get_key_attributes, 8, :default => false
|
|
871
873
|
end
|
|
872
874
|
|
|
873
875
|
class KeySpaceResponse
|
data/lib/trisulrp/trp.proto
CHANGED
|
@@ -514,6 +514,7 @@ message CounterItemResponse{
|
|
|
514
514
|
optional StatsArray minimums=6; /// if volumes_only = 1 this contains MIN(..)
|
|
515
515
|
optional StatsArray samples=8; /// if volumes_only = 1 this contains SAMPLES(..)
|
|
516
516
|
optional StatsArray percentiles=9; /// if get_percentile > 0 this contains PERCENTILE(..) stream approx
|
|
517
|
+
optional StatsArray latests=10; /// if volumes_only = 1 this contains LATEST(..)
|
|
517
518
|
}
|
|
518
519
|
|
|
519
520
|
|
|
@@ -813,6 +814,7 @@ message KeySpaceRequest {
|
|
|
813
814
|
repeated KeySpace spaces=5; /// space1 OR space2 OR ..
|
|
814
815
|
optional bool resolve_keys=6[default=true]; /// resolve names
|
|
815
816
|
optional bool totals_only=7[default=false]; /// if set, only totals returned
|
|
817
|
+
optional bool get_key_attributes=8 [default=false]; /// if true, response keys get key_attributes as well
|
|
816
818
|
}
|
|
817
819
|
|
|
818
820
|
/// KeySpaceResponse
|
data/trisulrp.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: trisulrp 3.2.
|
|
5
|
+
# stub: trisulrp 3.2.39 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "trisulrp".freeze
|
|
9
|
-
s.version = "3.2.
|
|
9
|
+
s.version = "3.2.39"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib".freeze]
|
|
13
13
|
s.authors = ["vivek".freeze]
|
|
14
|
-
s.date = "2022-
|
|
14
|
+
s.date = "2022-10-07"
|
|
15
15
|
s.description = "This gem deals about the trisul remote protocol".freeze
|
|
16
16
|
s.email = "vivek_rajagopal@yahoo.com".freeze
|
|
17
17
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: trisulrp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.
|
|
4
|
+
version: 3.2.39
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vivek
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-10-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: protobuf
|