scalingo 3.4.0 → 4.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (282) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/dependabot.yml +17 -0
  3. data/.github/workflows/publish.yml +6 -3
  4. data/.github/workflows/ruby.yml +3 -3
  5. data/.rubocop.yml +46 -17
  6. data/CHANGELOG.md +20 -1
  7. data/Gemfile +2 -0
  8. data/README.md +13 -62
  9. data/bin/console +11 -1
  10. data/bin/lint +2 -0
  11. data/bin/setup +21 -6
  12. data/bin/specs +2 -0
  13. data/lib/scalingo/api/client.rb +26 -53
  14. data/lib/scalingo/api/endpoint.rb +88 -11
  15. data/lib/scalingo/auth/keys.rb +4 -50
  16. data/lib/scalingo/auth/scm_integrations.rb +4 -51
  17. data/lib/scalingo/auth/tokens.rb +5 -72
  18. data/lib/scalingo/auth/two_factor_auth.rb +4 -55
  19. data/lib/scalingo/auth/user.rb +3 -38
  20. data/lib/scalingo/auth.rb +1 -1
  21. data/lib/scalingo/bearer_token.rb +16 -9
  22. data/lib/scalingo/billing/profile.rb +3 -40
  23. data/lib/scalingo/billing.rb +1 -1
  24. data/lib/scalingo/client.rb +21 -31
  25. data/lib/scalingo/configuration.rb +3 -27
  26. data/lib/scalingo/core_client.rb +9 -30
  27. data/lib/scalingo/database/backups.rb +9 -0
  28. data/lib/scalingo/database/databases.rb +8 -0
  29. data/lib/scalingo/database.rb +13 -0
  30. data/lib/scalingo/faraday/extract_meta.rb +33 -0
  31. data/lib/scalingo/faraday/extract_root_value.rb +18 -0
  32. data/lib/scalingo/faraday/response.rb +36 -0
  33. data/lib/scalingo/regional/addons.rb +18 -130
  34. data/lib/scalingo/regional/apps.rb +10 -103
  35. data/lib/scalingo/regional/autoscalers.rb +5 -64
  36. data/lib/scalingo/regional/collaborators.rb +4 -51
  37. data/lib/scalingo/regional/containers.rb +4 -51
  38. data/lib/scalingo/regional/deployments.rb +3 -38
  39. data/lib/scalingo/regional/domains.rb +5 -64
  40. data/lib/scalingo/regional/environment.rb +6 -77
  41. data/lib/scalingo/regional/events.rb +5 -50
  42. data/lib/scalingo/regional/logs.rb +10 -28
  43. data/lib/scalingo/regional/metrics.rb +2 -34
  44. data/lib/scalingo/regional/notifiers.rb +7 -90
  45. data/lib/scalingo/regional/operations.rb +5 -18
  46. data/lib/scalingo/regional/scm_repo_links.rb +8 -103
  47. data/lib/scalingo/regional.rb +1 -1
  48. data/lib/scalingo/token_holder.rb +1 -46
  49. data/lib/scalingo/version.rb +1 -1
  50. data/scalingo.gemspec +7 -7
  51. metadata +63 -285
  52. data/lib/scalingo/api/response.rb +0 -69
  53. data/lib/scalingo/regional_database/backups.rb +0 -44
  54. data/lib/scalingo/regional_database/databases.rb +0 -31
  55. data/lib/scalingo/regional_database.rb +0 -13
  56. data/samples/auth/keys/_meta.json +0 -13
  57. data/samples/auth/keys/all-200.json +0 -62
  58. data/samples/auth/keys/create-201.json +0 -67
  59. data/samples/auth/keys/create-422.json +0 -34
  60. data/samples/auth/keys/destroy-204.json +0 -19
  61. data/samples/auth/keys/destroy-404.json +0 -19
  62. data/samples/auth/keys/show-200.json +0 -60
  63. data/samples/auth/keys/show-404.json +0 -19
  64. data/samples/auth/scm_integrations/_meta.json +0 -14
  65. data/samples/auth/scm_integrations/all-200.json +0 -41
  66. data/samples/auth/scm_integrations/create-201.json +0 -41
  67. data/samples/auth/scm_integrations/create-422.json +0 -36
  68. data/samples/auth/scm_integrations/destroy-204.json +0 -15
  69. data/samples/auth/scm_integrations/destroy-404.json +0 -23
  70. data/samples/auth/scm_integrations/show-200.json +0 -34
  71. data/samples/auth/scm_integrations/show-404.json +0 -23
  72. data/samples/auth/tokens/_meta.json +0 -13
  73. data/samples/auth/tokens/all-200.json +0 -32
  74. data/samples/auth/tokens/create-201.json +0 -37
  75. data/samples/auth/tokens/destroy-204.json +0 -19
  76. data/samples/auth/tokens/destroy-404.json +0 -19
  77. data/samples/auth/tokens/exchange-200.json +0 -25
  78. data/samples/auth/tokens/exchange-401.json +0 -24
  79. data/samples/auth/tokens/renew-200.json +0 -32
  80. data/samples/auth/tokens/renew-404.json +0 -20
  81. data/samples/auth/two_factor_auth/_meta.json +0 -10
  82. data/samples/auth/two_factor_auth/disable-not-initiated.json +0 -23
  83. data/samples/auth/two_factor_auth/disable-success.json +0 -29
  84. data/samples/auth/two_factor_auth/initiate-already-enabled.json +0 -29
  85. data/samples/auth/two_factor_auth/initiate-success.json +0 -36
  86. data/samples/auth/two_factor_auth/initiate-wrong-provider.json +0 -29
  87. data/samples/auth/two_factor_auth/status.json +0 -29
  88. data/samples/auth/two_factor_auth/validate-not-initiated.json +0 -29
  89. data/samples/auth/two_factor_auth/validate-success.json +0 -49
  90. data/samples/auth/two_factor_auth/validate-wrong.json +0 -29
  91. data/samples/auth/user/_meta.json +0 -10
  92. data/samples/auth/user/self.json +0 -54
  93. data/samples/auth/user/stop-free-trial.json +0 -24
  94. data/samples/auth/user/update-200.json +0 -59
  95. data/samples/auth/user/update-422.json +0 -33
  96. data/samples/billing/profile/_meta.json +0 -23
  97. data/samples/billing/profile/create-201.json +0 -50
  98. data/samples/billing/profile/create-400.json +0 -27
  99. data/samples/billing/profile/create-422.json +0 -44
  100. data/samples/billing/profile/show-200.json +0 -41
  101. data/samples/billing/profile/show-404.json +0 -22
  102. data/samples/billing/profile/update-200.json +0 -47
  103. data/samples/billing/profile/update-422.json +0 -32
  104. data/samples/regional/addons/_meta.json +0 -22
  105. data/samples/regional/addons/categories-guest.json +0 -36
  106. data/samples/regional/addons/categories-logged.json +0 -37
  107. data/samples/regional/addons/destroy-204.json +0 -19
  108. data/samples/regional/addons/destroy-404.json +0 -24
  109. data/samples/regional/addons/find-200.json +0 -48
  110. data/samples/regional/addons/find-404.json +0 -24
  111. data/samples/regional/addons/for-200.json +0 -50
  112. data/samples/regional/addons/providers-guest.json +0 -588
  113. data/samples/regional/addons/providers-logged.json +0 -705
  114. data/samples/regional/addons/provision-201.json +0 -58
  115. data/samples/regional/addons/provision-400.json +0 -29
  116. data/samples/regional/addons/sso-200.json +0 -49
  117. data/samples/regional/addons/sso-404.json +0 -24
  118. data/samples/regional/addons/token-200.json +0 -49
  119. data/samples/regional/addons/token-404.json +0 -24
  120. data/samples/regional/addons/update-200.json +0 -58
  121. data/samples/regional/addons/update-404.json +0 -30
  122. data/samples/regional/apps/_meta.json +0 -52
  123. data/samples/regional/apps/all.json +0 -99
  124. data/samples/regional/apps/create-201.json +0 -66
  125. data/samples/regional/apps/create-422.json +0 -34
  126. data/samples/regional/apps/destroy-204.json +0 -19
  127. data/samples/regional/apps/destroy-404.json +0 -24
  128. data/samples/regional/apps/destroy-422.json +0 -27
  129. data/samples/regional/apps/find-200.json +0 -60
  130. data/samples/regional/apps/find-404.json +0 -24
  131. data/samples/regional/apps/logs_url.json +0 -62
  132. data/samples/regional/apps/rename-200.json +0 -65
  133. data/samples/regional/apps/rename-404.json +0 -29
  134. data/samples/regional/apps/rename-422.json +0 -33
  135. data/samples/regional/apps/transfer-200.json +0 -65
  136. data/samples/regional/apps/transfer-404.json +0 -27
  137. data/samples/regional/apps/transfer-422.json +0 -34
  138. data/samples/regional/apps/update-200.json +0 -66
  139. data/samples/regional/apps/update-stack-404.json +0 -30
  140. data/samples/regional/autoscalers/_meta.json +0 -27
  141. data/samples/regional/autoscalers/create-201.json +0 -49
  142. data/samples/regional/autoscalers/create-500.json +0 -32
  143. data/samples/regional/autoscalers/destroy-204.json +0 -20
  144. data/samples/regional/autoscalers/destroy-404.json +0 -25
  145. data/samples/regional/autoscalers/find-200.json +0 -39
  146. data/samples/regional/autoscalers/find-404.json +0 -25
  147. data/samples/regional/autoscalers/for-200.json +0 -41
  148. data/samples/regional/autoscalers/update-200.json +0 -45
  149. data/samples/regional/autoscalers/update-404.json +0 -31
  150. data/samples/regional/autoscalers/update-500.json +0 -30
  151. data/samples/regional/collaborators/_meta.json +0 -17
  152. data/samples/regional/collaborators/accept-200.json +0 -60
  153. data/samples/regional/collaborators/accept-400.json +0 -24
  154. data/samples/regional/collaborators/accept-404.json +0 -24
  155. data/samples/regional/collaborators/destroy-204.json +0 -19
  156. data/samples/regional/collaborators/destroy-404.json +0 -24
  157. data/samples/regional/collaborators/for-200.json +0 -34
  158. data/samples/regional/collaborators/invite-201.json +0 -37
  159. data/samples/regional/collaborators/invite-422.json +0 -34
  160. data/samples/regional/containers/_meta.json +0 -25
  161. data/samples/regional/containers/for-200.json +0 -39
  162. data/samples/regional/containers/restart-202.json +0 -28
  163. data/samples/regional/containers/restart-422.json +0 -33
  164. data/samples/regional/containers/scale-202.json +0 -48
  165. data/samples/regional/containers/scale-422.json +0 -36
  166. data/samples/regional/containers/sizes-guest.json +0 -115
  167. data/samples/regional/containers/sizes-logged.json +0 -116
  168. data/samples/regional/deployments/_meta.json +0 -8
  169. data/samples/regional/deployments/find-200.json +0 -45
  170. data/samples/regional/deployments/find-404.json +0 -24
  171. data/samples/regional/deployments/for-with-paging.json +0 -35
  172. data/samples/regional/deployments/for-without-pages.json +0 -56
  173. data/samples/regional/deployments/logs-200.json +0 -22
  174. data/samples/regional/deployments/logs-404.json +0 -24
  175. data/samples/regional/domains/_meta.json +0 -21
  176. data/samples/regional/domains/create-201.json +0 -44
  177. data/samples/regional/domains/create-422.json +0 -33
  178. data/samples/regional/domains/destroy-204.json +0 -19
  179. data/samples/regional/domains/destroy-404.json +0 -24
  180. data/samples/regional/domains/find-200.json +0 -38
  181. data/samples/regional/domains/find-404.json +0 -24
  182. data/samples/regional/domains/for-200.json +0 -40
  183. data/samples/regional/domains/update-200.json +0 -44
  184. data/samples/regional/domains/update-404.json +0 -30
  185. data/samples/regional/domains/update-422.json +0 -33
  186. data/samples/regional/environment/_meta.json +0 -43
  187. data/samples/regional/environment/bulk-destroy-204.json +0 -19
  188. data/samples/regional/environment/bulk-update-200.json +0 -70
  189. data/samples/regional/environment/create-201.json +0 -36
  190. data/samples/regional/environment/create-422.json +0 -37
  191. data/samples/regional/environment/destroy-204.json +0 -19
  192. data/samples/regional/environment/destroy-404.json +0 -24
  193. data/samples/regional/environment/for-200.json +0 -31
  194. data/samples/regional/environment/update-200.json +0 -35
  195. data/samples/regional/environment/update-404.json +0 -30
  196. data/samples/regional/events/_meta.json +0 -3
  197. data/samples/regional/events/all-200.json +0 -619
  198. data/samples/regional/events/categories-guest.json +0 -66
  199. data/samples/regional/events/categories-logged.json +0 -67
  200. data/samples/regional/events/for-200.json +0 -404
  201. data/samples/regional/events/types-guest.json +0 -288
  202. data/samples/regional/events/types-logged.json +0 -289
  203. data/samples/regional/logs/_meta.json +0 -11
  204. data/samples/regional/logs/archives-200.json +0 -28
  205. data/samples/regional/logs/get-guest-200.json +0 -18
  206. data/samples/regional/logs/get-logged-200.json +0 -19
  207. data/samples/regional/logs/get-with-limit-200.json +0 -18
  208. data/samples/regional/metrics/_meta.json +0 -15
  209. data/samples/regional/metrics/for-invalid-400.json +0 -23
  210. data/samples/regional/metrics/for-valid-cpu-200.json +0 -747
  211. data/samples/regional/metrics/for-valid-router-404.json +0 -23
  212. data/samples/regional/metrics/types-guest.json +0 -66
  213. data/samples/regional/metrics/types-logged.json +0 -67
  214. data/samples/regional/notifiers/_meta.json +0 -23
  215. data/samples/regional/notifiers/create-201.json +0 -55
  216. data/samples/regional/notifiers/create-404.json +0 -30
  217. data/samples/regional/notifiers/create-422.json +0 -36
  218. data/samples/regional/notifiers/destroy-204.json +0 -19
  219. data/samples/regional/notifiers/destroy-404.json +0 -24
  220. data/samples/regional/notifiers/find-200.json +0 -47
  221. data/samples/regional/notifiers/find-404.json +0 -24
  222. data/samples/regional/notifiers/for-200.json +0 -49
  223. data/samples/regional/notifiers/platforms-guest.json +0 -184
  224. data/samples/regional/notifiers/platforms-logged.json +0 -185
  225. data/samples/regional/notifiers/test-200.json +0 -22
  226. data/samples/regional/notifiers/test-404.json +0 -25
  227. data/samples/regional/notifiers/update-200.json +0 -53
  228. data/samples/regional/operations/_meta.json +0 -5
  229. data/samples/regional/operations/find-200.json +0 -31
  230. data/samples/regional/operations/find-404.json +0 -24
  231. data/samples/regional/scm_repo_links/_meta.json +0 -22
  232. data/samples/regional/scm_repo_links/create-201.json +0 -54
  233. data/samples/regional/scm_repo_links/destroy-204.json +0 -15
  234. data/samples/regional/scm_repo_links/manual-deploy-200.json +0 -32
  235. data/samples/regional/scm_repo_links/show-200.json +0 -43
  236. data/samples/regional/scm_repo_links/update-200.json +0 -50
  237. data/samples/regional_database/backups/_meta.json +0 -4
  238. data/samples/regional_database/backups/archive-200.json +0 -24
  239. data/samples/regional_database/backups/archive-400.json +0 -24
  240. data/samples/regional_database/backups/create-201.json +0 -32
  241. data/samples/regional_database/backups/create-400.json +0 -24
  242. data/samples/regional_database/backups/for-200.json +0 -52
  243. data/samples/regional_database/backups/for-400.json +0 -24
  244. data/samples/regional_database/databases/_meta.json +0 -3
  245. data/samples/regional_database/databases/find-200.json +0 -47
  246. data/samples/regional_database/databases/find-400.json +0 -24
  247. data/samples/regional_database/databases/upgrade-202.json +0 -39
  248. data/samples/regional_database/databases/upgrade-400.json +0 -24
  249. data/spec/scalingo/api/client_spec.rb +0 -256
  250. data/spec/scalingo/api/endpoint_spec.rb +0 -45
  251. data/spec/scalingo/api/response_spec.rb +0 -301
  252. data/spec/scalingo/auth/keys_spec.rb +0 -58
  253. data/spec/scalingo/auth/scm_integrations_spec.rb +0 -58
  254. data/spec/scalingo/auth/tokens_spec.rb +0 -74
  255. data/spec/scalingo/auth/two_factor_auth_spec.rb +0 -69
  256. data/spec/scalingo/auth/user_spec.rb +0 -31
  257. data/spec/scalingo/auth_spec.rb +0 -15
  258. data/spec/scalingo/bearer_token_spec.rb +0 -72
  259. data/spec/scalingo/billing/profile_spec.rb +0 -55
  260. data/spec/scalingo/billing_spec.rb +0 -11
  261. data/spec/scalingo/client_spec.rb +0 -93
  262. data/spec/scalingo/configuration_spec.rb +0 -57
  263. data/spec/scalingo/core_client_spec.rb +0 -23
  264. data/spec/scalingo/regional/addons_spec.rb +0 -169
  265. data/spec/scalingo/regional/apps_spec.rb +0 -137
  266. data/spec/scalingo/regional/autoscalers_spec.rb +0 -84
  267. data/spec/scalingo/regional/collaborators_spec.rb +0 -69
  268. data/spec/scalingo/regional/containers_spec.rb +0 -67
  269. data/spec/scalingo/regional/deployments_spec.rb +0 -45
  270. data/spec/scalingo/regional/domains_spec.rb +0 -84
  271. data/spec/scalingo/regional/environment_spec.rb +0 -77
  272. data/spec/scalingo/regional/events_spec.rb +0 -65
  273. data/spec/scalingo/regional/logs_spec.rb +0 -39
  274. data/spec/scalingo/regional/metrics_spec.rb +0 -46
  275. data/spec/scalingo/regional/notifiers_spec.rb +0 -113
  276. data/spec/scalingo/regional/operations_spec.rb +0 -27
  277. data/spec/scalingo/regional/scm_repo_links_spec.rb +0 -48
  278. data/spec/scalingo/regional_database/backups_spec.rb +0 -58
  279. data/spec/scalingo/regional_database/databases_spec.rb +0 -39
  280. data/spec/scalingo/regional_database_spec.rb +0 -11
  281. data/spec/scalingo/regional_spec.rb +0 -14
  282. data/spec/scalingo/token_holder_spec.rb +0 -81
