scalingo 3.0.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (222) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +6 -0
  3. data/.rubocop.yml +16 -0
  4. data/.travis.yml +24 -0
  5. data/CHANGELOG.md +29 -0
  6. data/Gemfile +4 -0
  7. data/Gemfile.lock +110 -0
  8. data/LICENSE.txt +22 -0
  9. data/README.md +147 -0
  10. data/Rakefile +6 -0
  11. data/bin/console +12 -0
  12. data/bin/setup +8 -0
  13. data/lib/scalingo.rb +2 -0
  14. data/lib/scalingo/api/client.rb +79 -0
  15. data/lib/scalingo/api/endpoint.rb +23 -0
  16. data/lib/scalingo/api/response.rb +71 -0
  17. data/lib/scalingo/auth.rb +21 -0
  18. data/lib/scalingo/auth/keys.rb +56 -0
  19. data/lib/scalingo/auth/scm_integrations.rb +57 -0
  20. data/lib/scalingo/auth/tokens.rb +78 -0
  21. data/lib/scalingo/auth/two_factor_auth.rb +61 -0
  22. data/lib/scalingo/auth/user.rb +31 -0
  23. data/lib/scalingo/bearer_token.rb +20 -0
  24. data/lib/scalingo/client.rb +105 -0
  25. data/lib/scalingo/config.rb +38 -0
  26. data/lib/scalingo/error/expired_token.rb +6 -0
  27. data/lib/scalingo/error/unauthenticated.rb +6 -0
  28. data/lib/scalingo/errors.rb +2 -0
  29. data/lib/scalingo/regional.rb +35 -0
  30. data/lib/scalingo/regional/addons.rb +109 -0
  31. data/lib/scalingo/regional/apps.rb +109 -0
  32. data/lib/scalingo/regional/collaborators.rb +57 -0
  33. data/lib/scalingo/regional/containers.rb +57 -0
  34. data/lib/scalingo/regional/deployments.rb +44 -0
  35. data/lib/scalingo/regional/domains.rb +70 -0
  36. data/lib/scalingo/regional/environment.rb +83 -0
  37. data/lib/scalingo/regional/events.rb +55 -0
  38. data/lib/scalingo/regional/logs.rb +38 -0
  39. data/lib/scalingo/regional/metrics.rb +41 -0
  40. data/lib/scalingo/regional/notifiers.rb +96 -0
  41. data/lib/scalingo/regional/operations.rb +18 -0
  42. data/lib/scalingo/regional/scm_repo_links.rb +109 -0
  43. data/lib/scalingo/version.rb +3 -0
  44. data/samples/auth/keys/_meta.json +13 -0
  45. data/samples/auth/keys/all-200.json +62 -0
  46. data/samples/auth/keys/create-201.json +67 -0
  47. data/samples/auth/keys/create-422.json +34 -0
  48. data/samples/auth/keys/destroy-204.json +19 -0
  49. data/samples/auth/keys/destroy-404.json +19 -0
  50. data/samples/auth/keys/show-200.json +60 -0
  51. data/samples/auth/keys/show-404.json +19 -0
  52. data/samples/auth/scm_integrations/_meta.json +14 -0
  53. data/samples/auth/scm_integrations/all-200.json +41 -0
  54. data/samples/auth/scm_integrations/create-201.json +41 -0
  55. data/samples/auth/scm_integrations/create-422.json +36 -0
  56. data/samples/auth/scm_integrations/destroy-204.json +15 -0
  57. data/samples/auth/scm_integrations/destroy-404.json +23 -0
  58. data/samples/auth/scm_integrations/show-200.json +34 -0
  59. data/samples/auth/scm_integrations/show-404.json +23 -0
  60. data/samples/auth/tokens/_meta.json +13 -0
  61. data/samples/auth/tokens/all-200.json +32 -0
  62. data/samples/auth/tokens/create-201.json +37 -0
  63. data/samples/auth/tokens/destroy-204.json +19 -0
  64. data/samples/auth/tokens/destroy-404.json +19 -0
  65. data/samples/auth/tokens/exchange-200.json +25 -0
  66. data/samples/auth/tokens/exchange-401.json +24 -0
  67. data/samples/auth/tokens/renew-200.json +32 -0
  68. data/samples/auth/tokens/renew-404.json +20 -0
  69. data/samples/auth/two_factor_auth/_meta.json +10 -0
  70. data/samples/auth/two_factor_auth/disable-not-initiated.json +23 -0
  71. data/samples/auth/two_factor_auth/disable-success.json +29 -0
  72. data/samples/auth/two_factor_auth/initiate-already-enabled.json +29 -0
  73. data/samples/auth/two_factor_auth/initiate-success.json +36 -0
  74. data/samples/auth/two_factor_auth/initiate-wrong-provider.json +29 -0
  75. data/samples/auth/two_factor_auth/status.json +29 -0
  76. data/samples/auth/two_factor_auth/validate-not-initiated.json +29 -0
  77. data/samples/auth/two_factor_auth/validate-success.json +49 -0
  78. data/samples/auth/two_factor_auth/validate-wrong.json +29 -0
  79. data/samples/auth/user/_meta.json +10 -0
  80. data/samples/auth/user/self.json +54 -0
  81. data/samples/auth/user/update-200.json +59 -0
  82. data/samples/auth/user/update-422.json +33 -0
  83. data/samples/regional/addons/_meta.json +22 -0
  84. data/samples/regional/addons/categories-guest.json +36 -0
  85. data/samples/regional/addons/categories-logged.json +37 -0
  86. data/samples/regional/addons/destroy-204.json +19 -0
  87. data/samples/regional/addons/destroy-404.json +24 -0
  88. data/samples/regional/addons/find-200.json +48 -0
  89. data/samples/regional/addons/find-404.json +24 -0
  90. data/samples/regional/addons/for-200.json +50 -0
  91. data/samples/regional/addons/providers-guest.json +588 -0
  92. data/samples/regional/addons/providers-logged.json +705 -0
  93. data/samples/regional/addons/provision-201.json +58 -0
  94. data/samples/regional/addons/provision-400.json +29 -0
  95. data/samples/regional/addons/sso-200.json +49 -0
  96. data/samples/regional/addons/sso-404.json +24 -0
  97. data/samples/regional/addons/update-200.json +58 -0
  98. data/samples/regional/addons/update-404.json +30 -0
  99. data/samples/regional/apps/_meta.json +52 -0
  100. data/samples/regional/apps/all.json +99 -0
  101. data/samples/regional/apps/create-201.json +66 -0
  102. data/samples/regional/apps/create-422.json +34 -0
  103. data/samples/regional/apps/destroy-204.json +19 -0
  104. data/samples/regional/apps/destroy-404.json +24 -0
  105. data/samples/regional/apps/destroy-422.json +27 -0
  106. data/samples/regional/apps/find-200.json +60 -0
  107. data/samples/regional/apps/find-404.json +24 -0
  108. data/samples/regional/apps/logs_url.json +62 -0
  109. data/samples/regional/apps/rename-200.json +65 -0
  110. data/samples/regional/apps/rename-404.json +29 -0
  111. data/samples/regional/apps/rename-422.json +33 -0
  112. data/samples/regional/apps/transfer-200.json +65 -0
  113. data/samples/regional/apps/transfer-404.json +27 -0
  114. data/samples/regional/apps/transfer-422.json +34 -0
  115. data/samples/regional/apps/update-200.json +66 -0
  116. data/samples/regional/apps/update-stack-404.json +30 -0
  117. data/samples/regional/collaborators/_meta.json +17 -0
  118. data/samples/regional/collaborators/accept-200.json +60 -0
  119. data/samples/regional/collaborators/accept-400.json +24 -0
  120. data/samples/regional/collaborators/accept-404.json +24 -0
  121. data/samples/regional/collaborators/destroy-204.json +19 -0
  122. data/samples/regional/collaborators/destroy-404.json +24 -0
  123. data/samples/regional/collaborators/for-200.json +34 -0
  124. data/samples/regional/collaborators/invite-201.json +37 -0
  125. data/samples/regional/collaborators/invite-422.json +34 -0
  126. data/samples/regional/containers/_meta.json +25 -0
  127. data/samples/regional/containers/for-200.json +39 -0
  128. data/samples/regional/containers/restart-202.json +28 -0
  129. data/samples/regional/containers/restart-422.json +33 -0
  130. data/samples/regional/containers/scale-202.json +48 -0
  131. data/samples/regional/containers/scale-422.json +36 -0
  132. data/samples/regional/containers/sizes-guest.json +115 -0
  133. data/samples/regional/containers/sizes-logged.json +116 -0
  134. data/samples/regional/deployments/_meta.json +8 -0
  135. data/samples/regional/deployments/find-200.json +45 -0
  136. data/samples/regional/deployments/find-404.json +24 -0
  137. data/samples/regional/deployments/for-with-paging.json +35 -0
  138. data/samples/regional/deployments/for-without-pages.json +56 -0
  139. data/samples/regional/deployments/logs-200.json +22 -0
  140. data/samples/regional/deployments/logs-404.json +24 -0
  141. data/samples/regional/domains/_meta.json +21 -0
  142. data/samples/regional/domains/create-201.json +44 -0
  143. data/samples/regional/domains/create-422.json +33 -0
  144. data/samples/regional/domains/destroy-204.json +19 -0
  145. data/samples/regional/domains/destroy-404.json +24 -0
  146. data/samples/regional/domains/find-200.json +38 -0
  147. data/samples/regional/domains/find-404.json +24 -0
  148. data/samples/regional/domains/for-200.json +40 -0
  149. data/samples/regional/domains/update-200.json +44 -0
  150. data/samples/regional/domains/update-404.json +30 -0
  151. data/samples/regional/domains/update-422.json +33 -0
  152. data/samples/regional/environment/_meta.json +43 -0
  153. data/samples/regional/environment/bulk-destroy-204.json +19 -0
  154. data/samples/regional/environment/bulk-update-200.json +70 -0
  155. data/samples/regional/environment/create-201.json +36 -0
  156. data/samples/regional/environment/create-422.json +37 -0
  157. data/samples/regional/environment/destroy-204.json +19 -0
  158. data/samples/regional/environment/destroy-404.json +24 -0
  159. data/samples/regional/environment/for-200.json +31 -0
  160. data/samples/regional/environment/update-200.json +35 -0
  161. data/samples/regional/environment/update-404.json +30 -0
  162. data/samples/regional/events/_meta.json +3 -0
  163. data/samples/regional/events/all-200.json +619 -0
  164. data/samples/regional/events/categories-guest.json +66 -0
  165. data/samples/regional/events/categories-logged.json +67 -0
  166. data/samples/regional/events/for-200.json +404 -0
  167. data/samples/regional/events/types-guest.json +288 -0
  168. data/samples/regional/events/types-logged.json +289 -0
  169. data/samples/regional/logs/_meta.json +11 -0
  170. data/samples/regional/logs/archives-200.json +28 -0
  171. data/samples/regional/logs/get-guest-200.json +18 -0
  172. data/samples/regional/logs/get-logged-200.json +19 -0
  173. data/samples/regional/logs/get-with-limit-200.json +18 -0
  174. data/samples/regional/metrics/_meta.json +15 -0
  175. data/samples/regional/metrics/for-invalid-400.json +23 -0
  176. data/samples/regional/metrics/for-valid-cpu-200.json +747 -0
  177. data/samples/regional/metrics/for-valid-router-404.json +23 -0
  178. data/samples/regional/metrics/types-guest.json +66 -0
  179. data/samples/regional/metrics/types-logged.json +67 -0
  180. data/samples/regional/notifiers/_meta.json +23 -0
  181. data/samples/regional/notifiers/create-201.json +55 -0
  182. data/samples/regional/notifiers/create-404.json +30 -0
  183. data/samples/regional/notifiers/create-422.json +36 -0
  184. data/samples/regional/notifiers/destroy-204.json +19 -0
  185. data/samples/regional/notifiers/destroy-404.json +24 -0
  186. data/samples/regional/notifiers/find-200.json +47 -0
  187. data/samples/regional/notifiers/find-404.json +24 -0
  188. data/samples/regional/notifiers/for-200.json +49 -0
  189. data/samples/regional/notifiers/platforms-guest.json +184 -0
  190. data/samples/regional/notifiers/platforms-logged.json +185 -0
  191. data/samples/regional/notifiers/test-200.json +22 -0
  192. data/samples/regional/notifiers/test-404.json +25 -0
  193. data/samples/regional/notifiers/update-200.json +53 -0
  194. data/samples/regional/operations/_meta.json +5 -0
  195. data/samples/regional/operations/find-200.json +31 -0
  196. data/samples/regional/operations/find-404.json +24 -0
  197. data/samples/regional/scm_repo_links/_meta.json +22 -0
  198. data/samples/regional/scm_repo_links/create-201.json +54 -0
  199. data/samples/regional/scm_repo_links/destroy-204.json +15 -0
  200. data/samples/regional/scm_repo_links/manual-deploy-200.json +32 -0
  201. data/samples/regional/scm_repo_links/show-200.json +43 -0
  202. data/samples/regional/scm_repo_links/update-200.json +50 -0
  203. data/scalingo.gemspec +51 -0
  204. data/spec/scalingo/auth/keys_spec.rb +58 -0
  205. data/spec/scalingo/auth/scm_integrations_spec.rb +58 -0
  206. data/spec/scalingo/auth/tokens_spec.rb +74 -0
  207. data/spec/scalingo/auth/two_factor_auth_spec.rb +69 -0
  208. data/spec/scalingo/auth/user_spec.rb +25 -0
  209. data/spec/scalingo/regional/addons_spec.rb +133 -0
  210. data/spec/scalingo/regional/apps_spec.rb +137 -0
  211. data/spec/scalingo/regional/collaborators_spec.rb +69 -0
  212. data/spec/scalingo/regional/containers_spec.rb +67 -0
  213. data/spec/scalingo/regional/deployments_spec.rb +45 -0
  214. data/spec/scalingo/regional/domains_spec.rb +84 -0
  215. data/spec/scalingo/regional/environment_spec.rb +77 -0
  216. data/spec/scalingo/regional/events_spec.rb +65 -0
  217. data/spec/scalingo/regional/logs_spec.rb +39 -0
  218. data/spec/scalingo/regional/metrics_spec.rb +46 -0
  219. data/spec/scalingo/regional/notifiers_spec.rb +113 -0
  220. data/spec/scalingo/regional/operations_spec.rb +19 -0
  221. data/spec/scalingo/regional/scm_repo_links_spec.rb +48 -0
  222. metadata +488 -0
