aggkit 0.4.7.15736 → 0.4.7.15738
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/Gemfile.lock +1 -1
- data/bin/aggwrap +5 -5
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83d7511907a7c1978890b66f7e48868e63593b90b544b683c16bb8de677127cc
|
|
4
|
+
data.tar.gz: 5dccd515b73f5108f4f8643e687398c5bc4f0336b91ab2550ece2c52c367ef50
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7123257659dab2bfcb8217dc3c0337ff117ec30fd282ec39d4cff29e7ee08133aaee15a5409755539548eab5b009296bb8258b970b0f04655f004fec492e246d
|
|
7
|
+
data.tar.gz: 92112818920407c61d86a021dfcdf17ccbe6311d0ff6a159ebbb909ec1e8e060bfd3b494a1ac7ae9d43234dc4f8a0279b7646583d34cfbfb586d019473ec0e9c
|
data/Gemfile.lock
CHANGED
data/bin/aggwrap
CHANGED
|
@@ -174,7 +174,7 @@ SERVICE_ID = "#{@opts[:service]}_#{@opts[:id]}".freeze
|
|
|
174
174
|
CheckID: @checks[:exec],
|
|
175
175
|
ServiceID: SERVICE_ID,
|
|
176
176
|
Name: "Wrapped service: #{@opts[:service]}. Process: #{@opts[:exec].inspect}",
|
|
177
|
-
Notes: "
|
|
177
|
+
Notes: "Service: #{SERVICE_ID} Check: #{@opts[:exec].inspect}",
|
|
178
178
|
DeregisterCriticalServiceAfter: '1m',
|
|
179
179
|
TTL: '50s'
|
|
180
180
|
)
|
|
@@ -185,7 +185,7 @@ if @opts[:http]
|
|
|
185
185
|
CheckID: @checks[:http],
|
|
186
186
|
ServiceID: SERVICE_ID,
|
|
187
187
|
Name: "Wrapped service: #{@opts[:service]}. HTTP: #{@opts[:http]}",
|
|
188
|
-
Notes: "
|
|
188
|
+
Notes: "Service: #{SERVICE_ID} Check: #{@checks[:http]}",
|
|
189
189
|
DeregisterCriticalServiceAfter: '1m',
|
|
190
190
|
TTL: '50s'
|
|
191
191
|
)
|
|
@@ -197,7 +197,7 @@ if @opts[:file]
|
|
|
197
197
|
CheckID: @checks[:file],
|
|
198
198
|
ServiceID: SERVICE_ID,
|
|
199
199
|
Name: "Wrapped service: #{@opts[:service]}. File: #{@opts[:file]}",
|
|
200
|
-
Notes: "
|
|
200
|
+
Notes: "Service: #{SERVICE_ID} Check: #{@checks[:file]}",
|
|
201
201
|
DeregisterCriticalServiceAfter: '1m',
|
|
202
202
|
TTL: '50s'
|
|
203
203
|
)
|
|
@@ -209,7 +209,7 @@ if @opts[:pidfile]
|
|
|
209
209
|
CheckID: @checks[:pidfile],
|
|
210
210
|
ServiceID: SERVICE_ID,
|
|
211
211
|
Name: "Wrapped service: #{@opts[:service]}. Pidfile: #{@opts[:pidfile]}",
|
|
212
|
-
Notes: "
|
|
212
|
+
Notes: "Service: #{SERVICE_ID} Check: #{@checks[:pidfile]}",
|
|
213
213
|
DeregisterCriticalServiceAfter: '1m',
|
|
214
214
|
TTL: '50s'
|
|
215
215
|
)
|
|
@@ -221,7 +221,7 @@ if @opts[:script]
|
|
|
221
221
|
CheckID: @checks[:script],
|
|
222
222
|
ServiceID: SERVICE_ID,
|
|
223
223
|
Name: "Wrapped service: #{@opts[:service]}. Script: #{@opts[:script]}",
|
|
224
|
-
Notes: "
|
|
224
|
+
Notes: "Service: #{SERVICE_ID} Check: #{@checks[:script]}",
|
|
225
225
|
DeregisterCriticalServiceAfter: '1m',
|
|
226
226
|
TTL: '50s'
|
|
227
227
|
)
|