@@ -1,288 +0,0 @@
1
- {
2
- "path": "/event_types",
3
- "method": "get",
4
- "request": {
5
- "headers": {
6
- }
7
- },
8
- "response": {
9
- "status": 200,
10
- "headers": {
11
- "Date": "Fri, 29 May 2020 13:57:46 GMT",
12
- "Etag": "W/\"636300ce2f0f2825b0a7e168a1d16a4a\"",
13
- "Content-Type": "application/json; charset=utf-8",
14
- "Transfer-Encoding": "chunked",
15
- "Connection": "keep-alive",
16
- "Cache-Control": "max-age=0, private, must-revalidate",
17
- "Referrer-Policy": "strict-origin-when-cross-origin"
18
- },
19
- "json_body": {
20
- "event_types": [
21
- {
22
- "id": "595cf85e6bb8f100167429df",
23
- "name": "addon_db_upgraded",
24
- "display_name": "Addon database upgraded",
25
- "description": "A database addon was upgraded",
26
- "template": null,
27
- "category_id": "595cf85d6bb8f100167429cb"
28
- },
29
- {
30
- "id": "595cf85d6bb8f100167429d1",
31
- "name": "app_deployed",
32
- "display_name": "App deployed",
33
- "description": "An app was deployed",
34
- "template": "",
35
- "category_id": "595cf85d6bb8f100167429ca"
36
- },
37
- {
38
- "id": "595cf85e6bb8f100167429e0",
39
- "name": "addon_deleted",
40
- "display_name": "Addon deleted",
41
- "description": "An addon was deleted",
42
- "template": null,
43
- "category_id": "595cf85d6bb8f100167429cb"
44
- },
45
- {
46
- "id": "595cf85e6bb8f100167429d9",
47
- "name": "app_renamed",
48
- "display_name": "App renamed",
49
- "description": "An app was renamed",
50
- "template": "",
51
- "category_id": "595cf85d6bb8f100167429ca"
52
- },
53
- {
54
- "id": "595cf85e6bb8f100167429e2",
55
- "name": "collaborator_accepted",
56
- "display_name": "Collaborator accepted",
57
- "description": "A collaborator invitation was accepted",
58
- "template": null,
59
- "category_id": "595cf85d6bb8f100167429cc"
60
- },
61
- {
62
- "id": "595cf85e6bb8f100167429e8",
63
- "name": "notifier_edited",
64
- "display_name": "Notifier edited",
65
- "description": "A notifier was edited",
66
- "template": null,
67
- "category_id": "595cf85d6bb8f100167429ce"
68
- },
69
- {
70
- "id": "595cf85e6bb8f100167429e9",
71
- "name": "notifier_removed",
72
- "display_name": "Notifier removed",
73
- "description": "A notifier was removed",
74
- "template": null,
75
- "category_id": "595cf85d6bb8f100167429ce"
76
- },
77
- {
78
- "id": "595cf85e6bb8f100167429ec",
79
- "name": "variable_bulk_edited",
80
- "display_name": "Variables bulk edited",
81
- "description": "Some variables was bulk edited",
82
- "template": null,
83
- "category_id": "595cf85d6bb8f100167429cf"
84
- },
85
- {
86
- "id": "595cf85e6bb8f100167429ea",
87
- "name": "variable_added",
88
- "display_name": "Variable added",
89
- "description": "A variable was added",
90
- "template": null,
91
- "category_id": "595cf85d6bb8f100167429cf"
92
- },
93
- {
94
- "id": "595cf85d6bb8f100167429d2",
95
- "name": "app_restarted",
96
- "display_name": "App restarted",
97
- "description": "An app was restarted",
98
- "template": "",
99
- "category_id": "595cf85d6bb8f100167429ca"
100
- },
101
- {
102
- "id": "595cf85e6bb8f100167429de",
103
- "name": "addon_plan_changed",
104
- "display_name": "Addon plan changed",
105
- "description": "An addon plan was changed",
106
- "template": null,
107
- "category_id": "595cf85d6bb8f100167429cb"
108
- },
109
- {
110
- "id": "595cf85e6bb8f100167429e6",
111
- "name": "domain_removed",
112
- "display_name": "Domain removed",
113
- "description": "A domain was removed",
114
- "template": null,
115
- "category_id": "595cf85d6bb8f100167429cd"
116
- },
117
- {
118
- "id": "595cf85e6bb8f100167429ee",
119
- "name": "github_link",
120
- "display_name": "Github link",
121
- "description": "A GitHub repo was linked to an app",
122
- "template": null,
123
- "category_id": "595cf85d6bb8f100167429d0"
124
- },
125
- {
126
- "id": "595cf85d6bb8f100167429d4",
127
- "name": "app_scaled",
128
- "display_name": "App scaled",
129
- "description": "An app was scaled",
130
- "template": "",
131
- "category_id": "595cf85d6bb8f100167429ca"
132
- },
133
- {
134
- "id": "595cf85e6bb8f100167429d7",
135
- "name": "app_deleted",
136
- "display_name": "App deleted",
137
- "description": "A command was ran in an app",
138
- "template": "",
139
- "category_id": "595cf85d6bb8f100167429ca"
140
- },
141
- {
142
- "id": "595cf85e6bb8f100167429e5",
143
- "name": "domain_edited",
144
- "display_name": "Domain edited",
145
- "description": "A domain was edited",
146
- "template": null,
147
- "category_id": "595cf85d6bb8f100167429cd"
148
- },
149
- {
150
- "id": "595cf85e6bb8f100167429e3",
151
- "name": "collaborator_removed",
152
- "display_name": "Collaborator removed",
153
- "description": "A collaborator was removed",
154
- "template": null,
155
- "category_id": "595cf85d6bb8f100167429cc"
156
- },
157
- {
158
- "id": "595cf85e6bb8f100167429ed",
159
- "name": "variable_removed",
160
- "display_name": "Variable removed",
161
- "description": "A variable was removed",
162
- "template": null,
163
- "category_id": "595cf85d6bb8f100167429cf"
164
- },
165
- {
166
- "id": "595cf85e6bb8f100167429da",
167
- "name": "app_alert_triggered",
168
- "display_name": "App alert triggered",
169
- "description": "An app alert was triggered",
170
- "template": "",
171
- "category_id": "595cf85d6bb8f100167429ca"
172
- },
173
- {
174
- "id": "595cf85e6bb8f100167429d8",
175
- "name": "app_transferred",
176
- "display_name": "App transferred",
177
- "description": "An app was transferred",
178
- "template": "",
179
- "category_id": "595cf85d6bb8f100167429ca"
180
- },
181
- {
182
- "id": "595cf85e6bb8f100167429dc",
183
- "name": "addon_resumed",
184
- "display_name": "Addon resumed",
185
- "description": "An addon was provisioned",
186
- "template": null,
187
- "category_id": "595cf85d6bb8f100167429cb"
188
- },
189
- {
190
- "id": "595cf85e6bb8f100167429e4",
191
- "name": "domain_added",
192
- "display_name": "Domain added",
193
- "description": "A domain was added",
194
- "template": null,
195
- "category_id": "595cf85d6bb8f100167429cd"
196
- },
197
- {
198
- "id": "595cf85e6bb8f100167429e7",
199
- "name": "notifier_added",
200
- "display_name": "Notifier added",
201
- "description": "A notifier was added",
202
- "template": null,
203
- "category_id": "595cf85d6bb8f100167429ce"
204
- },
205
- {
206
- "id": "595cf85e6bb8f100167429dd",
207
- "name": "addon_suspended",
208
- "display_name": "Addon suspended",
209
- "description": "An addon was suspended",
210
- "template": null,
211
- "category_id": "595cf85d6bb8f100167429cb"
212
- },
213
- {
214
- "id": "595cf85e6bb8f100167429eb",
215
- "name": "variable_edited",
216
- "display_name": "Variable edited",
217
- "description": "A variable was edited",
218
- "template": null,
219
- "category_id": "595cf85d6bb8f100167429cf"
220
- },
221
- {
222
- "id": "595cf85e6bb8f100167429ef",
223
- "name": "github_unlink",
224
- "display_name": "Github unlink",
225
- "description": "A GitHub repo was unlinked to an app",
226
- "template": null,
227
- "category_id": "595cf85d6bb8f100167429d0"
228
- },
229
- {
230
- "id": "595cf85d6bb8f100167429d3",
231
- "name": "app_crashed",
232
- "display_name": "App crashed",
233
- "description": "An app was crashed",
234
- "template": "",
235
- "category_id": "595cf85d6bb8f100167429ca"
236
- },
237
- {
238
- "id": "595cf85d6bb8f100167429d5",
239
- "name": "app_stopped",
240
- "display_name": "App stopped",
241
- "description": "An app was stopped",
242
- "template": "",
243
- "category_id": "595cf85d6bb8f100167429ca"
244
- },
245
- {
246
- "id": "595cf85e6bb8f100167429d6",
247
- "name": "app_command_ran",
248
- "display_name": "App command ran",
249
- "description": "A command was ran in an app",
250
- "template": "",
251
- "category_id": "595cf85d6bb8f100167429ca"
252
- },
253
- {
254
- "id": "595cf85e6bb8f100167429db",
255
- "name": "addon_provisioned",
256
- "display_name": "Addon provisioned",
257
- "description": "An addon was provisioned",
258
- "template": "",
259
- "category_id": "595cf85d6bb8f100167429cb"
260
- },
261
- {
262
- "id": "595cf85e6bb8f100167429e1",
263
- "name": "collaborator_invited",
264
- "display_name": "Collaborator invited",
265
- "description": "A collaborator was invited",
266
- "template": null,
267
- "category_id": "595cf85d6bb8f100167429cc"
268
- },
269
- {
270
- "id": "59c2797bc094990048778884",
271
- "name": "app_crashed_repeated",
272
- "display_name": "App crashed repeated",
273
- "description": "An app was crashed. This event is sent on each crash.",
274
- "template": "",
275
- "category_id": "595cf85d6bb8f100167429ca"
276
- },
277
- {
278
- "id": "5de654023e6b3b000f1dd75d",
279
- "name": "addon_updated",
280
- "display_name": "Addon Updated",
281
- "description": "An addon has been updated",
282
- "template": "",
283
- "category_id": "595cf85d6bb8f100167429cb"
284
- }
285
- ]
286
- }
287
- }
288
- }
@@ -1,289 +0,0 @@
1
- {
2
- "path": "/event_types",
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 13:57:46 GMT",
13
- "Etag": "W/\"636300ce2f0f2825b0a7e168a1d16a4a\"",
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
- "event_types": [
22
- {
23
- "id": "595cf85e6bb8f100167429df",
24
- "name": "addon_db_upgraded",
25
- "display_name": "Addon database upgraded",
26
- "description": "A database addon was upgraded",
27
- "template": null,
28
- "category_id": "595cf85d6bb8f100167429cb"
29
- },
30
- {
31
- "id": "595cf85d6bb8f100167429d1",
32
- "name": "app_deployed",
33
- "display_name": "App deployed",
34
- "description": "An app was deployed",
35
- "template": "",
36
- "category_id": "595cf85d6bb8f100167429ca"
37
- },
38
- {
39
- "id": "595cf85e6bb8f100167429e0",
40
- "name": "addon_deleted",
41
- "display_name": "Addon deleted",
42
- "description": "An addon was deleted",
43
- "template": null,
44
- "category_id": "595cf85d6bb8f100167429cb"
45
- },
46
- {
47
- "id": "595cf85e6bb8f100167429d9",
48
- "name": "app_renamed",
49
- "display_name": "App renamed",
50
- "description": "An app was renamed",
51
- "template": "",
52
- "category_id": "595cf85d6bb8f100167429ca"
53
- },
54
- {
55
- "id": "595cf85e6bb8f100167429e2",
56
- "name": "collaborator_accepted",
57
- "display_name": "Collaborator accepted",
58
- "description": "A collaborator invitation was accepted",
59
- "template": null,
60
- "category_id": "595cf85d6bb8f100167429cc"
61
- },
62
- {
63
- "id": "595cf85e6bb8f100167429e8",
64
- "name": "notifier_edited",
65
- "display_name": "Notifier edited",
66
- "description": "A notifier was edited",
67
- "template": null,
68
- "category_id": "595cf85d6bb8f100167429ce"
69
- },
70
- {
71
- "id": "595cf85e6bb8f100167429e9",
72
- "name": "notifier_removed",
73
- "display_name": "Notifier removed",
74
- "description": "A notifier was removed",
75
- "template": null,
76
- "category_id": "595cf85d6bb8f100167429ce"
77
- },
78
- {
79
- "id": "595cf85e6bb8f100167429ec",
80
- "name": "variable_bulk_edited",
81
- "display_name": "Variables bulk edited",
82
- "description": "Some variables was bulk edited",
83
- "template": null,
84
- "category_id": "595cf85d6bb8f100167429cf"
85
- },
86
- {
87
- "id": "595cf85e6bb8f100167429ea",
88
- "name": "variable_added",
89
- "display_name": "Variable added",
90
- "description": "A variable was added",
91
- "template": null,
92
- "category_id": "595cf85d6bb8f100167429cf"
93
- },
94
- {
95
- "id": "595cf85d6bb8f100167429d2",
96
- "name": "app_restarted",
97
- "display_name": "App restarted",
98
- "description": "An app was restarted",
99
- "template": "",
100
- "category_id": "595cf85d6bb8f100167429ca"
101
- },
102
- {
103
- "id": "595cf85e6bb8f100167429de",
104
- "name": "addon_plan_changed",
105
- "display_name": "Addon plan changed",
106
- "description": "An addon plan was changed",
107
- "template": null,
108
- "category_id": "595cf85d6bb8f100167429cb"
109
- },
110
- {
111
- "id": "595cf85e6bb8f100167429e6",
112
- "name": "domain_removed",
113
- "display_name": "Domain removed",
114
- "description": "A domain was removed",
115
- "template": null,
116
- "category_id": "595cf85d6bb8f100167429cd"
117
- },
118
- {
119
- "id": "595cf85e6bb8f100167429ee",
120
- "name": "github_link",
121
- "display_name": "Github link",
122
- "description": "A GitHub repo was linked to an app",
123
- "template": null,
124
- "category_id": "595cf85d6bb8f100167429d0"
125
- },
126
- {
127
- "id": "595cf85d6bb8f100167429d4",
128
- "name": "app_scaled",
129
- "display_name": "App scaled",
130
- "description": "An app was scaled",
131
- "template": "",
132
- "category_id": "595cf85d6bb8f100167429ca"
133
- },
134
- {
135
- "id": "595cf85e6bb8f100167429d7",
136
- "name": "app_deleted",
137
- "display_name": "App deleted",
138
- "description": "A command was ran in an app",
139
- "template": "",
140
- "category_id": "595cf85d6bb8f100167429ca"
141
- },
142
- {
143
- "id": "595cf85e6bb8f100167429e5",
144
- "name": "domain_edited",
145
- "display_name": "Domain edited",
146
- "description": "A domain was edited",
147
- "template": null,
148
- "category_id": "595cf85d6bb8f100167429cd"
149
- },
150
- {
151
- "id": "595cf85e6bb8f100167429e3",
152
- "name": "collaborator_removed",
153
- "display_name": "Collaborator removed",
154
- "description": "A collaborator was removed",
155
- "template": null,
156
- "category_id": "595cf85d6bb8f100167429cc"
157
- },
158
- {
159
- "id": "595cf85e6bb8f100167429ed",
160
- "name": "variable_removed",
161
- "display_name": "Variable removed",
162
- "description": "A variable was removed",
163
- "template": null,
164
- "category_id": "595cf85d6bb8f100167429cf"
165
- },
166
- {
167
- "id": "595cf85e6bb8f100167429da",
168
- "name": "app_alert_triggered",
169
- "display_name": "App alert triggered",
170
- "description": "An app alert was triggered",
171
- "template": "",
172
- "category_id": "595cf85d6bb8f100167429ca"
173
- },
174
- {
175
- "id": "595cf85e6bb8f100167429d8",
176
- "name": "app_transferred",
177
- "display_name": "App transferred",
178
- "description": "An app was transferred",
179
- "template": "",
180
- "category_id": "595cf85d6bb8f100167429ca"
181
- },
182
- {
183
- "id": "595cf85e6bb8f100167429dc",
184
- "name": "addon_resumed",
185
- "display_name": "Addon resumed",
186
- "description": "An addon was provisioned",
187
- "template": null,
188
- "category_id": "595cf85d6bb8f100167429cb"
189
- },
190
- {
191
- "id": "595cf85e6bb8f100167429e4",
192
- "name": "domain_added",
193
- "display_name": "Domain added",
194
- "description": "A domain was added",
195
- "template": null,
196
- "category_id": "595cf85d6bb8f100167429cd"
197
- },
198
- {
199
- "id": "595cf85e6bb8f100167429e7",
200
- "name": "notifier_added",
201
- "display_name": "Notifier added",
202
- "description": "A notifier was added",
203
- "template": null,
204
- "category_id": "595cf85d6bb8f100167429ce"
205
- },
206
- {
207
- "id": "595cf85e6bb8f100167429dd",
208
- "name": "addon_suspended",
209
- "display_name": "Addon suspended",
210
- "description": "An addon was suspended",
211
- "template": null,
212
- "category_id": "595cf85d6bb8f100167429cb"
213
- },
214
- {
215
- "id": "595cf85e6bb8f100167429eb",
216
- "name": "variable_edited",
217
- "display_name": "Variable edited",
218
- "description": "A variable was edited",
219
- "template": null,
220
- "category_id": "595cf85d6bb8f100167429cf"
221
- },
222
- {
223
- "id": "595cf85e6bb8f100167429ef",
224
- "name": "github_unlink",
225
- "display_name": "Github unlink",
226
- "description": "A GitHub repo was unlinked to an app",
227
- "template": null,
228
- "category_id": "595cf85d6bb8f100167429d0"
229
- },
230
- {
231
- "id": "595cf85d6bb8f100167429d3",
232
- "name": "app_crashed",
233
- "display_name": "App crashed",
234
- "description": "An app was crashed",
235
- "template": "",
236
- "category_id": "595cf85d6bb8f100167429ca"
237
- },
238
- {
239
- "id": "595cf85d6bb8f100167429d5",
240
- "name": "app_stopped",
241
- "display_name": "App stopped",
242
- "description": "An app was stopped",
243
- "template": "",
244
- "category_id": "595cf85d6bb8f100167429ca"
245
- },
246
- {
247
- "id": "595cf85e6bb8f100167429d6",
248
- "name": "app_command_ran",
249
- "display_name": "App command ran",
250
- "description": "A command was ran in an app",
251
- "template": "",
252
- "category_id": "595cf85d6bb8f100167429ca"
253
- },
254
- {
255
- "id": "595cf85e6bb8f100167429db",
256
- "name": "addon_provisioned",
257
- "display_name": "Addon provisioned",
258
- "description": "An addon was provisioned",
259
- "template": "",
260
- "category_id": "595cf85d6bb8f100167429cb"
261
- },
262
- {
263
- "id": "595cf85e6bb8f100167429e1",
264
- "name": "collaborator_invited",
265
- "display_name": "Collaborator invited",
266
- "description": "A collaborator was invited",
267
- "template": null,
268
- "category_id": "595cf85d6bb8f100167429cc"
269
- },
270
- {
271
- "id": "59c2797bc094990048778884",
272
- "name": "app_crashed_repeated",
273
- "display_name": "App crashed repeated",
274
- "description": "An app was crashed. This event is sent on each crash.",
275
- "template": "",
276
- "category_id": "595cf85d6bb8f100167429ca"
277
- },
278
- {
279
- "id": "5de654023e6b3b000f1dd75d",
280
- "name": "addon_updated",
281
- "display_name": "Addon Updated",
282
- "description": "An addon has been updated",
283
- "template": "",
284
- "category_id": "595cf85d6bb8f100167429cb"
285
- }
286
- ]
287
- }
288
- }
289
- }
@@ -1,11 +0,0 @@
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
- }
@@ -1,28 +0,0 @@
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
- }
@@ -1,18 +0,0 @@
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
- }