@@ -0,0 +1,11 @@
1
+ {
2
+ "app_id": "example-running-application",
3
+ "urls": {
4
+ "guest": "https://logs-staging.scalingo.com/apps/5ed0fe5d884fef000f5e4fd1/logs?token=72Yh1hk8Q94k2nUkIrNQQ5OX1ZihdQVZZ7A5jKmvNcQBdxMSxd_XAGSS1hLpIZIE",
5
+ "logged": "https://logs-staging.scalingo.com/apps/5ed0fe5d884fef000f5e4fd1/logs?token=ZU5KAqQMdulCUukmHKd6iSAWJRdfNGsGL_5FZQkWJVRAmEW4JkR_LZPMQaPvDKLe",
6
+ "with_limit": "https://logs-staging.scalingo.com/apps/5ed0fe5d884fef000f5e4fd1/logs?token=ZU5KAqQMdulCUukmHKd6iSAWJRdfNGsGL_5FZQkWJVRAmEW4JkR_LZPMQaPvDKLe"
7
+ },
8
+ "options": {
9
+ "n": 2
10
+ }
11
+ }
@@ -0,0 +1,28 @@
1
+ {
2
+ "path": "/apps/example-running-application/logs_archives",
3
+ "method": "get",
4
+ "request": {
5
+ "headers": {
6
+ "Authorization": "Bearer the-bearer-token"
7
+ }
8
+ },
9
+ "response": {
10
+ "status": 200,
11
+ "headers": {
12
+ "Date": "Fri, 29 May 2020 14:17:54 GMT",
13
+ "Etag": "W/\"b974eeff6deca4c6e4f587c44a7bb1d3\"",
14
+ "Content-Type": "application/json; charset=utf-8",
15
+ "Transfer-Encoding": "chunked",
16
+ "Connection": "keep-alive",
17
+ "Cache-Control": "max-age=0, private, must-revalidate",
18
+ "Referrer-Policy": "strict-origin-when-cross-origin"
19
+ },
20
+ "json_body": {
21
+ "next_cursor": "",
22
+ "has_more": false,
23
+ "archives": [
24
+
25
+ ]
26
+ }
27
+ }
28
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "url": "https://logs-staging.scalingo.com/apps/5ed0fe5d884fef000f5e4fd1/logs?token=72Yh1hk8Q94k2nUkIrNQQ5OX1ZihdQVZZ7A5jKmvNcQBdxMSxd_XAGSS1hLpIZIE",
3
+ "method": "get",
4
+ "request": {
5
+ "headers": {
6
+ }
7
+ },
8
+ "response": {
9
+ "status": 200,
10
+ "headers": {
11
+ "Date": "Fri, 29 May 2020 14:17:55 GMT",
12
+ "Content-Type": "text/plain; charset=utf-8",
13
+ "Transfer-Encoding": "chunked",
14
+ "Connection": "keep-alive"
15
+ },
16
+ "body": "2020-05-29 14:34:29.830432944 +0200 CEST [web-2] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:34:30.146800736 +0200 CEST [web-1] App listening at http://:::22235\r\n2020-05-29 14:34:30.114801910 +0200 CEST [web-2] App listening at http://:::22236\r\n2020-05-29 14:37:02.182423686 +0200 CEST [manager] container [web-3] (5ed1015362291b50b7473b2d) has stopped\r\n2020-05-29 14:37:02.182359131 +0200 CEST [manager] container [web-2] (5ed1015362291b50b7473b2b) has stopped\r\n2020-05-29 14:37:11.582567073 +0200 CEST [manager] container [web-3] (5ed101f64ffb09636fb1b59e) started\r\n2020-05-29 14:37:11.801070949 +0200 CEST [manager] container [web-2] (5ed101f64ffb09636fb1b596) started\r\n2020-05-29 14:37:12.453252017 +0200 CEST [web-2] \r\n2020-05-29 14:37:12.453250656 +0200 CEST [web-2] > node app.js\r\n2020-05-29 14:37:12.397362504 +0200 CEST [web-3] App listening at http://:::22237\r\n2020-05-29 14:37:22.208218332 +0200 CEST [manager] container [web-2] (5ed1020162291b50b7473b30) started\r\n2020-05-29 14:37:22.373544118 +0200 CEST [manager] container [web-1] (5ed1020162291b50b7473b2e) started\r\n2020-05-29 14:37:22.875638172 +0200 CEST [web-2] \r\n2020-05-29 14:37:22.875631731 +0200 CEST [web-2] > node app.js\r\n2020-05-29 14:37:22.946082357 +0200 CEST [web-3] \r\n2020-05-29 14:37:22.946121840 +0200 CEST [web-3] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:37:22.946268588 +0200 CEST [web-3] > node app.js\r\n2020-05-29 14:37:22.966165590 +0200 CEST [web-1] > node app.js\r\n2020-05-29 14:37:23.153623053 +0200 CEST [web-3] App listening at http://:::22239\r\n2020-05-29 14:37:23.132343975 +0200 CEST [web-2] App listening at http://:::20902\r\n2020-05-29 14:37:23.191278703 +0200 CEST [web-1] App listening at http://:::22238\r\n2020-05-29 14:37:35.718034824 +0200 CEST [manager] container [web-3] (5ed1020162291b50b7473b2f) has stopped\r\n2020-05-29 14:37:38.996777470 +0200 CEST [manager] container [web-3] (5ed101f64ffb09636fb1b59e) has stopped\r\n2020-05-29 14:23:19.769592075 +0200 CEST [web-1] \r\n2020-05-29 14:23:19.769629555 +0200 CEST [web-1] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:23:19.769630814 +0200 CEST [web-1] > node app.js\r\n2020-05-29 14:23:19.769631561 +0200 CEST [web-1] \r\n2020-05-29 14:23:20.030541532 +0200 CEST [web-1] App listening at http://:::22231\r\n2020-05-29 14:23:20.683962851 +0200 CEST [manager] container [postdeploy-2231] (5ed0feb862291b50b7473aeb) started with the command 'ls -la /'\r\n2020-05-29 14:23:20.938828286 +0200 CEST [postdeploy-2231] drwx------ 9 appsdeck appsdeck 4096 May 29 12:22 app\r\n2020-05-29 14:23:20.939099331 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 Apr 24 2018 boot\r\n2020-05-29 14:23:20.939374591 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 May 29 12:21 buildpacks\r\n2020-05-29 14:23:20.939790367 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 Apr 24 2018 home\r\n2020-05-29 14:23:20.940061581 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 Dec 23 16:33 lib32\r\n2020-05-29 14:23:20.940901411 +0200 CEST [postdeploy-2231] drwx------ 1 root root 4096 Dec 23 16:39 root\r\n2020-05-29 14:23:20.941034046 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 Dec 23 16:36 run\r\n2020-05-29 14:23:20.941301030 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 Dec 2 12:43 srv\r\n2020-05-29 14:23:20.941798612 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 Jul 15 2019 usr\r\n2020-05-29 14:29:05.382345128 +0200 CEST [manager] container [web-3] (5ed1001062291b50b7473b03) started\r\n2020-05-29 14:29:05.867036134 +0200 CEST [web-3] \r\n2020-05-29 14:29:05.867082735 +0200 CEST [web-3] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:29:05.867084236 +0200 CEST [web-3] > node app.js\r\n2020-05-29 14:29:06.132419001 +0200 CEST [web-3] App listening at http://:::22232\r\n2020-05-29 14:29:15.533394646 +0200 CEST [web-2] > node app.js\r\n2020-05-29 14:31:23.459236485 +0200 CEST [web-3] \r\n2020-05-29 14:31:23.459309119 +0200 CEST [web-3] > node app.js\r\n2020-05-29 14:31:23.459310176 +0200 CEST [web-3] \r\n2020-05-29 14:31:23.654190113 +0200 CEST [web-3] App listening at http://:::22233\r\n2020-05-29 14:31:35.221523367 +0200 CEST [web-2] \r\n2020-05-29 14:31:35.460513122 +0200 CEST [web-2] App listening at http://:::20900\r\n2020-05-29 14:33:20.717798383 +0200 CEST [manager] container [web-3] (5ed1009a62291b50b7473b13) has stopped\r\n2020-05-29 14:34:06.116878646 +0200 CEST [web-2] \r\n2020-05-29 14:34:06.517314495 +0200 CEST [web-3] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:34:06.517195107 +0200 CEST [web-3] \r\n2020-05-29 14:34:06.517316602 +0200 CEST [web-3] \r\n2020-05-29 14:34:06.517316023 +0200 CEST [web-3] > node app.js\r\n2020-05-29 14:34:29.217821168 +0200 CEST [manager] container [web-2] (5ed1015362291b50b7473b2b) started\r\n2020-05-29 14:34:29.486822137 +0200 CEST [web-3] \r\n2020-05-29 14:34:29.486846047 +0200 CEST [web-3] \r\n2020-05-29 14:34:29.486845424 +0200 CEST [web-3] > node app.js\r\n2020-05-29 14:34:29.486844399 +0200 CEST [web-3] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:34:29.820284772 +0200 CEST [web-1] > node app.js\r\n2020-05-29 14:34:29.820285372 +0200 CEST [web-1] \r\n2020-05-29 14:34:29.830411460 +0200 CEST [web-2] \r\n2020-05-29 14:34:29.830434756 +0200 CEST [web-2] \r\n2020-05-29 14:34:29.830434003 +0200 CEST [web-2] > node app.js\r\n2020-05-29 14:34:44.469148598 +0200 CEST [manager] container [web-1] (5ed0fea462291b50b7473ae3) has stopped\r\n2020-05-29 14:34:44.718062110 +0200 CEST [manager] container [web-3] (5ed1013c62291b50b7473b23) has stopped\r\n2020-05-29 14:34:47.983159285 +0200 CEST [manager] container [web-2] (5ed1013c62291b50b7473b1b) has stopped\r\n2020-05-29 14:37:12.189659521 +0200 CEST [web-3] \r\n2020-05-29 14:37:12.189712244 +0200 CEST [web-3] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:37:12.189717756 +0200 CEST [web-3] > node app.js\r\n2020-05-29 14:37:12.189719083 +0200 CEST [web-3] \r\n2020-05-29 14:37:12.453167954 +0200 CEST [web-2] \r\n2020-05-29 14:37:12.453248321 +0200 CEST [web-2] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:37:12.701646476 +0200 CEST [web-2] App listening at http://:::20901\r\n2020-05-29 14:37:22.468001815 +0200 CEST [manager] container [web-3] (5ed1020162291b50b7473b2f) started\r\n2020-05-29 14:37:22.875553777 +0200 CEST [web-2] \r\n2020-05-29 14:37:22.875619770 +0200 CEST [web-2] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:37:22.966139147 +0200 CEST [web-1] \r\n2020-05-29 14:37:22.946330031 +0200 CEST [web-3] \r\n2020-05-29 14:37:22.966166173 +0200 CEST [web-1] \r\n2020-05-29 14:37:22.966164597 +0200 CEST [web-1] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:37:35.485957993 +0200 CEST [manager] container [web-2] (5ed1020162291b50b7473b30) has stopped\r\n2020-05-29 14:37:38.814510200 +0200 CEST [manager] container [web-2] (5ed101f64ffb09636fb1b596) has stopped\r\n2020-05-29 14:37:42.467426015 +0200 CEST [manager] container [web-1] (5ed1015362291b50b7473b2c) has stopped\r\n2020-05-29 15:27:47.158342856 +0200 CEST [web-3] \r\n2020-05-29 15:27:57.268012229 +0200 CEST [manager] container [web-1] (5ed10ddc4ffb09636fb1b5a7) started\r\n2020-05-29 15:27:57.839361762 +0200 CEST [web-3] \r\n2020-05-29 15:27:58.076125874 +0200 CEST [web-3] App listening at http://:::22241\r\n2020-05-29 15:27:58.113231032 +0200 CEST [web-1] \r\n2020-05-29 15:27:58.120318727 +0200 CEST [web-2] > sample-node-express@0.1.0 start /app\r\n2020-05-29 15:27:58.120321309 +0200 CEST [web-2] > node app.js\r\n2020-05-29 15:27:58.120322417 +0200 CEST [web-2] \r\n2020-05-29 15:27:58.377483006 +0200 CEST [web-2] App listening at http://:::21225\r\n2020-05-29 15:27:58.369680765 +0200 CEST [web-1] App listening at http://:::22242\r\n2020-05-29 15:28:10.718031722 +0200 CEST [manager] container [web-3] (5ed10ddc4ffb09636fb1b5a6) has stopped\r\n2020-05-29 15:28:13.903854732 +0200 CEST [manager] container [web-3] (5ed10dd162291b50b7473b39) has stopped\r\n2020-05-29 15:28:14.101386263 +0200 CEST [manager] container [web-2] (5ed10dd162291b50b7473b31) has stopped\r\n2020-05-29 15:28:17.352021680 +0200 CEST [manager] container [web-1] (5ed1020162291b50b7473b2e) has stopped\r\n"
17
+ }
18
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "url": "https://logs-staging.scalingo.com/apps/5ed0fe5d884fef000f5e4fd1/logs?token=ZU5KAqQMdulCUukmHKd6iSAWJRdfNGsGL_5FZQkWJVRAmEW4JkR_LZPMQaPvDKLe",
3
+ "method": "get",
4
+ "request": {
5
+ "headers": {
6
+ "Authorization": "Bearer the-bearer-token"
7
+ }
8
+ },
9
+ "response": {
10
+ "status": 200,
11
+ "headers": {
12
+ "Date": "Fri, 29 May 2020 14:17:58 GMT",
13
+ "Content-Type": "text/plain; charset=utf-8",
14
+ "Transfer-Encoding": "chunked",
15
+ "Connection": "keep-alive"
16
+ },
17
+ "body": "2020-05-29 14:37:35.718034824 +0200 CEST [manager] container [web-3] (5ed1020162291b50b7473b2f) has stopped\r\n2020-05-29 14:37:38.996777470 +0200 CEST [manager] container [web-3] (5ed101f64ffb09636fb1b59e) has stopped\r\n2020-05-29 14:23:19.769592075 +0200 CEST [web-1] \r\n2020-05-29 14:23:19.769629555 +0200 CEST [web-1] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:23:19.769630814 +0200 CEST [web-1] > node app.js\r\n2020-05-29 14:23:19.769631561 +0200 CEST [web-1] \r\n2020-05-29 14:23:20.030541532 +0200 CEST [web-1] App listening at http://:::22231\r\n2020-05-29 14:23:20.683962851 +0200 CEST [manager] container [postdeploy-2231] (5ed0feb862291b50b7473aeb) started with the command 'ls -la /'\r\n2020-05-29 14:23:20.938828286 +0200 CEST [postdeploy-2231] drwx------ 9 appsdeck appsdeck 4096 May 29 12:22 app\r\n2020-05-29 14:23:20.939099331 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 Apr 24 2018 boot\r\n2020-05-29 14:23:20.939374591 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 May 29 12:21 buildpacks\r\n2020-05-29 14:23:20.939790367 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 Apr 24 2018 home\r\n2020-05-29 14:23:20.940061581 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 Dec 23 16:33 lib32\r\n2020-05-29 14:23:20.940901411 +0200 CEST [postdeploy-2231] drwx------ 1 root root 4096 Dec 23 16:39 root\r\n2020-05-29 14:23:20.941034046 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 Dec 23 16:36 run\r\n2020-05-29 14:23:20.941301030 +0200 CEST [postdeploy-2231] drwxr-xr-x 2 root root 4096 Dec 2 12:43 srv\r\n2020-05-29 14:23:20.941798612 +0200 CEST [postdeploy-2231] drwxr-xr-x 1 root root 4096 Jul 15 2019 usr\r\n2020-05-29 14:29:05.382345128 +0200 CEST [manager] container [web-3] (5ed1001062291b50b7473b03) started\r\n2020-05-29 14:29:05.867036134 +0200 CEST [web-3] \r\n2020-05-29 14:29:05.867082735 +0200 CEST [web-3] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:29:05.867084236 +0200 CEST [web-3] > node app.js\r\n2020-05-29 14:29:06.132419001 +0200 CEST [web-3] App listening at http://:::22232\r\n2020-05-29 14:29:15.533394646 +0200 CEST [web-2] > node app.js\r\n2020-05-29 14:31:23.459236485 +0200 CEST [web-3] \r\n2020-05-29 14:31:23.459309119 +0200 CEST [web-3] > node app.js\r\n2020-05-29 14:31:23.459310176 +0200 CEST [web-3] \r\n2020-05-29 14:31:23.654190113 +0200 CEST [web-3] App listening at http://:::22233\r\n2020-05-29 14:31:35.221523367 +0200 CEST [web-2] \r\n2020-05-29 14:31:35.460513122 +0200 CEST [web-2] App listening at http://:::20900\r\n2020-05-29 14:33:20.717798383 +0200 CEST [manager] container [web-3] (5ed1009a62291b50b7473b13) has stopped\r\n2020-05-29 14:34:06.116878646 +0200 CEST [web-2] \r\n2020-05-29 14:34:06.517314495 +0200 CEST [web-3] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:34:06.517195107 +0200 CEST [web-3] \r\n2020-05-29 14:34:06.517316602 +0200 CEST [web-3] \r\n2020-05-29 14:34:06.517316023 +0200 CEST [web-3] > node app.js\r\n2020-05-29 14:34:29.217821168 +0200 CEST [manager] container [web-2] (5ed1015362291b50b7473b2b) started\r\n2020-05-29 14:34:29.486822137 +0200 CEST [web-3] \r\n2020-05-29 14:34:29.486846047 +0200 CEST [web-3] \r\n2020-05-29 14:34:29.486845424 +0200 CEST [web-3] > node app.js\r\n2020-05-29 14:34:29.486844399 +0200 CEST [web-3] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:34:29.820284772 +0200 CEST [web-1] > node app.js\r\n2020-05-29 14:34:29.820285372 +0200 CEST [web-1] \r\n2020-05-29 14:34:29.830411460 +0200 CEST [web-2] \r\n2020-05-29 14:34:29.830434756 +0200 CEST [web-2] \r\n2020-05-29 14:34:29.830434003 +0200 CEST [web-2] > node app.js\r\n2020-05-29 14:34:44.469148598 +0200 CEST [manager] container [web-1] (5ed0fea462291b50b7473ae3) has stopped\r\n2020-05-29 14:34:44.718062110 +0200 CEST [manager] container [web-3] (5ed1013c62291b50b7473b23) has stopped\r\n2020-05-29 14:34:47.983159285 +0200 CEST [manager] container [web-2] (5ed1013c62291b50b7473b1b) has stopped\r\n2020-05-29 14:37:12.189659521 +0200 CEST [web-3] \r\n2020-05-29 14:37:12.189712244 +0200 CEST [web-3] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:37:12.189717756 +0200 CEST [web-3] > node app.js\r\n2020-05-29 14:37:12.189719083 +0200 CEST [web-3] \r\n2020-05-29 14:37:12.453167954 +0200 CEST [web-2] \r\n2020-05-29 14:37:12.453248321 +0200 CEST [web-2] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:37:12.701646476 +0200 CEST [web-2] App listening at http://:::20901\r\n2020-05-29 14:37:22.468001815 +0200 CEST [manager] container [web-3] (5ed1020162291b50b7473b2f) started\r\n2020-05-29 14:37:22.875553777 +0200 CEST [web-2] \r\n2020-05-29 14:37:22.875619770 +0200 CEST [web-2] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:37:22.966139147 +0200 CEST [web-1] \r\n2020-05-29 14:37:22.946330031 +0200 CEST [web-3] \r\n2020-05-29 14:37:22.966166173 +0200 CEST [web-1] \r\n2020-05-29 14:37:22.966164597 +0200 CEST [web-1] > sample-node-express@0.1.0 start /app\r\n2020-05-29 14:37:35.485957993 +0200 CEST [manager] container [web-2] (5ed1020162291b50b7473b30) has stopped\r\n2020-05-29 14:37:38.814510200 +0200 CEST [manager] container [web-2] (5ed101f64ffb09636fb1b596) has stopped\r\n2020-05-29 14:37:42.467426015 +0200 CEST [manager] container [web-1] (5ed1015362291b50b7473b2c) has stopped\r\n2020-05-29 15:27:47.158342856 +0200 CEST [web-3] \r\n2020-05-29 15:27:57.268012229 +0200 CEST [manager] container [web-1] (5ed10ddc4ffb09636fb1b5a7) started\r\n2020-05-29 15:27:57.839361762 +0200 CEST [web-3] \r\n2020-05-29 15:27:58.076125874 +0200 CEST [web-3] App listening at http://:::22241\r\n2020-05-29 15:27:58.113231032 +0200 CEST [web-1] \r\n2020-05-29 15:27:58.120318727 +0200 CEST [web-2] > sample-node-express@0.1.0 start /app\r\n2020-05-29 15:27:58.120321309 +0200 CEST [web-2] > node app.js\r\n2020-05-29 15:27:58.120322417 +0200 CEST [web-2] \r\n2020-05-29 15:27:58.377483006 +0200 CEST [web-2] App listening at http://:::21225\r\n2020-05-29 15:27:58.369680765 +0200 CEST [web-1] App listening at http://:::22242\r\n2020-05-29 15:28:10.718031722 +0200 CEST [manager] container [web-3] (5ed10ddc4ffb09636fb1b5a6) has stopped\r\n2020-05-29 15:28:13.903854732 +0200 CEST [manager] container [web-3] (5ed10dd162291b50b7473b39) has stopped\r\n2020-05-29 15:28:14.101386263 +0200 CEST [manager] container [web-2] (5ed10dd162291b50b7473b31) has stopped\r\n2020-05-29 15:28:17.352021680 +0200 CEST [manager] container [web-1] (5ed1020162291b50b7473b2e) has stopped\r\n2020-05-29 15:27:46.480427776 +0200 CEST [manager] container [web-3] (5ed10dd162291b50b7473b39) started\r\n2020-05-29 15:27:46.968180231 +0200 CEST [manager] container [web-2] (5ed10dd162291b50b7473b31) started\r\n2020-05-29 15:27:47.158675094 +0200 CEST [web-3] > sample-node-express@0.1.0 start /app\r\n2020-05-29 15:27:47.158680167 +0200 CEST [web-3] > node app.js\r\n2020-05-29 15:27:47.158681528 +0200 CEST [web-3] \r\n2020-05-29 15:27:47.382296765 +0200 CEST [web-3] App listening at http://:::22240\r\n2020-05-29 15:27:47.637194562 +0200 CEST [web-2] \r\n2020-05-29 15:27:47.637462073 +0200 CEST [web-2] > sample-node-express@0.1.0 start /app\r\n2020-05-29 15:27:47.637819312 +0200 CEST [web-2] > node app.js\r\n2020-05-29 15:27:47.637851478 +0200 CEST [web-2] \r\n2020-05-29 15:27:47.914611702 +0200 CEST [web-2] App listening at http://:::21224\r\n2020-05-29 15:27:57.101210405 +0200 CEST [manager] container [web-3] (5ed10ddc4ffb09636fb1b5a6) started\r\n2020-05-29 15:27:57.477513592 +0200 CEST [manager] container [web-2] (5ed10ddc4ffb09636fb1b5a8) started\r\n2020-05-29 15:27:57.839066164 +0200 CEST [web-3] \r\n2020-05-29 15:27:57.839102284 +0200 CEST [web-3] > sample-node-express@0.1.0 start /app\r\n2020-05-29 15:27:57.839103431 +0200 CEST [web-3] > node app.js\r\n2020-05-29 15:27:58.112839402 +0200 CEST [web-1] \r\n2020-05-29 15:27:58.113225955 +0200 CEST [web-1] > sample-node-express@0.1.0 start /app\r\n2020-05-29 15:27:58.113229919 +0200 CEST [web-1] > node app.js\r\n2020-05-29 15:27:58.120261663 +0200 CEST [web-2] \r\n2020-05-29 15:28:10.718153340 +0200 CEST [manager] container [web-2] (5ed10ddc4ffb09636fb1b5a8) has stopped\r\n"
18
+ }
19
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "url": "https://logs-staging.scalingo.com/apps/5ed0fe5d884fef000f5e4fd1/logs?n=2&token=ZU5KAqQMdulCUukmHKd6iSAWJRdfNGsGL_5FZQkWJVRAmEW4JkR_LZPMQaPvDKLe",
3
+ "method": "get",
4
+ "request": {
5
+ "headers": {
6
+ "Authorization": "Bearer the-bearer-token"
7
+ }
8
+ },
9
+ "response": {
10
+ "status": 200,
11
+ "headers": {
12
+ "Date": "Fri, 29 May 2020 14:18:01 GMT",
13
+ "Content-Type": "text/plain; charset=utf-8",
14
+ "Connection": "keep-alive"
15
+ },
16
+ "body": "2020-05-29 15:27:58.120261663 +0200 CEST [web-2] \r\n2020-05-29 15:28:10.718153340 +0200 CEST [manager] container [web-2] (5ed10ddc4ffb09636fb1b5a8) has stopped\r\n"
17
+ }
18
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "app_id": "example-running-application",
3
+ "for": {
4
+ "valid_cpu": {
5
+ "metric": "cpu",
6
+ "container_type": "web"
7
+ },
8
+ "valid_router": {
9
+ "metric": "router"
10
+ },
11
+ "invalid": {
12
+ "metric": "cpu"
13
+ }
14
+ }
15
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "path": "/apps/example-running-application/stats/cpu",
3
+ "method": "get",
4
+ "request": {
5
+ "headers": {
6
+ "Authorization": "Bearer the-bearer-token"
7
+ }
8
+ },
9
+ "response": {
10
+ "status": 400,
11
+ "headers": {
12
+ "Date": "Sat, 30 May 2020 13:36:29 GMT",
13
+ "Content-Type": "application/json; charset=utf-8",
14
+ "Transfer-Encoding": "chunked",
15
+ "Connection": "keep-alive",
16
+ "Cache-Control": "no-cache",
17
+ "Referrer-Policy": "strict-origin-when-cross-origin"
18
+ },
19
+ "json_body": {
20
+ "error": "'container' should be defined"
21
+ }
22
+ }
23
+ }
@@ -0,0 +1,747 @@
1
+ {
2
+ "path": "/apps/example-running-application/stats/cpu/web",
3
+ "method": "get",
4
+ "request": {
5
+ "headers": {
6
+ "Authorization": "Bearer the-bearer-token"
7
+ }
8
+ },
9
+ "response": {
10
+ "status": 200,
11
+ "headers": {
12
+ "Date": "Sat, 30 May 2020 13:36:28 GMT",
13
+ "Etag": "W/\"49efc84f0203d9bd6c07a12902a49612\"",
14
+ "Content-Type": "application/json; charset=utf-8",
15
+ "Transfer-Encoding": "chunked",
16
+ "Connection": "keep-alive",
17
+ "Cache-Control": "max-age=0, private, must-revalidate",
18
+ "Referrer-Policy": "strict-origin-when-cross-origin"
19
+ },
20
+ "json_body": [
21
+ {
22
+ "time": "2020-05-30T10:36:00Z",
23
+ "value": null
24
+ },
25
+ {
26
+ "time": "2020-05-30T10:37:00Z",
27
+ "value": 0
28
+ },
29
+ {
30
+ "time": "2020-05-30T10:38:00Z",
31
+ "value": 0
32
+ },
33
+ {
34
+ "time": "2020-05-30T10:39:00Z",
35
+ "value": 0
36
+ },
37
+ {
38
+ "time": "2020-05-30T10:40:00Z",
39
+ "value": 0
40
+ },
41
+ {
42
+ "time": "2020-05-30T10:41:00Z",
43
+ "value": 0
44
+ },
45
+ {
46
+ "time": "2020-05-30T10:42:00Z",
47
+ "value": 0
48
+ },
49
+ {
50
+ "time": "2020-05-30T10:43:00Z",
51
+ "value": 0
52
+ },
53
+ {
54
+ "time": "2020-05-30T10:44:00Z",
55
+ "value": 0
56
+ },
57
+ {
58
+ "time": "2020-05-30T10:45:00Z",
59
+ "value": 0
60
+ },
61
+ {
62
+ "time": "2020-05-30T10:46:00Z",
63
+ "value": 0
64
+ },
65
+ {
66
+ "time": "2020-05-30T10:47:00Z",
67
+ "value": 0
68
+ },
69
+ {
70
+ "time": "2020-05-30T10:48:00Z",
71
+ "value": 0
72
+ },
73
+ {
74
+ "time": "2020-05-30T10:49:00Z",
75
+ "value": 0
76
+ },
77
+ {
78
+ "time": "2020-05-30T10:50:00Z",
79
+ "value": 0
80
+ },
81
+ {
82
+ "time": "2020-05-30T10:51:00Z",
83
+ "value": 0
84
+ },
85
+ {
86
+ "time": "2020-05-30T10:52:00Z",
87
+ "value": 0
88
+ },
89
+ {
90
+ "time": "2020-05-30T10:53:00Z",
91
+ "value": 0
92
+ },
93
+ {
94
+ "time": "2020-05-30T10:54:00Z",
95
+ "value": 0
96
+ },
97
+ {
98
+ "time": "2020-05-30T10:55:00Z",
99
+ "value": 0
100
+ },
101
+ {
102
+ "time": "2020-05-30T10:56:00Z",
103
+ "value": 0
104
+ },
105
+ {
106
+ "time": "2020-05-30T10:57:00Z",
107
+ "value": 0
108
+ },
109
+ {
110
+ "time": "2020-05-30T10:58:00Z",
111
+ "value": 0
112
+ },
113
+ {
114
+ "time": "2020-05-30T10:59:00Z",
115
+ "value": 0
116
+ },
117
+ {
118
+ "time": "2020-05-30T11:00:00Z",
119
+ "value": 0
120
+ },
121
+ {
122
+ "time": "2020-05-30T11:01:00Z",
123
+ "value": 0
124
+ },
125
+ {
126
+ "time": "2020-05-30T11:02:00Z",
127
+ "value": 0
128
+ },
129
+ {
130
+ "time": "2020-05-30T11:03:00Z",
131
+ "value": 0
132
+ },
133
+ {
134
+ "time": "2020-05-30T11:04:00Z",
135
+ "value": 0
136
+ },
137
+ {
138
+ "time": "2020-05-30T11:05:00Z",
139
+ "value": 0
140
+ },
141
+ {
142
+ "time": "2020-05-30T11:06:00Z",
143
+ "value": 0
144
+ },
145
+ {
146
+ "time": "2020-05-30T11:07:00Z",
147
+ "value": 0
148
+ },
149
+ {
150
+ "time": "2020-05-30T11:08:00Z",
151
+ "value": 0
152
+ },
153
+ {
154
+ "time": "2020-05-30T11:09:00Z",
155
+ "value": 0
156
+ },
157
+ {
158
+ "time": "2020-05-30T11:10:00Z",
159
+ "value": 0
160
+ },
161
+ {
162
+ "time": "2020-05-30T11:11:00Z",
163
+ "value": 0
164
+ },
165
+ {
166
+ "time": "2020-05-30T11:12:00Z",
167
+ "value": 0
168
+ },
169
+ {
170
+ "time": "2020-05-30T11:13:00Z",
171
+ "value": 0
172
+ },
173
+ {
174
+ "time": "2020-05-30T11:14:00Z",
175
+ "value": 0
176
+ },
177
+ {
178
+ "time": "2020-05-30T11:15:00Z",
179
+ "value": 0
180
+ },
181
+ {
182
+ "time": "2020-05-30T11:16:00Z",
183
+ "value": 0
184
+ },
185
+ {
186
+ "time": "2020-05-30T11:17:00Z",
187
+ "value": 0
188
+ },
189
+ {
190
+ "time": "2020-05-30T11:18:00Z",
191
+ "value": 0
192
+ },
193
+ {
194
+ "time": "2020-05-30T11:19:00Z",
195
+ "value": 0
196
+ },
197
+ {
198
+ "time": "2020-05-30T11:20:00Z",
199
+ "value": 0
200
+ },
201
+ {
202
+ "time": "2020-05-30T11:21:00Z",
203
+ "value": 0
204
+ },
205
+ {
206
+ "time": "2020-05-30T11:22:00Z",
207
+ "value": 0
208
+ },
209
+ {
210
+ "time": "2020-05-30T11:23:00Z",
211
+ "value": 0
212
+ },
213
+ {
214
+ "time": "2020-05-30T11:24:00Z",
215
+ "value": 0
216
+ },
217
+ {
218
+ "time": "2020-05-30T11:25:00Z",
219
+ "value": 0
220
+ },
221
+ {
222
+ "time": "2020-05-30T11:26:00Z",
223
+ "value": 0
224
+ },
225
+ {
226
+ "time": "2020-05-30T11:27:00Z",
227
+ "value": 0
228
+ },
229
+ {
230
+ "time": "2020-05-30T11:28:00Z",
231
+ "value": 0
232
+ },
233
+ {
234
+ "time": "2020-05-30T11:29:00Z",
235
+ "value": 0
236
+ },
237
+ {
238
+ "time": "2020-05-30T11:30:00Z",
239
+ "value": 0
240
+ },
241
+ {
242
+ "time": "2020-05-30T11:31:00Z",
243
+ "value": 0
244
+ },
245
+ {
246
+ "time": "2020-05-30T11:32:00Z",
247
+ "value": 0
248
+ },
249
+ {
250
+ "time": "2020-05-30T11:33:00Z",
251
+ "value": 0
252
+ },
253
+ {
254
+ "time": "2020-05-30T11:34:00Z",
255
+ "value": 0
256
+ },
257
+ {
258
+ "time": "2020-05-30T11:35:00Z",
259
+ "value": 0
260
+ },
261
+ {
262
+ "time": "2020-05-30T11:36:00Z",
263
+ "value": 0
264
+ },
265
+ {
266
+ "time": "2020-05-30T11:37:00Z",
267
+ "value": 0
268
+ },
269
+ {
270
+ "time": "2020-05-30T11:38:00Z",
271
+ "value": 0
272
+ },
273
+ {
274
+ "time": "2020-05-30T11:39:00Z",
275
+ "value": 0
276
+ },
277
+ {
278
+ "time": "2020-05-30T11:40:00Z",
279
+ "value": 0
280
+ },
281
+ {
282
+ "time": "2020-05-30T11:41:00Z",
283
+ "value": 0
284
+ },
285
+ {
286
+ "time": "2020-05-30T11:42:00Z",
287
+ "value": 0
288
+ },
289
+ {
290
+ "time": "2020-05-30T11:43:00Z",
291
+ "value": 0
292
+ },
293
+ {
294
+ "time": "2020-05-30T11:44:00Z",
295
+ "value": 0
296
+ },
297
+ {
298
+ "time": "2020-05-30T11:45:00Z",
299
+ "value": 0
300
+ },
301
+ {
302
+ "time": "2020-05-30T11:46:00Z",
303
+ "value": 0
304
+ },
305
+ {
306
+ "time": "2020-05-30T11:47:00Z",
307
+ "value": 0
308
+ },
309
+ {
310
+ "time": "2020-05-30T11:48:00Z",
311
+ "value": 0
312
+ },
313
+ {
314
+ "time": "2020-05-30T11:49:00Z",
315
+ "value": 0
316
+ },
317
+ {
318
+ "time": "2020-05-30T11:50:00Z",
319
+ "value": 0
320
+ },
321
+ {
322
+ "time": "2020-05-30T11:51:00Z",
323
+ "value": 0
324
+ },
325
+ {
326
+ "time": "2020-05-30T11:52:00Z",
327
+ "value": 0
328
+ },
329
+ {
330
+ "time": "2020-05-30T11:53:00Z",
331
+ "value": 0
332
+ },
333
+ {
334
+ "time": "2020-05-30T11:54:00Z",
335
+ "value": 0
336
+ },
337
+ {
338
+ "time": "2020-05-30T11:55:00Z",
339
+ "value": 0
340
+ },
341
+ {
342
+ "time": "2020-05-30T11:56:00Z",
343
+ "value": 0
344
+ },
345
+ {
346
+ "time": "2020-05-30T11:57:00Z",
347
+ "value": 0
348
+ },
349
+ {
350
+ "time": "2020-05-30T11:58:00Z",
351
+ "value": 0
352
+ },
353
+ {
354
+ "time": "2020-05-30T11:59:00Z",
355
+ "value": 0
356
+ },
357
+ {
358
+ "time": "2020-05-30T12:00:00Z",
359
+ "value": 0
360
+ },
361
+ {
362
+ "time": "2020-05-30T12:01:00Z",
363
+ "value": 0
364
+ },
365
+ {
366
+ "time": "2020-05-30T12:02:00Z",
367
+ "value": 0
368
+ },
369
+ {
370
+ "time": "2020-05-30T12:03:00Z",
371
+ "value": 0
372
+ },
373
+ {
374
+ "time": "2020-05-30T12:04:00Z",
375
+ "value": 0
376
+ },
377
+ {
378
+ "time": "2020-05-30T12:05:00Z",
379
+ "value": 0
380
+ },
381
+ {
382
+ "time": "2020-05-30T12:06:00Z",
383
+ "value": 0
384
+ },
385
+ {
386
+ "time": "2020-05-30T12:07:00Z",
387
+ "value": 0
388
+ },
389
+ {
390
+ "time": "2020-05-30T12:08:00Z",
391
+ "value": 0
392
+ },
393
+ {
394
+ "time": "2020-05-30T12:09:00Z",
395
+ "value": 0
396
+ },
397
+ {
398
+ "time": "2020-05-30T12:10:00Z",
399
+ "value": 0
400
+ },
401
+ {
402
+ "time": "2020-05-30T12:11:00Z",
403
+ "value": 0
404
+ },
405
+ {
406
+ "time": "2020-05-30T12:12:00Z",
407
+ "value": 0
408
+ },
409
+ {
410
+ "time": "2020-05-30T12:13:00Z",
411
+ "value": 0
412
+ },
413
+ {
414
+ "time": "2020-05-30T12:14:00Z",
415
+ "value": 0
416
+ },
417
+ {
418
+ "time": "2020-05-30T12:15:00Z",
419
+ "value": 0
420
+ },
421
+ {
422
+ "time": "2020-05-30T12:16:00Z",
423
+ "value": 0
424
+ },
425
+ {
426
+ "time": "2020-05-30T12:17:00Z",
427
+ "value": 0
428
+ },
429
+ {
430
+ "time": "2020-05-30T12:18:00Z",
431
+ "value": 0
432
+ },
433
+ {
434
+ "time": "2020-05-30T12:19:00Z",
435
+ "value": 0
436
+ },
437
+ {
438
+ "time": "2020-05-30T12:20:00Z",
439
+ "value": 0
440
+ },
441
+ {
442
+ "time": "2020-05-30T12:21:00Z",
443
+ "value": 0
444
+ },
445
+ {
446
+ "time": "2020-05-30T12:22:00Z",
447
+ "value": 0
448
+ },
449
+ {
450
+ "time": "2020-05-30T12:23:00Z",
451
+ "value": 0
452
+ },
453
+ {
454
+ "time": "2020-05-30T12:24:00Z",
455
+ "value": 0
456
+ },
457
+ {
458
+ "time": "2020-05-30T12:25:00Z",
459
+ "value": 0
460
+ },
461
+ {
462
+ "time": "2020-05-30T12:26:00Z",
463
+ "value": 0
464
+ },
465
+ {
466
+ "time": "2020-05-30T12:27:00Z",
467
+ "value": 0
468
+ },
469
+ {
470
+ "time": "2020-05-30T12:28:00Z",
471
+ "value": 0
472
+ },
473
+ {
474
+ "time": "2020-05-30T12:29:00Z",
475
+ "value": 0
476
+ },
477
+ {
478
+ "time": "2020-05-30T12:30:00Z",
479
+ "value": 0
480
+ },
481
+ {
482
+ "time": "2020-05-30T12:31:00Z",
483
+ "value": 0
484
+ },
485
+ {
486
+ "time": "2020-05-30T12:32:00Z",
487
+ "value": 0
488
+ },
489
+ {
490
+ "time": "2020-05-30T12:33:00Z",
491
+ "value": 0
492
+ },
493
+ {
494
+ "time": "2020-05-30T12:34:00Z",
495
+ "value": 0
496
+ },
497
+ {
498
+ "time": "2020-05-30T12:35:00Z",
499
+ "value": 0
500
+ },
501
+ {
502
+ "time": "2020-05-30T12:36:00Z",
503
+ "value": 0
504
+ },
505
+ {
506
+ "time": "2020-05-30T12:37:00Z",
507
+ "value": 0
508
+ },
509
+ {
510
+ "time": "2020-05-30T12:38:00Z",
511
+ "value": 0
512
+ },
513
+ {
514
+ "time": "2020-05-30T12:39:00Z",
515
+ "value": 0
516
+ },
517
+ {
518
+ "time": "2020-05-30T12:40:00Z",
519
+ "value": 0
520
+ },
521
+ {
522
+ "time": "2020-05-30T12:41:00Z",
523
+ "value": 0
524
+ },
525
+ {
526
+ "time": "2020-05-30T12:42:00Z",
527
+ "value": 0
528
+ },
529
+ {
530
+ "time": "2020-05-30T12:43:00Z",
531
+ "value": 0
532
+ },
533
+ {
534
+ "time": "2020-05-30T12:44:00Z",
535
+ "value": 0
536
+ },
537
+ {
538
+ "time": "2020-05-30T12:45:00Z",
539
+ "value": 0
540
+ },
541
+ {
542
+ "time": "2020-05-30T12:46:00Z",
543
+ "value": 0
544
+ },
545
+ {
546
+ "time": "2020-05-30T12:47:00Z",
547
+ "value": 0
548
+ },
549
+ {
550
+ "time": "2020-05-30T12:48:00Z",
551
+ "value": 0
552
+ },
553
+ {
554
+ "time": "2020-05-30T12:49:00Z",
555
+ "value": 0
556
+ },
557
+ {
558
+ "time": "2020-05-30T12:50:00Z",
559
+ "value": 0
560
+ },
561
+ {
562
+ "time": "2020-05-30T12:51:00Z",
563
+ "value": 0
564
+ },
565
+ {
566
+ "time": "2020-05-30T12:52:00Z",
567
+ "value": 0
568
+ },
569
+ {
570
+ "time": "2020-05-30T12:53:00Z",
571
+ "value": 0
572
+ },
573
+ {
574
+ "time": "2020-05-30T12:54:00Z",
575
+ "value": 0
576
+ },
577
+ {
578
+ "time": "2020-05-30T12:55:00Z",
579
+ "value": 0
580
+ },
581
+ {
582
+ "time": "2020-05-30T12:56:00Z",
583
+ "value": 0
584
+ },
585
+ {
586
+ "time": "2020-05-30T12:57:00Z",
587
+ "value": 0
588
+ },
589
+ {
590
+ "time": "2020-05-30T12:58:00Z",
591
+ "value": 0
592
+ },
593
+ {
594
+ "time": "2020-05-30T12:59:00Z",
595
+ "value": 0
596
+ },
597
+ {
598
+ "time": "2020-05-30T13:00:00Z",
599
+ "value": 0
600
+ },
601
+ {
602
+ "time": "2020-05-30T13:01:00Z",
603
+ "value": 0
604
+ },
605
+ {
606
+ "time": "2020-05-30T13:02:00Z",
607
+ "value": 0
608
+ },
609
+ {
610
+ "time": "2020-05-30T13:03:00Z",
611
+ "value": 0
612
+ },
613
+ {
614
+ "time": "2020-05-30T13:04:00Z",
615
+ "value": 0
616
+ },
617
+ {
618
+ "time": "2020-05-30T13:05:00Z",
619
+ "value": 0
620
+ },
621
+ {
622
+ "time": "2020-05-30T13:06:00Z",
623
+ "value": 0
624
+ },
625
+ {
626
+ "time": "2020-05-30T13:07:00Z",
627
+ "value": 0
628
+ },
629
+ {
630
+ "time": "2020-05-30T13:08:00Z",
631
+ "value": 0
632
+ },
633
+ {
634
+ "time": "2020-05-30T13:09:00Z",
635
+ "value": 0
636
+ },
637
+ {
638
+ "time": "2020-05-30T13:10:00Z",
639
+ "value": 0
640
+ },
641
+ {
642
+ "time": "2020-05-30T13:11:00Z",
643
+ "value": 0
644
+ },
645
+ {
646
+ "time": "2020-05-30T13:12:00Z",
647
+ "value": 0
648
+ },
649
+ {
650
+ "time": "2020-05-30T13:13:00Z",
651
+ "value": 0
652
+ },
653
+ {
654
+ "time": "2020-05-30T13:14:00Z",
655
+ "value": 0
656
+ },
657
+ {
658
+ "time": "2020-05-30T13:15:00Z",
659
+ "value": 0
660
+ },
661
+ {
662
+ "time": "2020-05-30T13:16:00Z",
663
+ "value": 0
664
+ },
665
+ {
666
+ "time": "2020-05-30T13:17:00Z",
667
+ "value": 0
668
+ },
669
+ {
670
+ "time": "2020-05-30T13:18:00Z",
671
+ "value": 0
672
+ },
673
+ {
674
+ "time": "2020-05-30T13:19:00Z",
675
+ "value": 0
676
+ },
677
+ {
678
+ "time": "2020-05-30T13:20:00Z",
679
+ "value": 0
680
+ },
681
+ {
682
+ "time": "2020-05-30T13:21:00Z",
683
+ "value": 0
684
+ },
685
+ {
686
+ "time": "2020-05-30T13:22:00Z",
687
+ "value": 0
688
+ },
689
+ {
690
+ "time": "2020-05-30T13:23:00Z",
691
+ "value": 0
692
+ },
693
+ {
694
+ "time": "2020-05-30T13:24:00Z",
695
+ "value": 0
696
+ },
697
+ {
698
+ "time": "2020-05-30T13:25:00Z",
699
+ "value": 0
700
+ },
701
+ {
702
+ "time": "2020-05-30T13:26:00Z",
703
+ "value": 0
704
+ },
705
+ {
706
+ "time": "2020-05-30T13:27:00Z",
707
+ "value": 0
708
+ },
709
+ {
710
+ "time": "2020-05-30T13:28:00Z",
711
+ "value": 0
712
+ },
713
+ {
714
+ "time": "2020-05-30T13:29:00Z",
715
+ "value": 0
716
+ },
717
+ {
718
+ "time": "2020-05-30T13:30:00Z",
719
+ "value": 0
720
+ },
721
+ {
722
+ "time": "2020-05-30T13:31:00Z",
723
+ "value": 0
724
+ },
725
+ {
726
+ "time": "2020-05-30T13:32:00Z",
727
+ "value": 0
728
+ },
729
+ {
730
+ "time": "2020-05-30T13:33:00Z",
731
+ "value": 0
732
+ },
733
+ {
734
+ "time": "2020-05-30T13:34:00Z",
735
+ "value": 0
736
+ },
737
+ {
738
+ "time": "2020-05-30T13:35:00Z",
739
+ "value": 0
740
+ },
741
+ {
742
+ "time": "2020-05-30T13:36:00Z",
743
+ "value": 0
744
+ }
745
+ ]
746
+ }
747
+ }