Compare commits
82 Commits
Author | SHA1 | Date | |
---|---|---|---|
dbe2f8c31b | |||
0ae267ac1d | |||
a616bd2aad | |||
3fb5bc40bc | |||
9a2139036e | |||
bfde8d8d24 | |||
6391b007eb | |||
2d91ef6330 | |||
44ede54a60 | |||
e05c3282ef | |||
2e8105ef3a | |||
0eb21d2083 | |||
0022ebaf88 | |||
|
cab63d6b76 | ||
6c17b20c55 | |||
27ccc54458 | |||
f66b7ab587 | |||
dd93be535c | |||
|
48d5c6fe90 | ||
|
3e141e5318 | ||
69b5949f71 | |||
45edd76c8b | |||
467d7aa015 | |||
|
b1b94336b2 | ||
0460f1c793 | |||
7e34a5a7b1 | |||
99e60f656c | |||
|
13b02aa115 | ||
4593e5bddb | |||
7a66f37556 | |||
|
bcb8130f78 | ||
|
aaffb0371e | ||
|
c87a732e2a | ||
32bf461026 | |||
560f1ff34b | |||
|
ec26b84dc9 | ||
|
0b89e88905 | ||
|
9f42fcfcc4 | ||
|
96e323a705 | ||
|
de2f6cf0c4 | ||
67a952003d | |||
|
4b85b640ae | ||
|
84c284677e | ||
|
18399ecf15 | ||
|
3f7f19a3c6 | ||
|
09e139cdf8 | ||
|
c446a854ee | ||
|
49977ae8a2 | ||
|
2f36e01c57 | ||
|
bd78aba16d | ||
|
d732ab47d7 | ||
|
767dcfa82a | ||
|
1661db5d47 | ||
|
e9169c8419 | ||
|
6278bea13b | ||
|
f187283bd5 | ||
|
f1e0aacee3 | ||
|
1c9b924eab | ||
453cd37217 | |||
|
21ce1d3567 | ||
|
8e76a2e1c9 | ||
|
c0412f6eba | ||
|
3c8171af8e | ||
|
e03fc296ee | ||
|
d1fe47db6f | ||
|
e1cd5774f1 | ||
8bfc231a7e | |||
|
0288082cd5 | ||
|
af74eaaeeb | ||
|
3442702197 | ||
|
b82285e3cc | ||
|
5d9865b26d | ||
|
459383b733 | ||
|
8ab87cda82 | ||
62993ea985 | |||
3cb1d9bf20 | |||
|
f99aa7536e | ||
|
801a520255 | ||
|
d083edc2f3 | ||
6c118a82c0 | |||
3c35f84913 | |||
|
a923fb1adc |
@@ -26,14 +26,28 @@ services:
|
|||||||
- "traefik.http.routers.http-catchall.middlewares=redirect-to-https"
|
- "traefik.http.routers.http-catchall.middlewares=redirect-to-https"
|
||||||
- "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https"
|
- "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https"
|
||||||
|
|
||||||
|
tapas-db:
|
||||||
|
image: mongo
|
||||||
|
restart: unless-stopped
|
||||||
|
container_name: tapas_mongodb
|
||||||
|
environment:
|
||||||
|
MONGO_INITDB_ROOT_USERNAME: root
|
||||||
|
MONGO_INITDB_ROOT_PASSWORD: password
|
||||||
|
ports:
|
||||||
|
- "27017:27017"
|
||||||
|
command: mongod --quiet --logpath /dev/null
|
||||||
|
|
||||||
tapas-tasks:
|
tapas-tasks:
|
||||||
image: openjdk
|
image: openjdk
|
||||||
command: "java -jar /data/tapas-tasks-0.0.1-SNAPSHOT.jar"
|
command: "java -jar /data/tapas-tasks-0.0.1-SNAPSHOT.jar"
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
- tapas-db
|
||||||
volumes:
|
volumes:
|
||||||
- ./:/data/
|
- ./:/data/
|
||||||
environment:
|
environment:
|
||||||
roster.uri: http://roster:8082
|
roster.uri: http://roster:8082
|
||||||
|
spring.data.mongodb.uri: mongodb://root:password@tapas-db:27017
|
||||||
labels:
|
labels:
|
||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.http.routers.tapas-tasks.rule=Host(`tapas-tasks.${PUB_IP}.nip.io`)"
|
- "traefik.http.routers.tapas-tasks.rule=Host(`tapas-tasks.${PUB_IP}.nip.io`)"
|
||||||
@@ -47,10 +61,15 @@ services:
|
|||||||
image: openjdk
|
image: openjdk
|
||||||
command: "java -jar /data/tapas-auction-house-0.0.1-SNAPSHOT.jar"
|
command: "java -jar /data/tapas-auction-house-0.0.1-SNAPSHOT.jar"
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
- tapas-db
|
||||||
volumes:
|
volumes:
|
||||||
- ./:/data/
|
- ./:/data/
|
||||||
environment:
|
environment:
|
||||||
mqtt.broker.uri: tcp://broker.hivemq.com:1883
|
mqtt.broker.uri: tcp://broker.hivemq.com:1883
|
||||||
|
discovery.endpoint.uri: https://tapas-auction-house.86-119-34-242.nip.io
|
||||||
|
auction.house.uri: https://tapas-auction-house.86-119-35-40.nip.io
|
||||||
|
tasks.list.uri: https://tapas-tasks.86-119-35-40.nip.io
|
||||||
labels:
|
labels:
|
||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.http.routers.tapas-auction-house.rule=Host(`tapas-auction-house.${PUB_IP}.nip.io`)"
|
- "traefik.http.routers.tapas-auction-house.rule=Host(`tapas-auction-house.${PUB_IP}.nip.io`)"
|
||||||
@@ -64,13 +83,19 @@ services:
|
|||||||
image: openjdk
|
image: openjdk
|
||||||
command: "java -jar /data/roster-0.0.1-SNAPSHOT.jar"
|
command: "java -jar /data/roster-0.0.1-SNAPSHOT.jar"
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
- tapas-db
|
||||||
volumes:
|
volumes:
|
||||||
- ./:/data/
|
- ./:/data/
|
||||||
environment:
|
environment:
|
||||||
task-list.uri: http://tapas-tasks:8081
|
task.list.uri: http://tapas-tasks:8081
|
||||||
executor-robot.uri: http://executor-robot:8084
|
auction.house.uri: http://tapas-auction-house:8086
|
||||||
executor-computation.uri: http://executor-computation:8085
|
executor.robot.uri: http://executor-robot:8084
|
||||||
|
executor.computation.uri: http://executor-computation:8085
|
||||||
|
executor.humidity.uri: http://executor-humidity:8087
|
||||||
|
executor.humidity.demo.uri: http://executor-humidity-demo:8088
|
||||||
mqtt.broker.uri: tcp://broker.hivemq.com:1883
|
mqtt.broker.uri: tcp://broker.hivemq.com:1883
|
||||||
|
spring.data.mongodb.uri: mongodb://root:password@tapas-db:27017
|
||||||
labels:
|
labels:
|
||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.http.routers.roster.rule=Host(`roster.${PUB_IP}.nip.io`)"
|
- "traefik.http.routers.roster.rule=Host(`roster.${PUB_IP}.nip.io`)"
|
||||||
@@ -84,10 +109,13 @@ services:
|
|||||||
image: openjdk
|
image: openjdk
|
||||||
command: "java -jar /data/executor-pool-0.0.1-SNAPSHOT.jar"
|
command: "java -jar /data/executor-pool-0.0.1-SNAPSHOT.jar"
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
- tapas-db
|
||||||
volumes:
|
volumes:
|
||||||
- ./:/data/
|
- ./:/data/
|
||||||
environment:
|
environment:
|
||||||
mqtt.broker.uri: tcp://broker.hivemq.com:1883
|
mqtt.broker.uri: tcp://broker.hivemq.com:1883
|
||||||
|
spring.data.mongodb.uri: mongodb://root:password@tapas-db:27017
|
||||||
labels:
|
labels:
|
||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.http.routers.executor-pool.rule=Host(`executor-pool.${PUB_IP}.nip.io`)"
|
- "traefik.http.routers.executor-pool.rule=Host(`executor-pool.${PUB_IP}.nip.io`)"
|
||||||
@@ -104,11 +132,12 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- executor-pool
|
- executor-pool
|
||||||
- roster
|
- roster
|
||||||
|
- tapas-db
|
||||||
volumes:
|
volumes:
|
||||||
- ./:/data/
|
- ./:/data/
|
||||||
environment:
|
environment:
|
||||||
executor_pool_uri: http://executor-pool:8083
|
EXECUTOR_POOL_URI: http://executor-pool:8083
|
||||||
roster_uri: http://roster:8082
|
ROSTER_URI: http://roster:8082
|
||||||
labels:
|
labels:
|
||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.http.routers.executor-computation.rule=Host(`executor-computation.${PUB_IP}.nip.io`)"
|
- "traefik.http.routers.executor-computation.rule=Host(`executor-computation.${PUB_IP}.nip.io`)"
|
||||||
@@ -124,11 +153,12 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- executor-pool
|
- executor-pool
|
||||||
- roster
|
- roster
|
||||||
|
- tapas-db
|
||||||
volumes:
|
volumes:
|
||||||
- ./:/data/
|
- ./:/data/
|
||||||
environment:
|
environment:
|
||||||
executor_pool_uri: http://executor-pool:8083
|
EXECUTOR_POOL_URI: http://executor-pool:8083
|
||||||
roster_uri: http://roster:8082
|
ROSTER_URI: http://roster:8082
|
||||||
labels:
|
labels:
|
||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.http.routers.executor-robot.rule=Host(`executor-robot.${PUB_IP}.nip.io`)"
|
- "traefik.http.routers.executor-robot.rule=Host(`executor-robot.${PUB_IP}.nip.io`)"
|
||||||
@@ -137,3 +167,45 @@ services:
|
|||||||
- "traefik.http.routers.executor-robot.tls=true"
|
- "traefik.http.routers.executor-robot.tls=true"
|
||||||
- "traefik.http.routers.executor-robot.entryPoints=web,websecure"
|
- "traefik.http.routers.executor-robot.entryPoints=web,websecure"
|
||||||
- "traefik.http.routers.executor-robot.tls.certresolver=le"
|
- "traefik.http.routers.executor-robot.tls.certresolver=le"
|
||||||
|
executor-humidity:
|
||||||
|
image: openjdk
|
||||||
|
command: "java -jar /data/executor-humidity-0.0.1-SNAPSHOT.jar"
|
||||||
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
- executor-pool
|
||||||
|
- roster
|
||||||
|
- tapas-db
|
||||||
|
volumes:
|
||||||
|
- ./:/data/
|
||||||
|
environment:
|
||||||
|
EXECUTOR_POOL_URI: http://executor-pool:8083
|
||||||
|
ROSTER_URI: http://roster:8082
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.routers.executor-humidity.rule=Host(`executor-humidity.${PUB_IP}.nip.io`)"
|
||||||
|
- "traefik.http.routers.executor-humidity.service=executor-humidity"
|
||||||
|
- "traefik.http.services.executor-humidity.loadbalancer.server.port=8087"
|
||||||
|
- "traefik.http.routers.executor-humidity.tls=true"
|
||||||
|
- "traefik.http.routers.executor-humidity.entryPoints=web,websecure"
|
||||||
|
- "traefik.http.routers.executor-humidity.tls.certresolver=le"
|
||||||
|
executor-humidity-demo:
|
||||||
|
image: openjdk
|
||||||
|
command: "java -jar /data/executor-humidity-demo-0.0.1-SNAPSHOT.jar"
|
||||||
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
- executor-pool
|
||||||
|
- roster
|
||||||
|
- tapas-db
|
||||||
|
volumes:
|
||||||
|
- ./:/data/
|
||||||
|
environment:
|
||||||
|
EXECUTOR_POOL_URI: http://executor-pool:8083
|
||||||
|
ROSTER_URI: http://roster:8082
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.routers.executor-humidity-demo.rule=Host(`executor-humidity-demo.${PUB_IP}.nip.io`)"
|
||||||
|
- "traefik.http.routers.executor-humidity-demo.service=executor-humidity-demo"
|
||||||
|
- "traefik.http.services.executor-humidity-demo.loadbalancer.server.port=8088"
|
||||||
|
- "traefik.http.routers.executor-humidity-demo.tls=true"
|
||||||
|
- "traefik.http.routers.executor-humidity-demo.entryPoints=web,websecure"
|
||||||
|
- "traefik.http.routers.executor-humidity-demo.tls.certresolver=le"
|
||||||
|
266
.experiments/executor-computation/chaostoolkit.log
Normal file
266
.experiments/executor-computation/chaostoolkit.log
Normal file
@@ -0,0 +1,266 @@
|
|||||||
|
[36m[2021-11-28 16:28:04 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-28 16:28:04 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-28 16:28:04 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[32m[2021-11-28 16:28:05 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-28 16:28:05 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-28 16:28:05 INFO] [run:319][39m Running experiment: What is the impact of an expired certificate on our application chain?
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-28 16:28:05 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-28 16:28:05 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-28 16:28:05 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-28 16:28:05 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-28 16:28:05 INFO] [activity:188][39m Action: enable_chaosmonkey
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [python:33][39m Activity 'enable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [activity:260][39m Activity failed
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 174, in _new_conn
|
||||||
|
conn = connection.create_connection(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
|
||||||
|
raise err
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
|
||||||
|
sock.connect(sa)
|
||||||
|
ConnectionRefusedError: [Errno 61] Connection refused
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen
|
||||||
|
httplib_response = self._make_request(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connectionpool.py", line 394, in _make_request
|
||||||
|
conn.request(method, url, **httplib_request_kw)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 239, in request
|
||||||
|
super(HTTPConnection, self).request(method, url, body=body, headers=headers)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1279, in request
|
||||||
|
self._send_request(method, url, body, headers, encode_chunked)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1325, in _send_request
|
||||||
|
self.endheaders(body, encode_chunked=encode_chunked)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1274, in endheaders
|
||||||
|
self._send_output(message_body, encode_chunked=encode_chunked)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1034, in _send_output
|
||||||
|
self.send(msg)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 974, in send
|
||||||
|
self.connect()
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 205, in connect
|
||||||
|
conn = self._new_conn()
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 186, in _new_conn
|
||||||
|
raise NewConnectionError(
|
||||||
|
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x10438d220>: Failed to establish a new connection: [Errno 61] Connection refused
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
|
||||||
|
resp = conn.urlopen(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen
|
||||||
|
retries = retries.increment(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment
|
||||||
|
raise MaxRetryError(_pool, url, error or ResponseError(cause))
|
||||||
|
urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='localhost', port=8085): Max retries exceeded with url: /actuator/chaosmonkey/enable (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x10438d220>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 56, in run_python_activity
|
||||||
|
return func(**arguments)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py", line 24, in enable_chaosmonkey
|
||||||
|
response = api.call_api(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/api.py", line 56, in call_api
|
||||||
|
return requests.request(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/api.py", line 61, in request
|
||||||
|
return session.request(method=method, url=url, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 542, in request
|
||||||
|
resp = self.send(prep, **send_kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 655, in send
|
||||||
|
r = adapter.send(request, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
|
||||||
|
raise ConnectionError(e, request=request)
|
||||||
|
requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=8085): Max retries exceeded with url: /actuator/chaosmonkey/enable (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x10438d220>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/activity.py", line 253, in run_activity
|
||||||
|
result = run_python_activity(activity, configuration, secrets)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 58, in run_python_activity
|
||||||
|
raise ActivityFailed(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 56, in run_python_activity
|
||||||
|
return func(**arguments)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py", line 24, in enable_chaosmonkey
|
||||||
|
response = api.call_api(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/api.py", line 56, in call_api
|
||||||
|
return requests.request(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/api.py", line 61, in request
|
||||||
|
return session.request(method=method, url=url, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 542, in request
|
||||||
|
resp = self.send(prep, **send_kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 655, in send
|
||||||
|
r = adapter.send(request, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
|
||||||
|
raise ConnectionError(e, request=request)
|
||||||
|
chaoslib.exceptions.ActivityFailed: requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=8085): Max retries exceeded with url: /actuator/chaosmonkey/enable (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x10438d220>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
[31m[2021-11-28 16:28:05 ERROR] [activity:213][39m => failed: requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=8085): Max retries exceeded with url: /actuator/chaosmonkey/enable (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x10438d220>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-28 16:28:05 INFO] [activity:188][39m Action: configure_assaults
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [python:33][39m Activity 'configure_assaults' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [activity:260][39m Activity failed
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 174, in _new_conn
|
||||||
|
conn = connection.create_connection(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
|
||||||
|
raise err
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
|
||||||
|
sock.connect(sa)
|
||||||
|
ConnectionRefusedError: [Errno 61] Connection refused
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen
|
||||||
|
httplib_response = self._make_request(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connectionpool.py", line 394, in _make_request
|
||||||
|
conn.request(method, url, **httplib_request_kw)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 239, in request
|
||||||
|
super(HTTPConnection, self).request(method, url, body=body, headers=headers)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1279, in request
|
||||||
|
self._send_request(method, url, body, headers, encode_chunked)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1325, in _send_request
|
||||||
|
self.endheaders(body, encode_chunked=encode_chunked)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1274, in endheaders
|
||||||
|
self._send_output(message_body, encode_chunked=encode_chunked)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1034, in _send_output
|
||||||
|
self.send(msg)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 974, in send
|
||||||
|
self.connect()
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 205, in connect
|
||||||
|
conn = self._new_conn()
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 186, in _new_conn
|
||||||
|
raise NewConnectionError(
|
||||||
|
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x10438de50>: Failed to establish a new connection: [Errno 61] Connection refused
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
|
||||||
|
resp = conn.urlopen(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen
|
||||||
|
retries = retries.increment(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment
|
||||||
|
raise MaxRetryError(_pool, url, error or ResponseError(cause))
|
||||||
|
urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='localhost', port=8085): Max retries exceeded with url: /actuator/chaosmonkey/assaults (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x10438de50>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 56, in run_python_activity
|
||||||
|
return func(**arguments)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py", line 83, in change_assaults_configuration
|
||||||
|
response = api.call_api(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/api.py", line 56, in call_api
|
||||||
|
return requests.request(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/api.py", line 61, in request
|
||||||
|
return session.request(method=method, url=url, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 542, in request
|
||||||
|
resp = self.send(prep, **send_kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 655, in send
|
||||||
|
r = adapter.send(request, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
|
||||||
|
raise ConnectionError(e, request=request)
|
||||||
|
requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=8085): Max retries exceeded with url: /actuator/chaosmonkey/assaults (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x10438de50>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/activity.py", line 253, in run_activity
|
||||||
|
result = run_python_activity(activity, configuration, secrets)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 58, in run_python_activity
|
||||||
|
raise ActivityFailed(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 56, in run_python_activity
|
||||||
|
return func(**arguments)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py", line 83, in change_assaults_configuration
|
||||||
|
response = api.call_api(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/api.py", line 56, in call_api
|
||||||
|
return requests.request(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/api.py", line 61, in request
|
||||||
|
return session.request(method=method, url=url, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 542, in request
|
||||||
|
resp = self.send(prep, **send_kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 655, in send
|
||||||
|
r = adapter.send(request, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
|
||||||
|
raise ConnectionError(e, request=request)
|
||||||
|
chaoslib.exceptions.ActivityFailed: requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=8085): Max retries exceeded with url: /actuator/chaosmonkey/assaults (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x10438de50>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
[31m[2021-11-28 16:28:05 ERROR] [activity:213][39m => failed: requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=8085): Max retries exceeded with url: /actuator/chaosmonkey/assaults (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x10438de50>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-28 16:28:05 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-28 16:28:05 INFO] [rollback:27][39m No declared rollbacks, let's move on.
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-28 16:28:05 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-28 16:28:05 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-28 16:54:22 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-28 16:54:22 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-28 16:54:22 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[32m[2021-11-28 16:54:23 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-28 16:54:23 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-28 16:54:23 INFO] [run:319][39m Running experiment: What is the impact of an expired certificate on our application chain?
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-28 16:54:23 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-28 16:54:23 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-28 16:54:23 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-28 16:54:23 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-28 16:54:23 INFO] [activity:188][39m Action: enable_chaosmonkey
|
||||||
|
[36m[2021-11-28 16:54:23 DEBUG] [python:33][39m Activity 'enable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-28 16:54:24 DEBUG] [activity:205][39m => succeeded with '{"status":"Chaos Monkey is enabled","enabledAt":"2021-11-28T15:54:24.502699Z"}'
|
||||||
|
[36m[2021-11-28 16:54:24 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-28 16:54:24 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-28 16:54:24 INFO] [activity:188][39m Action: configure_assaults
|
||||||
|
[36m[2021-11-28 16:54:24 DEBUG] [python:33][39m Activity 'configure_assaults' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-28 16:54:25 DEBUG] [activity:205][39m => succeeded with 'Assault config has changed'
|
||||||
|
[36m[2021-11-28 16:54:25 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-28 16:54:25 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-28 16:54:25 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-28 16:54:25 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-28 16:54:25 INFO] [rollback:27][39m No declared rollbacks, let's move on.
|
||||||
|
[36m[2021-11-28 16:54:25 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-28 16:54:25 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-28 16:54:25 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-28 16:54:25 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-28 16:54:25 DEBUG] [caching:42][39m Clearing activities cache
|
24
.experiments/executor-computation/disable.json
Normal file
24
.experiments/executor-computation/disable.json
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"title": "Disable chaos monkey",
|
||||||
|
"description": "Disable",
|
||||||
|
"tags": [],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [],
|
||||||
|
"rollbacks": [
|
||||||
|
{
|
||||||
|
"name": "disable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8085/actuator"
|
||||||
|
},
|
||||||
|
"func": "disable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
54
.experiments/executor-computation/exception.json
Normal file
54
.experiments/executor-computation/exception.json
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
{
|
||||||
|
"title": "Testing exceptions",
|
||||||
|
"description": "Testing exceptions!",
|
||||||
|
"tags": [],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [
|
||||||
|
{
|
||||||
|
"name": "enable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8085/actuator"
|
||||||
|
},
|
||||||
|
"func": "enable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "configure_assaults",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8085/actuator",
|
||||||
|
"assaults_configuration": {
|
||||||
|
"level": 5,
|
||||||
|
"latencyRangeStart": 2000,
|
||||||
|
"latencyRangeEnd": 15000,
|
||||||
|
"latencyActive": false,
|
||||||
|
"killApplicationActive": false,
|
||||||
|
"restartApplicationActive": false,
|
||||||
|
"exceptionsActive": true,
|
||||||
|
"exception": {
|
||||||
|
"type": "java.lang.RuntimeException",
|
||||||
|
"arguments": [
|
||||||
|
{
|
||||||
|
"className": "java.lang.String",
|
||||||
|
"value": "Exception assault has been carried out"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"func": "change_assaults_configuration",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rollbacks": []
|
||||||
|
}
|
113
.experiments/executor-computation/journal.json
Normal file
113
.experiments/executor-computation/journal.json
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
{
|
||||||
|
"chaoslib-version": "1.23.0",
|
||||||
|
"platform": "macOS-12.0-arm64-arm-64bit",
|
||||||
|
"node": "Marcels-MBP-M1",
|
||||||
|
"experiment": {
|
||||||
|
"title": "What is the impact of an expired certificate on our application chain?",
|
||||||
|
"description": "If a certificate expires, we should gracefully deal with the issue.",
|
||||||
|
"tags": [
|
||||||
|
"tls"
|
||||||
|
],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [
|
||||||
|
{
|
||||||
|
"name": "enable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8085/actuator"
|
||||||
|
},
|
||||||
|
"func": "enable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "configure_assaults",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8085/actuator",
|
||||||
|
"assaults_configuration": {
|
||||||
|
"level": 5,
|
||||||
|
"latencyRangeStart": 2000,
|
||||||
|
"latencyRangeEnd": 15000,
|
||||||
|
"latencyActive": true,
|
||||||
|
"exceptionsActive": false,
|
||||||
|
"killApplicationActive": false,
|
||||||
|
"restartApplicationActive": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"func": "change_assaults_configuration",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rollbacks": [],
|
||||||
|
"dry": null
|
||||||
|
},
|
||||||
|
"start": "2021-11-28T15:54:23.134945",
|
||||||
|
"status": "completed",
|
||||||
|
"deviated": false,
|
||||||
|
"steady_states": {
|
||||||
|
"before": null,
|
||||||
|
"after": null,
|
||||||
|
"during": []
|
||||||
|
},
|
||||||
|
"run": [
|
||||||
|
{
|
||||||
|
"activity": {
|
||||||
|
"name": "enable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8085/actuator"
|
||||||
|
},
|
||||||
|
"func": "enable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
"output": "{\"status\":\"Chaos Monkey is enabled\",\"enabledAt\":\"2021-11-28T15:54:24.502699Z\"}",
|
||||||
|
"status": "succeeded",
|
||||||
|
"start": "2021-11-28T15:54:23.135657",
|
||||||
|
"end": "2021-11-28T15:54:24.853870",
|
||||||
|
"duration": 1.718213
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"activity": {
|
||||||
|
"name": "configure_assaults",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8085/actuator",
|
||||||
|
"assaults_configuration": {
|
||||||
|
"level": 5,
|
||||||
|
"latencyRangeStart": 2000,
|
||||||
|
"latencyRangeEnd": 15000,
|
||||||
|
"latencyActive": true,
|
||||||
|
"exceptionsActive": false,
|
||||||
|
"killApplicationActive": false,
|
||||||
|
"restartApplicationActive": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"func": "change_assaults_configuration",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
"output": "Assault config has changed",
|
||||||
|
"status": "succeeded",
|
||||||
|
"start": "2021-11-28T15:54:24.854282",
|
||||||
|
"end": "2021-11-28T15:54:25.705360",
|
||||||
|
"duration": 0.851078
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rollbacks": [],
|
||||||
|
"end": "2021-11-28T15:54:25.706100",
|
||||||
|
"duration": 2.609093189239502
|
||||||
|
}
|
45
.experiments/executor-computation/kill-restart.json
Normal file
45
.experiments/executor-computation/kill-restart.json
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
{
|
||||||
|
"title": "Testing kill & restart",
|
||||||
|
"description": "Testing behavoir when killing and restarting the application",
|
||||||
|
"tags": [],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [
|
||||||
|
{
|
||||||
|
"name": "enable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8085/actuator"
|
||||||
|
},
|
||||||
|
"func": "enable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "configure_assaults",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8085/actuator",
|
||||||
|
"assaults_configuration": {
|
||||||
|
"level": 5,
|
||||||
|
"latencyRangeStart": 2000,
|
||||||
|
"latencyRangeEnd": 5000,
|
||||||
|
"latencyActive": false,
|
||||||
|
"exceptionsActive": false,
|
||||||
|
"killApplicationActive": true,
|
||||||
|
"restartApplicationActive": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"func": "change_assaults_configuration",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rollbacks": []
|
||||||
|
}
|
45
.experiments/executor-computation/latency.json
Normal file
45
.experiments/executor-computation/latency.json
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
{
|
||||||
|
"title": "Testing latency",
|
||||||
|
"description": "Testing latency!",
|
||||||
|
"tags": [],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [
|
||||||
|
{
|
||||||
|
"name": "enable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8085/actuator"
|
||||||
|
},
|
||||||
|
"func": "enable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "configure_assaults",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8085/actuator",
|
||||||
|
"assaults_configuration": {
|
||||||
|
"level": 5,
|
||||||
|
"latencyRangeStart": 2000,
|
||||||
|
"latencyRangeEnd": 15000,
|
||||||
|
"latencyActive": true,
|
||||||
|
"exceptionsActive": false,
|
||||||
|
"killApplicationActive": false,
|
||||||
|
"restartApplicationActive": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"func": "change_assaults_configuration",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rollbacks": []
|
||||||
|
}
|
49
.experiments/executor-computation/memory.json
Normal file
49
.experiments/executor-computation/memory.json
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
{
|
||||||
|
"title": "Testing memory",
|
||||||
|
"description": "Testing memory!",
|
||||||
|
"tags": [],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [
|
||||||
|
{
|
||||||
|
"name": "enable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8085/actuator"
|
||||||
|
},
|
||||||
|
"func": "enable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "configure_assaults",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8085/actuator",
|
||||||
|
"assaults_configuration": {
|
||||||
|
"level": 5,
|
||||||
|
"latencyActive": false,
|
||||||
|
"killApplicationActive": false,
|
||||||
|
"restartApplicationActive": false,
|
||||||
|
"exceptionsActive": false,
|
||||||
|
"memoryActive": true,
|
||||||
|
"memoryMillisecondsHoldFilledMemory": 90000,
|
||||||
|
"memoryMillisecondsWaitNextIncrease": 100,
|
||||||
|
"memoryFillIncrementFraction": 0.9,
|
||||||
|
"memoryFillTargetFraction": 0.95,
|
||||||
|
"runtimeAssaultCronExpression": "*/1 * * * * ?"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"func": "change_assaults_configuration",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rollbacks": []
|
||||||
|
}
|
14
.experiments/readme.md
Normal file
14
.experiments/readme.md
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
# Create python env
|
||||||
|
|
||||||
|
python3 -m venv ~/.venvs/chaostk
|
||||||
|
|
||||||
|
# Activate python env
|
||||||
|
source ~/.venvs/chaostk/bin/activate
|
||||||
|
|
||||||
|
# Run tests
|
||||||
|
chaos run latency.json
|
||||||
|
chaos run kill-restart.json
|
||||||
|
|
||||||
|
# Disable tests
|
||||||
|
|
||||||
|
chaos run disable.json
|
135
.experiments/roster/chaostoolkit.log
Normal file
135
.experiments/roster/chaostoolkit.log
Normal file
@@ -0,0 +1,135 @@
|
|||||||
|
[36m[2021-11-28 14:43:28 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-28 14:43:28 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-28 14:43:28 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[32m[2021-11-28 14:43:42 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-28 14:43:42 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-28 14:43:42 INFO] [run:319][39m Running experiment: What is the impact of an expired certificate on our application chain?
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-28 14:43:42 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-28 14:43:42 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-28 14:43:42 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-28 14:43:42 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-28 14:43:42 INFO] [activity:188][39m Action: enable_chaosmonkey
|
||||||
|
[36m[2021-11-28 14:43:42 DEBUG] [python:33][39m Activity 'enable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-28 14:43:43 DEBUG] [activity:260][39m Activity failed
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 56, in run_python_activity
|
||||||
|
return func(**arguments)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py", line 36, in enable_chaosmonkey
|
||||||
|
raise FailedActivity(f"Enable ChaosMonkey failed: {response.text}")
|
||||||
|
chaoslib.exceptions.ActivityFailed: Enable ChaosMonkey failed: {"timestamp":"2021-11-28T13:43:43.069+00:00","status":404,"error":"Not Found","message":"No message available","path":"/actuator/chaosmonkey/enable"}
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/activity.py", line 253, in run_activity
|
||||||
|
result = run_python_activity(activity, configuration, secrets)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 58, in run_python_activity
|
||||||
|
raise ActivityFailed(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 56, in run_python_activity
|
||||||
|
return func(**arguments)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py", line 36, in enable_chaosmonkey
|
||||||
|
raise FailedActivity(f"Enable ChaosMonkey failed: {response.text}")
|
||||||
|
chaoslib.exceptions.ActivityFailed: chaoslib.exceptions.ActivityFailed: Enable ChaosMonkey failed: {"timestamp":"2021-11-28T13:43:43.069+00:00","status":404,"error":"Not Found","message":"No message available","path":"/actuator/chaosmonkey/enable"}
|
||||||
|
[31m[2021-11-28 14:43:43 ERROR] [activity:213][39m => failed: chaoslib.exceptions.ActivityFailed: Enable ChaosMonkey failed: {"timestamp":"2021-11-28T13:43:43.069+00:00","status":404,"error":"Not Found","message":"No message available","path":"/actuator/chaosmonkey/enable"}
|
||||||
|
[36m[2021-11-28 14:43:43 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-28 14:43:43 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-28 14:43:43 INFO] [activity:188][39m Action: configure_assaults
|
||||||
|
[36m[2021-11-28 14:43:43 DEBUG] [python:33][39m Activity 'configure_assaults' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-28 14:43:43 DEBUG] [activity:260][39m Activity failed
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 56, in run_python_activity
|
||||||
|
return func(**arguments)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py", line 96, in change_assaults_configuration
|
||||||
|
raise FailedActivity(
|
||||||
|
chaoslib.exceptions.ActivityFailed: Change ChaosMonkey Assaults Configuration failed: {"timestamp":"2021-11-28T13:43:43.203+00:00","status":404,"error":"Not Found","message":"No message available","path":"/actuator/chaosmonkey/assaults"}
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/activity.py", line 253, in run_activity
|
||||||
|
result = run_python_activity(activity, configuration, secrets)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 58, in run_python_activity
|
||||||
|
raise ActivityFailed(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 56, in run_python_activity
|
||||||
|
return func(**arguments)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py", line 96, in change_assaults_configuration
|
||||||
|
raise FailedActivity(
|
||||||
|
chaoslib.exceptions.ActivityFailed: chaoslib.exceptions.ActivityFailed: Change ChaosMonkey Assaults Configuration failed: {"timestamp":"2021-11-28T13:43:43.203+00:00","status":404,"error":"Not Found","message":"No message available","path":"/actuator/chaosmonkey/assaults"}
|
||||||
|
[31m[2021-11-28 14:43:43 ERROR] [activity:213][39m => failed: chaoslib.exceptions.ActivityFailed: Change ChaosMonkey Assaults Configuration failed: {"timestamp":"2021-11-28T13:43:43.203+00:00","status":404,"error":"Not Found","message":"No message available","path":"/actuator/chaosmonkey/assaults"}
|
||||||
|
[36m[2021-11-28 14:43:43 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-28 14:43:43 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-28 14:43:43 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-28 14:43:43 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-28 14:43:43 INFO] [rollback:27][39m No declared rollbacks, let's move on.
|
||||||
|
[36m[2021-11-28 14:43:43 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-28 14:43:43 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-28 14:43:43 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-28 14:43:43 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-28 14:43:43 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[32m[2021-11-28 16:24:55 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-28 16:24:55 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-28 16:24:55 INFO] [run:319][39m Running experiment: What is the impact of an expired certificate on our application chain?
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-28 16:24:55 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-28 16:24:55 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-28 16:24:55 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-28 16:24:55 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-28 16:24:55 INFO] [activity:188][39m Action: enable_chaosmonkey
|
||||||
|
[36m[2021-11-28 16:24:55 DEBUG] [python:33][39m Activity 'enable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-28 16:24:56 DEBUG] [activity:205][39m => succeeded with '{"status":"Chaos Monkey is enabled","enabledAt":"2021-11-28T15:24:56.52458Z"}'
|
||||||
|
[36m[2021-11-28 16:24:56 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-28 16:24:56 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-28 16:24:56 INFO] [activity:188][39m Action: configure_assaults
|
||||||
|
[36m[2021-11-28 16:24:56 DEBUG] [python:33][39m Activity 'configure_assaults' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-28 16:24:57 DEBUG] [activity:205][39m => succeeded with 'Assault config has changed'
|
||||||
|
[36m[2021-11-28 16:24:57 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-28 16:24:57 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-28 16:24:57 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-28 16:24:57 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-28 16:24:57 INFO] [rollback:27][39m No declared rollbacks, let's move on.
|
||||||
|
[36m[2021-11-28 16:24:57 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-28 16:24:57 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-28 16:24:57 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-28 16:24:57 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-28 16:24:57 DEBUG] [caching:42][39m Clearing activities cache
|
24
.experiments/roster/disable.json
Normal file
24
.experiments/roster/disable.json
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"title": "Disable chaos monkey",
|
||||||
|
"description": "Disable",
|
||||||
|
"tags": [],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [],
|
||||||
|
"rollbacks": [
|
||||||
|
{
|
||||||
|
"name": "disable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8082/actuator"
|
||||||
|
},
|
||||||
|
"func": "disable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
54
.experiments/roster/exception.json
Normal file
54
.experiments/roster/exception.json
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
{
|
||||||
|
"title": "Testing exceptions",
|
||||||
|
"description": "Testing exceptions!",
|
||||||
|
"tags": [],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [
|
||||||
|
{
|
||||||
|
"name": "enable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8082/actuator"
|
||||||
|
},
|
||||||
|
"func": "enable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "configure_assaults",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8082/actuator",
|
||||||
|
"assaults_configuration": {
|
||||||
|
"level": 5,
|
||||||
|
"latencyRangeStart": 2000,
|
||||||
|
"latencyRangeEnd": 15000,
|
||||||
|
"latencyActive": false,
|
||||||
|
"killApplicationActive": false,
|
||||||
|
"restartApplicationActive": false,
|
||||||
|
"exceptionsActive": true,
|
||||||
|
"exception": {
|
||||||
|
"type": "java.lang.RuntimeException",
|
||||||
|
"arguments": [
|
||||||
|
{
|
||||||
|
"className": "java.lang.String",
|
||||||
|
"value": "Exception assault has been carried out"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"func": "change_assaults_configuration",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rollbacks": []
|
||||||
|
}
|
113
.experiments/roster/journal.json
Normal file
113
.experiments/roster/journal.json
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
{
|
||||||
|
"chaoslib-version": "1.23.0",
|
||||||
|
"platform": "macOS-12.0-arm64-arm-64bit",
|
||||||
|
"node": "Marcels-MBP-M1",
|
||||||
|
"experiment": {
|
||||||
|
"title": "What is the impact of an expired certificate on our application chain?",
|
||||||
|
"description": "If a certificate expires, we should gracefully deal with the issue.",
|
||||||
|
"tags": [
|
||||||
|
"tls"
|
||||||
|
],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [
|
||||||
|
{
|
||||||
|
"name": "enable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8082/actuator"
|
||||||
|
},
|
||||||
|
"func": "enable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "configure_assaults",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8082/actuator",
|
||||||
|
"assaults_configuration": {
|
||||||
|
"level": 5,
|
||||||
|
"latencyRangeStart": 2000,
|
||||||
|
"latencyRangeEnd": 15000,
|
||||||
|
"latencyActive": true,
|
||||||
|
"exceptionsActive": false,
|
||||||
|
"killApplicationActive": false,
|
||||||
|
"restartApplicationActive": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"func": "change_assaults_configuration",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rollbacks": [],
|
||||||
|
"dry": null
|
||||||
|
},
|
||||||
|
"start": "2021-11-28T15:24:55.984078",
|
||||||
|
"status": "completed",
|
||||||
|
"deviated": false,
|
||||||
|
"steady_states": {
|
||||||
|
"before": null,
|
||||||
|
"after": null,
|
||||||
|
"during": []
|
||||||
|
},
|
||||||
|
"run": [
|
||||||
|
{
|
||||||
|
"activity": {
|
||||||
|
"name": "enable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8082/actuator"
|
||||||
|
},
|
||||||
|
"func": "enable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
"output": "{\"status\":\"Chaos Monkey is enabled\",\"enabledAt\":\"2021-11-28T15:24:56.52458Z\"}",
|
||||||
|
"status": "succeeded",
|
||||||
|
"start": "2021-11-28T15:24:55.984855",
|
||||||
|
"end": "2021-11-28T15:24:56.785205",
|
||||||
|
"duration": 0.80035
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"activity": {
|
||||||
|
"name": "configure_assaults",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8082/actuator",
|
||||||
|
"assaults_configuration": {
|
||||||
|
"level": 5,
|
||||||
|
"latencyRangeStart": 2000,
|
||||||
|
"latencyRangeEnd": 15000,
|
||||||
|
"latencyActive": true,
|
||||||
|
"exceptionsActive": false,
|
||||||
|
"killApplicationActive": false,
|
||||||
|
"restartApplicationActive": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"func": "change_assaults_configuration",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
"output": "Assault config has changed",
|
||||||
|
"status": "succeeded",
|
||||||
|
"start": "2021-11-28T15:24:56.785494",
|
||||||
|
"end": "2021-11-28T15:24:57.394090",
|
||||||
|
"duration": 0.608596
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rollbacks": [],
|
||||||
|
"end": "2021-11-28T15:24:57.394597",
|
||||||
|
"duration": 1.4326798915863037
|
||||||
|
}
|
45
.experiments/roster/kill-restart.json
Normal file
45
.experiments/roster/kill-restart.json
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
{
|
||||||
|
"title": "Testing kill & restart",
|
||||||
|
"description": "Testing behavoir when killing and restarting the application",
|
||||||
|
"tags": [],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [
|
||||||
|
{
|
||||||
|
"name": "enable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8082/actuator"
|
||||||
|
},
|
||||||
|
"func": "enable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "configure_assaults",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8082/actuator",
|
||||||
|
"assaults_configuration": {
|
||||||
|
"level": 5,
|
||||||
|
"latencyRangeStart": 2000,
|
||||||
|
"latencyRangeEnd": 5000,
|
||||||
|
"latencyActive": false,
|
||||||
|
"exceptionsActive": false,
|
||||||
|
"killApplicationActive": true,
|
||||||
|
"restartApplicationActive": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"func": "change_assaults_configuration",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rollbacks": []
|
||||||
|
}
|
45
.experiments/roster/latency.json
Normal file
45
.experiments/roster/latency.json
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
{
|
||||||
|
"title": "Testing latency",
|
||||||
|
"description": "Testing latency!",
|
||||||
|
"tags": [],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [
|
||||||
|
{
|
||||||
|
"name": "enable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8082/actuator"
|
||||||
|
},
|
||||||
|
"func": "enable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "configure_assaults",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8082/actuator",
|
||||||
|
"assaults_configuration": {
|
||||||
|
"level": 5,
|
||||||
|
"latencyRangeStart": 2000,
|
||||||
|
"latencyRangeEnd": 15000,
|
||||||
|
"latencyActive": true,
|
||||||
|
"exceptionsActive": false,
|
||||||
|
"killApplicationActive": false,
|
||||||
|
"restartApplicationActive": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"func": "change_assaults_configuration",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rollbacks": []
|
||||||
|
}
|
49
.experiments/roster/memory.json
Normal file
49
.experiments/roster/memory.json
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
{
|
||||||
|
"title": "Testing memory",
|
||||||
|
"description": "Testing memory!",
|
||||||
|
"tags": [],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [
|
||||||
|
{
|
||||||
|
"name": "enable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8082/actuator"
|
||||||
|
},
|
||||||
|
"func": "enable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "configure_assaults",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8082/actuator",
|
||||||
|
"assaults_configuration": {
|
||||||
|
"level": 5,
|
||||||
|
"latencyActive": false,
|
||||||
|
"killApplicationActive": false,
|
||||||
|
"restartApplicationActive": false,
|
||||||
|
"exceptionsActive": false,
|
||||||
|
"memoryActive": true,
|
||||||
|
"memoryMillisecondsHoldFilledMemory": 90000,
|
||||||
|
"memoryMillisecondsWaitNextIncrease": 100,
|
||||||
|
"memoryFillIncrementFraction": 0.9,
|
||||||
|
"memoryFillTargetFraction": 0.95,
|
||||||
|
"runtimeAssaultCronExpression": "*/1 * * * * ?"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"func": "change_assaults_configuration",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rollbacks": []
|
||||||
|
}
|
936
.experiments/tapas-tasks/chaostoolkit.log
Normal file
936
.experiments/tapas-tasks/chaostoolkit.log
Normal file
@@ -0,0 +1,936 @@
|
|||||||
|
[36m[2021-11-27 11:35:02 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-27 11:35:02 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-27 11:35:02 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-27 11:35:02 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-27 11:35:02 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:35:02 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:35:02 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:35:02 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[32m[2021-11-27 11:35:02 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-27 11:35:02 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:35:02 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:35:02 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[36m[2021-11-27 11:35:02 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[31m[2021-11-27 11:35:02 ERROR] [cli:251][39m hypothesis requires a title
|
||||||
|
[36m[2021-11-27 11:35:02 DEBUG] [cli:252][39m hypothesis requires a title
|
||||||
|
[36m[2021-11-27 11:35:57 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-27 11:35:57 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-27 11:35:57 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-27 11:35:58 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-27 11:35:58 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:35:58 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:35:58 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:35:58 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[32m[2021-11-27 11:35:58 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-27 11:35:58 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[31m[2021-11-27 11:35:58 ERROR] [cli:251][39m experiment requires a description
|
||||||
|
[36m[2021-11-27 11:35:58 DEBUG] [cli:252][39m experiment requires a description
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[32m[2021-11-27 11:36:18 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:36:18 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:36:18 INFO] [run:319][39m Running experiment: Testing kill & restart
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-27 11:36:18 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-27 11:36:18 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-27 11:36:18 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-27 11:36:18 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:36:18 INFO] [activity:188][39m Action: enable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:36:18 DEBUG] [python:33][39m Activity 'enable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:36:19 DEBUG] [activity:205][39m => succeeded with '{"status":"Chaos Monkey is enabled","enabledAt":"2021-11-27T10:36:19.060458Z"}'
|
||||||
|
[36m[2021-11-27 11:36:19 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:36:19 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:36:19 INFO] [activity:188][39m Action: configure_assaults
|
||||||
|
[36m[2021-11-27 11:36:19 DEBUG] [python:33][39m Activity 'configure_assaults' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:36:19 DEBUG] [activity:205][39m => succeeded with 'Assault config has changed'
|
||||||
|
[36m[2021-11-27 11:36:19 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:36:19 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-27 11:36:19 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-27 11:36:19 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:36:19 INFO] [rollback:30][39m Rollback: disable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:36:19 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:36:19 INFO] [activity:188][39m Action: disable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:36:19 DEBUG] [python:33][39m Activity 'disable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:36:19 DEBUG] [activity:260][39m Activity failed
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 174, in _new_conn
|
||||||
|
conn = connection.create_connection(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
|
||||||
|
raise err
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
|
||||||
|
sock.connect(sa)
|
||||||
|
ConnectionRefusedError: [Errno 61] Connection refused
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen
|
||||||
|
httplib_response = self._make_request(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connectionpool.py", line 394, in _make_request
|
||||||
|
conn.request(method, url, **httplib_request_kw)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 239, in request
|
||||||
|
super(HTTPConnection, self).request(method, url, body=body, headers=headers)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1279, in request
|
||||||
|
self._send_request(method, url, body, headers, encode_chunked)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1325, in _send_request
|
||||||
|
self.endheaders(body, encode_chunked=encode_chunked)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1274, in endheaders
|
||||||
|
self._send_output(message_body, encode_chunked=encode_chunked)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1034, in _send_output
|
||||||
|
self.send(msg)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 974, in send
|
||||||
|
self.connect()
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 205, in connect
|
||||||
|
conn = self._new_conn()
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 186, in _new_conn
|
||||||
|
raise NewConnectionError(
|
||||||
|
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x106688100>: Failed to establish a new connection: [Errno 61] Connection refused
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
|
||||||
|
resp = conn.urlopen(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen
|
||||||
|
retries = retries.increment(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment
|
||||||
|
raise MaxRetryError(_pool, url, error or ResponseError(cause))
|
||||||
|
urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='localhost', port=8080): Max retries exceeded with url: /actuator/chaosmonkey/disable (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x106688100>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 56, in run_python_activity
|
||||||
|
return func(**arguments)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py", line 53, in disable_chaosmonkey
|
||||||
|
response = api.call_api(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/api.py", line 56, in call_api
|
||||||
|
return requests.request(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/api.py", line 61, in request
|
||||||
|
return session.request(method=method, url=url, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 542, in request
|
||||||
|
resp = self.send(prep, **send_kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 655, in send
|
||||||
|
r = adapter.send(request, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
|
||||||
|
raise ConnectionError(e, request=request)
|
||||||
|
requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=8080): Max retries exceeded with url: /actuator/chaosmonkey/disable (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x106688100>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/activity.py", line 253, in run_activity
|
||||||
|
result = run_python_activity(activity, configuration, secrets)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 58, in run_python_activity
|
||||||
|
raise ActivityFailed(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 56, in run_python_activity
|
||||||
|
return func(**arguments)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py", line 53, in disable_chaosmonkey
|
||||||
|
response = api.call_api(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/api.py", line 56, in call_api
|
||||||
|
return requests.request(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/api.py", line 61, in request
|
||||||
|
return session.request(method=method, url=url, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 542, in request
|
||||||
|
resp = self.send(prep, **send_kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 655, in send
|
||||||
|
r = adapter.send(request, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
|
||||||
|
raise ConnectionError(e, request=request)
|
||||||
|
chaoslib.exceptions.ActivityFailed: requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=8080): Max retries exceeded with url: /actuator/chaosmonkey/disable (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x106688100>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
[31m[2021-11-27 11:36:19 ERROR] [activity:213][39m => failed: requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=8080): Max retries exceeded with url: /actuator/chaosmonkey/disable (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x106688100>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
[36m[2021-11-27 11:36:19 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:36:19 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:36:19 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-27 11:36:19 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-27 11:36:19 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-27 11:36:19 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[32m[2021-11-27 11:36:54 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:36:54 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:36:54 INFO] [run:319][39m Running experiment: Testing kill & restart
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-27 11:36:54 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-27 11:36:54 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-27 11:36:54 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-27 11:36:54 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:36:54 INFO] [activity:188][39m Action: enable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [python:33][39m Activity 'enable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [activity:205][39m => succeeded with '{"status":"Chaos Monkey is enabled","enabledAt":"2021-11-27T10:36:54.668324Z"}'
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:36:54 INFO] [activity:188][39m Action: configure_assaults
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [python:33][39m Activity 'configure_assaults' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [activity:205][39m => succeeded with 'Assault config has changed'
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-27 11:36:54 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:36:54 INFO] [rollback:30][39m Rollback: disable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:36:54 INFO] [activity:188][39m Action: disable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [python:33][39m Activity 'disable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [activity:260][39m Activity failed
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 174, in _new_conn
|
||||||
|
conn = connection.create_connection(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
|
||||||
|
raise err
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
|
||||||
|
sock.connect(sa)
|
||||||
|
ConnectionRefusedError: [Errno 61] Connection refused
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen
|
||||||
|
httplib_response = self._make_request(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connectionpool.py", line 394, in _make_request
|
||||||
|
conn.request(method, url, **httplib_request_kw)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 239, in request
|
||||||
|
super(HTTPConnection, self).request(method, url, body=body, headers=headers)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1279, in request
|
||||||
|
self._send_request(method, url, body, headers, encode_chunked)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1325, in _send_request
|
||||||
|
self.endheaders(body, encode_chunked=encode_chunked)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1274, in endheaders
|
||||||
|
self._send_output(message_body, encode_chunked=encode_chunked)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1034, in _send_output
|
||||||
|
self.send(msg)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 974, in send
|
||||||
|
self.connect()
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 205, in connect
|
||||||
|
conn = self._new_conn()
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 186, in _new_conn
|
||||||
|
raise NewConnectionError(
|
||||||
|
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x104be0100>: Failed to establish a new connection: [Errno 61] Connection refused
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
|
||||||
|
resp = conn.urlopen(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen
|
||||||
|
retries = retries.increment(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment
|
||||||
|
raise MaxRetryError(_pool, url, error or ResponseError(cause))
|
||||||
|
urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='localhost', port=8080): Max retries exceeded with url: /actuator/chaosmonkey/disable (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x104be0100>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 56, in run_python_activity
|
||||||
|
return func(**arguments)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py", line 53, in disable_chaosmonkey
|
||||||
|
response = api.call_api(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/api.py", line 56, in call_api
|
||||||
|
return requests.request(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/api.py", line 61, in request
|
||||||
|
return session.request(method=method, url=url, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 542, in request
|
||||||
|
resp = self.send(prep, **send_kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 655, in send
|
||||||
|
r = adapter.send(request, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
|
||||||
|
raise ConnectionError(e, request=request)
|
||||||
|
requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=8080): Max retries exceeded with url: /actuator/chaosmonkey/disable (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x104be0100>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/activity.py", line 253, in run_activity
|
||||||
|
result = run_python_activity(activity, configuration, secrets)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 58, in run_python_activity
|
||||||
|
raise ActivityFailed(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 56, in run_python_activity
|
||||||
|
return func(**arguments)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py", line 53, in disable_chaosmonkey
|
||||||
|
response = api.call_api(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/api.py", line 56, in call_api
|
||||||
|
return requests.request(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/api.py", line 61, in request
|
||||||
|
return session.request(method=method, url=url, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 542, in request
|
||||||
|
resp = self.send(prep, **send_kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 655, in send
|
||||||
|
r = adapter.send(request, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
|
||||||
|
raise ConnectionError(e, request=request)
|
||||||
|
chaoslib.exceptions.ActivityFailed: requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=8080): Max retries exceeded with url: /actuator/chaosmonkey/disable (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x104be0100>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
[31m[2021-11-27 11:36:54 ERROR] [activity:213][39m => failed: requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=8080): Max retries exceeded with url: /actuator/chaosmonkey/disable (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x104be0100>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:36:54 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-27 11:36:54 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:36:59 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-27 11:36:59 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-27 11:36:59 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[32m[2021-11-27 11:37:00 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:37:00 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:37:00 INFO] [run:319][39m Running experiment: Testing kill & restart
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-27 11:37:00 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-27 11:37:00 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-27 11:37:00 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-27 11:37:00 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:37:00 INFO] [activity:188][39m Action: enable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [python:33][39m Activity 'enable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [activity:205][39m => succeeded with '{"status":"Chaos Monkey is enabled","enabledAt":"2021-11-27T10:37:00.591716Z"}'
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:37:00 INFO] [activity:188][39m Action: configure_assaults
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [python:33][39m Activity 'configure_assaults' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [activity:205][39m => succeeded with 'Assault config has changed'
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-27 11:37:00 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:37:00 INFO] [rollback:30][39m Rollback: disable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:37:00 INFO] [activity:188][39m Action: disable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [python:33][39m Activity 'disable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [activity:205][39m => succeeded with '{"status":"Chaos Monkey is disabled","disabledAt":"2021-11-27T10:37:00.650024Z"}'
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:37:00 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-27 11:37:00 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:38:39 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-27 11:38:39 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-27 11:38:39 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[32m[2021-11-27 11:38:40 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:38:40 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:38:40 INFO] [run:319][39m Running experiment: Testing kill & restart
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-27 11:38:40 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-27 11:38:40 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-27 11:38:40 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-27 11:38:40 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:38:40 INFO] [activity:188][39m Action: enable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:38:40 DEBUG] [python:33][39m Activity 'enable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:38:41 DEBUG] [activity:205][39m => succeeded with '{"status":"Chaos Monkey is enabled","enabledAt":"2021-11-27T10:38:40.795245Z"}'
|
||||||
|
[36m[2021-11-27 11:38:41 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:38:41 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:38:41 INFO] [activity:188][39m Action: configure_assaults
|
||||||
|
[36m[2021-11-27 11:38:41 DEBUG] [python:33][39m Activity 'configure_assaults' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:38:41 DEBUG] [activity:205][39m => succeeded with 'Assault config has changed'
|
||||||
|
[36m[2021-11-27 11:38:41 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:38:41 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-27 11:38:41 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-27 11:38:41 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:38:41 INFO] [rollback:30][39m Rollback: disable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:38:41 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:38:41 INFO] [activity:188][39m Action: disable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:38:41 DEBUG] [python:33][39m Activity 'disable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:38:41 DEBUG] [activity:205][39m => succeeded with '{"status":"Chaos Monkey is disabled","disabledAt":"2021-11-27T10:38:41.923689Z"}'
|
||||||
|
[36m[2021-11-27 11:38:41 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:38:41 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:38:41 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-27 11:38:41 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-27 11:38:41 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-27 11:38:41 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:42:14 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-27 11:42:14 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-27 11:42:14 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[32m[2021-11-27 11:42:15 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:42:15 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:42:15 INFO] [run:319][39m Running experiment: Testing kill & restart
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-27 11:42:15 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-27 11:42:15 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-27 11:42:15 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-27 11:42:15 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:42:15 INFO] [activity:188][39m Action: enable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [python:33][39m Activity 'enable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [activity:205][39m => succeeded with '{"status":"Chaos Monkey is enabled","enabledAt":"2021-11-27T10:42:15.310527Z"}'
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:42:15 INFO] [activity:188][39m Action: configure_assaults
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [python:33][39m Activity 'configure_assaults' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [activity:205][39m => succeeded with 'Assault config has changed'
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-27 11:42:15 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:42:15 INFO] [rollback:27][39m No declared rollbacks, let's move on.
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:42:15 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-27 11:42:15 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:43:22 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-27 11:43:22 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-27 11:43:22 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[32m[2021-11-27 11:43:23 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:43:23 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:43:23 INFO] [run:319][39m Running experiment: What is the impact of an expired certificate on our application chain?
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-27 11:43:23 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-27 11:43:23 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-27 11:43:23 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-27 11:43:23 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:43:23 INFO] [activity:188][39m Action: enable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [python:33][39m Activity 'enable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [activity:205][39m => succeeded with '{"status":"Chaos Monkey is enabled","enabledAt":"2021-11-27T10:43:23.565576Z"}'
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:43:23 INFO] [activity:188][39m Action: configure_assaults
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [python:33][39m Activity 'configure_assaults' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [activity:205][39m => succeeded with 'Assault config has changed'
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-27 11:43:23 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:43:23 INFO] [rollback:27][39m No declared rollbacks, let's move on.
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:43:23 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-27 11:43:23 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[32m[2021-11-27 11:43:50 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:43:50 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:43:50 INFO] [run:319][39m Running experiment: What is the impact of an expired certificate on our application chain?
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-27 11:43:50 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-27 11:43:50 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-27 11:43:50 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-27 11:43:50 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:43:50 INFO] [activity:188][39m Action: enable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [python:33][39m Activity 'enable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [activity:205][39m => succeeded with '{"status":"Chaos Monkey is enabled","enabledAt":"2021-11-27T10:43:50.888054Z"}'
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:43:50 INFO] [activity:188][39m Action: configure_assaults
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [python:33][39m Activity 'configure_assaults' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [activity:205][39m => succeeded with 'Assault config has changed'
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-27 11:43:50 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:43:50 INFO] [rollback:27][39m No declared rollbacks, let's move on.
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:43:50 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-27 11:43:50 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:47:20 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-27 11:47:20 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-27 11:47:20 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [caching:35][39m Cached 0 activities
|
||||||
|
[32m[2021-11-27 11:47:21 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:47:21 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [caching:35][39m Cached 0 activities
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:47:21 INFO] [run:319][39m Running experiment: Disable chaos monkey
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-27 11:47:21 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-27 11:47:21 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-27 11:47:21 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-27 11:47:21 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-27 11:47:21 INFO] [activity:113][39m No declared activities, let's move on.
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-27 11:47:21 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:47:21 INFO] [rollback:30][39m Rollback: disable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:47:21 INFO] [activity:188][39m Action: disable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [python:33][39m Activity 'disable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [activity:260][39m Activity failed
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 174, in _new_conn
|
||||||
|
conn = connection.create_connection(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
|
||||||
|
raise err
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
|
||||||
|
sock.connect(sa)
|
||||||
|
ConnectionRefusedError: [Errno 61] Connection refused
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen
|
||||||
|
httplib_response = self._make_request(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connectionpool.py", line 394, in _make_request
|
||||||
|
conn.request(method, url, **httplib_request_kw)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 239, in request
|
||||||
|
super(HTTPConnection, self).request(method, url, body=body, headers=headers)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1279, in request
|
||||||
|
self._send_request(method, url, body, headers, encode_chunked)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1325, in _send_request
|
||||||
|
self.endheaders(body, encode_chunked=encode_chunked)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1274, in endheaders
|
||||||
|
self._send_output(message_body, encode_chunked=encode_chunked)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 1034, in _send_output
|
||||||
|
self.send(msg)
|
||||||
|
File "/opt/homebrew/Cellar/python@3.9/3.9.7_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/http/client.py", line 974, in send
|
||||||
|
self.connect()
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 205, in connect
|
||||||
|
conn = self._new_conn()
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connection.py", line 186, in _new_conn
|
||||||
|
raise NewConnectionError(
|
||||||
|
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x1024bf220>: Failed to establish a new connection: [Errno 61] Connection refused
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
|
||||||
|
resp = conn.urlopen(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen
|
||||||
|
retries = retries.increment(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment
|
||||||
|
raise MaxRetryError(_pool, url, error or ResponseError(cause))
|
||||||
|
urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='localhost', port=8080): Max retries exceeded with url: /actuator/chaosmonkey/disable (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x1024bf220>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 56, in run_python_activity
|
||||||
|
return func(**arguments)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py", line 53, in disable_chaosmonkey
|
||||||
|
response = api.call_api(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/api.py", line 56, in call_api
|
||||||
|
return requests.request(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/api.py", line 61, in request
|
||||||
|
return session.request(method=method, url=url, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 542, in request
|
||||||
|
resp = self.send(prep, **send_kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 655, in send
|
||||||
|
r = adapter.send(request, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
|
||||||
|
raise ConnectionError(e, request=request)
|
||||||
|
requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=8080): Max retries exceeded with url: /actuator/chaosmonkey/disable (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x1024bf220>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
|
||||||
|
During handling of the above exception, another exception occurred:
|
||||||
|
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/activity.py", line 253, in run_activity
|
||||||
|
result = run_python_activity(activity, configuration, secrets)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 58, in run_python_activity
|
||||||
|
raise ActivityFailed(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaoslib/provider/python.py", line 56, in run_python_activity
|
||||||
|
return func(**arguments)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py", line 53, in disable_chaosmonkey
|
||||||
|
response = api.call_api(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/api.py", line 56, in call_api
|
||||||
|
return requests.request(
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/api.py", line 61, in request
|
||||||
|
return session.request(method=method, url=url, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 542, in request
|
||||||
|
resp = self.send(prep, **send_kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/sessions.py", line 655, in send
|
||||||
|
r = adapter.send(request, **kwargs)
|
||||||
|
File "/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
|
||||||
|
raise ConnectionError(e, request=request)
|
||||||
|
chaoslib.exceptions.ActivityFailed: requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=8080): Max retries exceeded with url: /actuator/chaosmonkey/disable (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x1024bf220>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
[31m[2021-11-27 11:47:21 ERROR] [activity:213][39m => failed: requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=8080): Max retries exceeded with url: /actuator/chaosmonkey/disable (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x1024bf220>: Failed to establish a new connection: [Errno 61] Connection refused'))
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:47:21 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-27 11:47:21 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:47:29 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-27 11:47:29 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-27 11:47:29 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [caching:35][39m Cached 0 activities
|
||||||
|
[32m[2021-11-27 11:47:30 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:47:30 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [caching:35][39m Cached 0 activities
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:47:30 INFO] [run:319][39m Running experiment: Disable chaos monkey
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-27 11:47:30 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-27 11:47:30 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-27 11:47:30 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-27 11:47:30 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-27 11:47:30 INFO] [activity:113][39m No declared activities, let's move on.
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-27 11:47:30 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:47:30 INFO] [rollback:30][39m Rollback: disable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:47:30 INFO] [activity:188][39m Action: disable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [python:33][39m Activity 'disable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [activity:205][39m => succeeded with '{"status":"Chaos Monkey is disabled","disabledAt":"2021-11-27T10:47:30.172107Z"}'
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:47:30 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-27 11:47:30 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[32m[2021-11-27 11:49:33 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:49:33 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:49:33 INFO] [run:319][39m Running experiment: What is the impact of an expired certificate on our application chain?
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-27 11:49:33 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-27 11:49:33 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-27 11:49:33 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-27 11:49:33 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:49:33 INFO] [activity:188][39m Action: enable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [python:33][39m Activity 'enable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [activity:205][39m => succeeded with '{"status":"Chaos Monkey is enabled","enabledAt":"2021-11-27T10:49:33.912573Z"}'
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:49:33 INFO] [activity:188][39m Action: configure_assaults
|
||||||
|
[36m[2021-11-27 11:49:33 DEBUG] [python:33][39m Activity 'configure_assaults' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:49:34 DEBUG] [activity:205][39m => succeeded with 'Assault config has changed'
|
||||||
|
[36m[2021-11-27 11:49:34 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:49:34 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-27 11:49:34 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-27 11:49:34 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:49:34 INFO] [rollback:27][39m No declared rollbacks, let's move on.
|
||||||
|
[36m[2021-11-27 11:49:34 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:49:34 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-27 11:49:34 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-27 11:49:34 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-27 11:49:34 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:50:00 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-27 11:50:00 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-27 11:50:00 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [caching:35][39m Cached 0 activities
|
||||||
|
[32m[2021-11-27 11:50:01 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:50:01 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [caching:35][39m Cached 0 activities
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-27 11:50:01 INFO] [run:319][39m Running experiment: Disable chaos monkey
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-27 11:50:01 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-27 11:50:01 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-27 11:50:01 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-27 11:50:01 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-27 11:50:01 INFO] [activity:113][39m No declared activities, let's move on.
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-27 11:50:01 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:50:01 INFO] [rollback:30][39m Rollback: disable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-27 11:50:01 INFO] [activity:188][39m Action: disable_chaosmonkey
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [python:33][39m Activity 'disable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [activity:205][39m => succeeded with '{"status":"Chaos Monkey is disabled","disabledAt":"2021-11-27T10:50:01.207712Z"}'
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-27 11:50:01 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-27 11:50:01 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[32m[2021-11-28 18:00:15 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-28 18:00:15 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-28 18:00:15 INFO] [run:319][39m Running experiment: Testing latency
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-28 18:00:15 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-28 18:00:15 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-28 18:00:15 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-28 18:00:15 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-28 18:00:15 INFO] [activity:188][39m Action: enable_chaosmonkey
|
||||||
|
[36m[2021-11-28 18:00:15 DEBUG] [python:33][39m Activity 'enable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-28 18:00:17 DEBUG] [activity:205][39m => succeeded with '{"status":"Chaos Monkey is enabled","enabledAt":"2021-11-28T17:00:16.734825Z"}'
|
||||||
|
[36m[2021-11-28 18:00:17 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-28 18:00:17 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-28 18:00:17 INFO] [activity:188][39m Action: configure_assaults
|
||||||
|
[36m[2021-11-28 18:00:17 DEBUG] [python:33][39m Activity 'configure_assaults' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-28 18:00:19 DEBUG] [activity:205][39m => succeeded with 'Assault config has changed'
|
||||||
|
[36m[2021-11-28 18:00:19 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-28 18:00:19 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-28 18:00:19 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-28 18:00:19 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-28 18:00:19 INFO] [rollback:27][39m No declared rollbacks, let's move on.
|
||||||
|
[36m[2021-11-28 18:00:19 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-28 18:00:19 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-28 18:00:19 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-28 18:00:19 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-28 18:00:19 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-28 18:07:50 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-28 18:07:50 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-28 18:07:50 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-28 18:07:50 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-28 18:07:50 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-28 18:07:50 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-28 18:07:50 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-28 18:07:50 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[32m[2021-11-28 18:07:50 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-28 18:07:50 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-28 18:07:50 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-28 18:07:50 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-28 18:07:50 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-28 18:07:50 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-28 18:07:50 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-28 18:07:50 DEBUG] [caching:35][39m Cached 2 activities
|
||||||
|
[36m[2021-11-28 18:07:50 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-28 18:07:50 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-28 18:07:51 INFO] [run:319][39m Running experiment: Testing latency
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-28 18:07:51 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-28 18:07:51 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-28 18:07:51 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-28 18:07:51 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-28 18:07:51 INFO] [activity:188][39m Action: enable_chaosmonkey
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [python:33][39m Activity 'enable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [activity:205][39m => succeeded with '{"status":"Chaos Monkey is enabled","enabledAt":"2021-11-28T17:07:51.182021Z"}'
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-28 18:07:51 INFO] [activity:188][39m Action: configure_assaults
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [python:33][39m Activity 'configure_assaults' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [activity:205][39m => succeeded with 'Assault config has changed'
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-28 18:07:51 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-28 18:07:51 INFO] [rollback:27][39m No declared rollbacks, let's move on.
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-28 18:07:51 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-28 18:07:51 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-28 18:09:39 DEBUG] [cli:103][39m ###############################################################################
|
||||||
|
[36m[2021-11-28 18:09:39 DEBUG] [cli:104][39m Running command 'run'
|
||||||
|
[36m[2021-11-28 18:09:39 DEBUG] [cli:108][39m Using settings file '/Users/maece/.chaostoolkit/settings.yaml'
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [settings:30][39m The Chaos Toolkit settings file could not be found at '/Users/maece/.chaostoolkit/settings.yaml'.
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [__init__:389][39m No controls to apply on 'loader'
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [caching:35][39m Cached 0 activities
|
||||||
|
[32m[2021-11-28 18:09:40 INFO] [experiment:58][39m Validating the experiment's syntax
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-28 18:09:40 INFO] [experiment:109][39m Experiment looks valid
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [caching:42][39m Clearing activities cache
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [caching:24][39m Building activity cache...
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [caching:35][39m Cached 0 activities
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [configuration:54][39m Loading configuration...
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [secret:78][39m Loading secrets...
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [secret:104][39m Done loading secrets
|
||||||
|
[32m[2021-11-28 18:09:40 INFO] [run:319][39m Running experiment: Disable chaos monkey
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [__init__:49][39m Initializing controls
|
||||||
|
[32m[2021-11-28 18:09:40 INFO] [run:336][39m Steady-state strategy: default
|
||||||
|
[32m[2021-11-28 18:09:40 INFO] [run:340][39m Rollbacks strategy: default
|
||||||
|
[32m[2021-11-28 18:09:40 INFO] [run:345][39m No steady state hypothesis defined. That's ok, just exploring.
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[32m[2021-11-28 18:09:40 INFO] [run:599][39m Playing your experiment's method now...
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-28 18:09:40 INFO] [activity:113][39m No declared activities, let's move on.
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [__init__:389][39m No controls to apply on 'method'
|
||||||
|
[32m[2021-11-28 18:09:40 INFO] [run:885][39m Let's rollback...
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-28 18:09:40 INFO] [rollback:30][39m Rollback: disable_chaosmonkey
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[32m[2021-11-28 18:09:40 INFO] [activity:188][39m Action: disable_chaosmonkey
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [python:33][39m Activity 'disable_chaosmonkey' loaded from '/Users/maece/.venvs/chaostk/lib/python3.9/site-packages/chaosspring/actions.py'
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [activity:205][39m => succeeded with '{"status":"Chaos Monkey is disabled","disabledAt":"2021-11-28T17:09:40.443253Z"}'
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [__init__:389][39m No controls to apply on 'activity'
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [__init__:389][39m No controls to apply on 'rollback'
|
||||||
|
[32m[2021-11-28 18:09:40 INFO] [run:450][39m Experiment ended with status: completed
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [__init__:389][39m No controls to apply on 'experiment'
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [__init__:82][39m Cleaning up controls
|
||||||
|
[36m[2021-11-28 18:09:40 DEBUG] [caching:42][39m Clearing activities cache
|
24
.experiments/tapas-tasks/disable.json
Normal file
24
.experiments/tapas-tasks/disable.json
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"title": "Disable chaos monkey",
|
||||||
|
"description": "Disable",
|
||||||
|
"tags": [],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [],
|
||||||
|
"rollbacks": [
|
||||||
|
{
|
||||||
|
"name": "disable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8081/actuator"
|
||||||
|
},
|
||||||
|
"func": "disable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
54
.experiments/tapas-tasks/exception.json
Normal file
54
.experiments/tapas-tasks/exception.json
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
{
|
||||||
|
"title": "Testing exceptions",
|
||||||
|
"description": "Testing exceptions!",
|
||||||
|
"tags": [],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [
|
||||||
|
{
|
||||||
|
"name": "enable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8081/actuator"
|
||||||
|
},
|
||||||
|
"func": "enable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "configure_assaults",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8081/actuator",
|
||||||
|
"assaults_configuration": {
|
||||||
|
"level": 5,
|
||||||
|
"latencyRangeStart": 2000,
|
||||||
|
"latencyRangeEnd": 15000,
|
||||||
|
"latencyActive": false,
|
||||||
|
"killApplicationActive": false,
|
||||||
|
"restartApplicationActive": false,
|
||||||
|
"exceptionsActive": true,
|
||||||
|
"exception": {
|
||||||
|
"type": "java.lang.RuntimeException",
|
||||||
|
"arguments": [
|
||||||
|
{
|
||||||
|
"className": "java.lang.String",
|
||||||
|
"value": "Exception assault has been carried out"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"func": "change_assaults_configuration",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rollbacks": []
|
||||||
|
}
|
62
.experiments/tapas-tasks/journal.json
Normal file
62
.experiments/tapas-tasks/journal.json
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
{
|
||||||
|
"chaoslib-version": "1.23.0",
|
||||||
|
"platform": "macOS-12.0-arm64-arm-64bit",
|
||||||
|
"node": "Marcels-MBP-M1",
|
||||||
|
"experiment": {
|
||||||
|
"title": "Disable chaos monkey",
|
||||||
|
"description": "Disable",
|
||||||
|
"tags": [],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [],
|
||||||
|
"rollbacks": [
|
||||||
|
{
|
||||||
|
"name": "disable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8081/actuator"
|
||||||
|
},
|
||||||
|
"func": "disable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"dry": null
|
||||||
|
},
|
||||||
|
"start": "2021-11-28T17:09:40.224824",
|
||||||
|
"status": "completed",
|
||||||
|
"deviated": false,
|
||||||
|
"steady_states": {
|
||||||
|
"before": null,
|
||||||
|
"after": null,
|
||||||
|
"during": []
|
||||||
|
},
|
||||||
|
"run": [],
|
||||||
|
"rollbacks": [
|
||||||
|
{
|
||||||
|
"activity": {
|
||||||
|
"name": "disable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8081/actuator"
|
||||||
|
},
|
||||||
|
"func": "disable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
"output": "{\"status\":\"Chaos Monkey is disabled\",\"disabledAt\":\"2021-11-28T17:09:40.443253Z\"}",
|
||||||
|
"status": "succeeded",
|
||||||
|
"start": "2021-11-28T17:09:40.226419",
|
||||||
|
"end": "2021-11-28T17:09:40.531586",
|
||||||
|
"duration": 0.305167
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"end": "2021-11-28T17:09:40.531671",
|
||||||
|
"duration": 0.33724117279052734
|
||||||
|
}
|
45
.experiments/tapas-tasks/kill-restart.json
Normal file
45
.experiments/tapas-tasks/kill-restart.json
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
{
|
||||||
|
"title": "Testing kill & restart",
|
||||||
|
"description": "Testing behavoir when killing and restarting the application",
|
||||||
|
"tags": [],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [
|
||||||
|
{
|
||||||
|
"name": "enable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8081/actuator"
|
||||||
|
},
|
||||||
|
"func": "enable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "configure_assaults",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8081/actuator",
|
||||||
|
"assaults_configuration": {
|
||||||
|
"level": 5,
|
||||||
|
"latencyRangeStart": 2000,
|
||||||
|
"latencyRangeEnd": 5000,
|
||||||
|
"latencyActive": false,
|
||||||
|
"exceptionsActive": false,
|
||||||
|
"killApplicationActive": true,
|
||||||
|
"restartApplicationActive": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"func": "change_assaults_configuration",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rollbacks": []
|
||||||
|
}
|
45
.experiments/tapas-tasks/latency.json
Normal file
45
.experiments/tapas-tasks/latency.json
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
{
|
||||||
|
"title": "Testing latency",
|
||||||
|
"description": "Testing latency!",
|
||||||
|
"tags": [],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [
|
||||||
|
{
|
||||||
|
"name": "enable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8081/actuator"
|
||||||
|
},
|
||||||
|
"func": "enable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "configure_assaults",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8081/actuator",
|
||||||
|
"assaults_configuration": {
|
||||||
|
"level": 5,
|
||||||
|
"latencyRangeStart": 2000,
|
||||||
|
"latencyRangeEnd": 15000,
|
||||||
|
"latencyActive": true,
|
||||||
|
"exceptionsActive": false,
|
||||||
|
"killApplicationActive": false,
|
||||||
|
"restartApplicationActive": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"func": "change_assaults_configuration",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rollbacks": []
|
||||||
|
}
|
49
.experiments/tapas-tasks/memory.json
Normal file
49
.experiments/tapas-tasks/memory.json
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
{
|
||||||
|
"title": "Testing memory",
|
||||||
|
"description": "Testing memory!",
|
||||||
|
"tags": [],
|
||||||
|
"steady-state-hypothesis": {
|
||||||
|
"title": "Hypothesis",
|
||||||
|
"probes": []
|
||||||
|
},
|
||||||
|
"method": [
|
||||||
|
{
|
||||||
|
"name": "enable_chaosmonkey",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8081/actuator"
|
||||||
|
},
|
||||||
|
"func": "enable_chaosmonkey",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "configure_assaults",
|
||||||
|
"provider": {
|
||||||
|
"arguments": {
|
||||||
|
"base_url": "http://localhost:8081/actuator",
|
||||||
|
"assaults_configuration": {
|
||||||
|
"level": 5,
|
||||||
|
"latencyActive": false,
|
||||||
|
"killApplicationActive": false,
|
||||||
|
"restartApplicationActive": false,
|
||||||
|
"exceptionsActive": false,
|
||||||
|
"memoryActive": true,
|
||||||
|
"memoryMillisecondsHoldFilledMemory": 90000,
|
||||||
|
"memoryMillisecondsWaitNextIncrease": 100,
|
||||||
|
"memoryFillIncrementFraction": 0.9,
|
||||||
|
"memoryFillTargetFraction": 0.95,
|
||||||
|
"runtimeAssaultCronExpression": "*/1 * * * * ?"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"func": "change_assaults_configuration",
|
||||||
|
"module": "chaosspring.actions",
|
||||||
|
"type": "python"
|
||||||
|
},
|
||||||
|
"type": "action"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rollbacks": []
|
||||||
|
}
|
11
.github/workflows/build-and-deploy.yml
vendored
11
.github/workflows/build-and-deploy.yml
vendored
@@ -55,6 +55,14 @@ jobs:
|
|||||||
run: mvn -f executor-robot/pom.xml --batch-mode --update-snapshots verify
|
run: mvn -f executor-robot/pom.xml --batch-mode --update-snapshots verify
|
||||||
- run: cp ./executor-robot/target/executor-robot-0.0.1-SNAPSHOT.jar ./target
|
- run: cp ./executor-robot/target/executor-robot-0.0.1-SNAPSHOT.jar ./target
|
||||||
|
|
||||||
|
- name: Build executor-humidity service
|
||||||
|
run: mvn -f executor-humidity/pom.xml --batch-mode --update-snapshots verify
|
||||||
|
- run: cp ./executor-humidity/target/executor-humidity-0.0.1-SNAPSHOT.jar ./target
|
||||||
|
|
||||||
|
- name: Build executor-humidity-demo service
|
||||||
|
run: mvn -f executor-humidity-demo/pom.xml --batch-mode --update-snapshots verify
|
||||||
|
- run: cp ./executor-humidity-demo/target/executor-humidity-demo-0.0.1-SNAPSHOT.jar ./target
|
||||||
|
|
||||||
- name: Build tapas-task service
|
- name: Build tapas-task service
|
||||||
run: mvn -f tapas-tasks/pom.xml --batch-mode --update-snapshots verify
|
run: mvn -f tapas-tasks/pom.xml --batch-mode --update-snapshots verify
|
||||||
- run: cp ./tapas-tasks/target/tapas-tasks-0.0.1-SNAPSHOT.jar ./target
|
- run: cp ./tapas-tasks/target/tapas-tasks-0.0.1-SNAPSHOT.jar ./target
|
||||||
@@ -103,5 +111,6 @@ jobs:
|
|||||||
cd /home/${{ secrets.SSH_USER }}/
|
cd /home/${{ secrets.SSH_USER }}/
|
||||||
touch acme.json
|
touch acme.json
|
||||||
sudo chmod 0600 acme.json
|
sudo chmod 0600 acme.json
|
||||||
|
sudo docker-compose down --remove-orphans
|
||||||
sudo echo "PUB_IP=$(wget -qO- http://ipecho.net/plain | xargs echo)" | sed -e 's/\./-/g' > .env
|
sudo echo "PUB_IP=$(wget -qO- http://ipecho.net/plain | xargs echo)" | sed -e 's/\./-/g' > .env
|
||||||
sudo docker-compose up -d --build --force-recreate
|
sudo docker-compose up -d
|
||||||
|
3
Californium3.properties
Normal file
3
Californium3.properties
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Californium3 CoAP Properties file
|
||||||
|
# Wed Dec 15 21:41:00 CET 2021
|
||||||
|
#
|
@@ -0,0 +1,21 @@
|
|||||||
|
# 2. Seperate service for Executor Pool
|
||||||
|
|
||||||
|
Date: 2021-11-21
|
||||||
|
|
||||||
|
## Status
|
||||||
|
|
||||||
|
Accepted
|
||||||
|
|
||||||
|
## Context
|
||||||
|
|
||||||
|
The Executor Pool has to keep track of which Executors are online and what task types they can execute. The Roster keeps track of tasks that need to be executed and assigns Executors to tasks. The Executor Pool functionalty could be implemented in a seperate service or as a part of the Roster.
|
||||||
|
|
||||||
|
## Decision
|
||||||
|
|
||||||
|
The executor pool will be implemented as a seperate service. (TODO decision might change. Need to reevaluate)
|
||||||
|
|
||||||
|
TODO explain why.
|
||||||
|
|
||||||
|
## Consequences
|
||||||
|
|
||||||
|
TODO
|
@@ -1,23 +0,0 @@
|
|||||||
# 2. Seperate service for Executors and Executor Pool
|
|
||||||
|
|
||||||
Date: 2021-11-21
|
|
||||||
|
|
||||||
## Status
|
|
||||||
|
|
||||||
Accepted
|
|
||||||
|
|
||||||
## Context
|
|
||||||
|
|
||||||
The executor pool has a complete list of all executors and knows if they are available or not, executors can execute tasks that match their type. The executors can therefore be part of the executor pool service, or each executor is a standalone service, as well as the executor pool.
|
|
||||||
|
|
||||||
## Decision
|
|
||||||
|
|
||||||
We will use a separate microservice for each executor and one service for the executor pool.
|
|
||||||
Having the executor pool and the executors as separate services would increase fault tolerance. If the executor pool goes down, the executors would stay online and execute their tasks without being affected by the executor pool’s outage. Likewise, if an executor goes down it does not impact other executors or the executor pool.
|
|
||||||
Different executors can have different execution times and a different load. This means the executors scale differently. Thus, we need a separate service for each executor.
|
|
||||||
Executors of different kinds will also scale differently than the executor pool and new executors of new types might be added at some point, further increasing the need for separate services to guarantee scalability and evolvability.
|
|
||||||
New executors will be added/removed during runtime. Therefore, we need a high extensibility.
|
|
||||||
|
|
||||||
## Consequences
|
|
||||||
|
|
||||||
Executors will be added/removed quite frequently, making the deployment of the system easier and less risk-prone if each executor is a separate service, also separated from the executor pool, which just keeps track of the executors and their status. However, having these separate services, the complexity might increase, and the testability of the system will decrease.
|
|
@@ -6,7 +6,7 @@ Date: 2021-11-21
|
|||||||
|
|
||||||
Proposed
|
Proposed
|
||||||
|
|
||||||
Supercedes [5. Event driven communication](0005-event-driven-communication.md)
|
Supercedes [5. Event driven communication](0005-event-driven-communication.md) TODO Fix this. Should only supercede it if this has been accepted. This should also subercede 0013 - Microservice Architecture if accepted.
|
||||||
|
|
||||||
## Context
|
## Context
|
||||||
|
|
||||||
|
@@ -0,0 +1,27 @@
|
|||||||
|
# 12. seperate service for each executor
|
||||||
|
|
||||||
|
Date: 2021-11-21
|
||||||
|
|
||||||
|
## Status
|
||||||
|
|
||||||
|
Accepted
|
||||||
|
|
||||||
|
## Context
|
||||||
|
|
||||||
|
Executors must receive tasks of different types and execute them. The executors could either all be implemented within one service or as multiple services, one for each type of executor.
|
||||||
|
|
||||||
|
## Decision
|
||||||
|
|
||||||
|
We will have a seperate service for each type of executor.
|
||||||
|
|
||||||
|
Firstly, execution time differs significantly between task types. Therefore, having seperate services will allow the executos to scale differently based on their tasks' specific needs.
|
||||||
|
|
||||||
|
Secondly, the systems functioning should not be disrupted in case an Executor fails. Having each type of executor in a seperate service will increase fault tolerance in this regard.
|
||||||
|
|
||||||
|
Lastly, extensibilty is one of the systems most important non-functional requirement and providers of executors need to be able to easily add executors to the executor pool. These factors are also positively impacted by having seperate services.
|
||||||
|
|
||||||
|
There should not be any shared data between the executors. Additionally, there should be no flow of information between them. Thus, there should be no issues due to workflow and data concerns due to this decision.
|
||||||
|
|
||||||
|
## Consequences
|
||||||
|
|
||||||
|
Executors share a lot of functionality when it comes to connecting to the rest of the system. Therefore, this decision means that we will either have to duplicate the code that implements the common functionality, or we have to have a way to share the code (e.g. through a common library)
|
23
doc/architecture/decisions/0013-microservice-architecture.md
Normal file
23
doc/architecture/decisions/0013-microservice-architecture.md
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
# 13. microservice architecture
|
||||||
|
|
||||||
|
Date: 2021-12-02
|
||||||
|
|
||||||
|
## Status
|
||||||
|
|
||||||
|
Accepted
|
||||||
|
|
||||||
|
## Context
|
||||||
|
|
||||||
|
The system is made up of five distinct bounded contexts, namely the Task Domain, the Roster Domain, the Executor Pool Domain, the Executor Domain, and the Auction Domain. The way that these bounded contexts function together to fulfil the system requirements can be based on many different architectures. (Feedback needed. Should we name specific 'next-best' alternative architectures to compare, or just leave it as is since technically all architectures were considered)
|
||||||
|
|
||||||
|
## Decision
|
||||||
|
|
||||||
|
The system will follow the Microservice architecture.
|
||||||
|
|
||||||
|
Scalability and fault tolerance are two of the systems top 3 -ilities. Moreover, elasticity and evolvability are two of the systems other main -ilities. These are all non-functional requirements that the Microservice architecture excels at.
|
||||||
|
|
||||||
|
We do not expect to have a single monolithic database, so this is not a concern.
|
||||||
|
|
||||||
|
## Consequences
|
||||||
|
|
||||||
|
There is a considerable amount of communication between bounded contexts. This could cause responsiveness and performance issues due to added latency. This could therefore mean we would need to use asynchronous REST calls or publish-subscribe communication to mitigate these issues as much of the communication does not have to be synchronous.
|
19
doc/architecture/decisions/0014-data-ownership.md
Normal file
19
doc/architecture/decisions/0014-data-ownership.md
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
# 14. data ownership
|
||||||
|
|
||||||
|
Date: 2021-12-02
|
||||||
|
|
||||||
|
## Status
|
||||||
|
|
||||||
|
Accepted
|
||||||
|
|
||||||
|
## Context
|
||||||
|
|
||||||
|
The issue motivating this decision, and any context that influences or constrains the decision.
|
||||||
|
|
||||||
|
## Decision
|
||||||
|
|
||||||
|
The change that we're proposing or have agreed to implement.
|
||||||
|
|
||||||
|
## Consequences
|
||||||
|
|
||||||
|
What becomes easier or more difficult to do and any risks introduced by the change that will need to be mitigated.
|
File diff suppressed because it is too large
Load Diff
BIN
doc/workflow.png
BIN
doc/workflow.png
Binary file not shown.
Before Width: | Height: | Size: 817 KiB After Width: | Height: | Size: 2.0 MiB |
@@ -1,60 +0,0 @@
|
|||||||
# Dockerfile/Docker-Compose file based on an initial version authored by Alexander Lontke (ASSE, Fall Semester 2021)
|
|
||||||
|
|
||||||
version: "3.7"
|
|
||||||
|
|
||||||
services:
|
|
||||||
app:
|
|
||||||
build:
|
|
||||||
context: ./app
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
# Use environment variables instead of application.properties
|
|
||||||
environment:
|
|
||||||
- KEY=VALUE
|
|
||||||
ports: #Just needed when testing from outside the docker network
|
|
||||||
- "8080:8080"
|
|
||||||
networks:
|
|
||||||
- tapas-network
|
|
||||||
|
|
||||||
tapas-tasks:
|
|
||||||
build:
|
|
||||||
context: ./tapas-tasks
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
# Use environment variables instead of application.properties
|
|
||||||
environment:
|
|
||||||
- KEY=VALUE
|
|
||||||
ports: #Just needed when testing from outside
|
|
||||||
- "8081:8081"
|
|
||||||
networks:
|
|
||||||
- tapas-network
|
|
||||||
|
|
||||||
tapas-auction-house:
|
|
||||||
build:
|
|
||||||
context: ./tapas-auction-house
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
# Use environment variables instead of application.properties
|
|
||||||
environment:
|
|
||||||
- KEY=VALUE
|
|
||||||
ports: #Just needed when testing from outside
|
|
||||||
- "8082:8082"
|
|
||||||
networks:
|
|
||||||
- tapas-network
|
|
||||||
|
|
||||||
mongodb:
|
|
||||||
image: mongo
|
|
||||||
container_name: mongodb
|
|
||||||
restart: unless-stopped
|
|
||||||
environment:
|
|
||||||
MONGO_INITDB_ROOT_USERNAME: root
|
|
||||||
MONGO_INITDB_ROOT_PASSWORD: 8nP7s0a # Can not be changed again later on
|
|
||||||
volumes:
|
|
||||||
- database:/data/db
|
|
||||||
networks:
|
|
||||||
- tapas-network
|
|
||||||
|
|
||||||
#Volume for mongodb. One per server.
|
|
||||||
volumes:
|
|
||||||
database:
|
|
||||||
|
|
||||||
networks:
|
|
||||||
tapas-network:
|
|
||||||
driver: bridge
|
|
@@ -1,5 +1,20 @@
|
|||||||
version: "3.6"
|
version: "3.6"
|
||||||
services:
|
services:
|
||||||
|
tapas-db:
|
||||||
|
image: mongo
|
||||||
|
restart: unless-stopped
|
||||||
|
container_name: tapas_mongodb
|
||||||
|
environment:
|
||||||
|
MONGO_INITDB_ROOT_USERNAME: root
|
||||||
|
MONGO_INITDB_ROOT_PASSWORD: password
|
||||||
|
ports:
|
||||||
|
- "27017:27017"
|
||||||
|
command: mongod --quiet --logpath /dev/null
|
||||||
|
hivemq:
|
||||||
|
image: hivemq/hivemq4
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "1883:1883"
|
||||||
tapas-tasks:
|
tapas-tasks:
|
||||||
container_name: tapas-tasks
|
container_name: tapas-tasks
|
||||||
build:
|
build:
|
||||||
@@ -9,54 +24,63 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- "8081:8081"
|
- "8081:8081"
|
||||||
- "5005:5005"
|
- "5005:5005"
|
||||||
|
depends_on:
|
||||||
|
- tapas-db
|
||||||
|
# - hivemq
|
||||||
volumes:
|
volumes:
|
||||||
- ./tapas-tasks/src:/opt/app/src
|
- ./tapas-tasks/src:/opt/app/src
|
||||||
- ./tapas-tasks/target:/opt/app/target
|
- ./tapas-tasks/target:/opt/app/target
|
||||||
assignment:
|
roster:
|
||||||
container_name: assignment
|
container_name: roster
|
||||||
build:
|
build:
|
||||||
context: "./assignment"
|
context: "."
|
||||||
dockerfile: "Dockerfile"
|
dockerfile: "./roster/Dockerfile"
|
||||||
target: development
|
target: development
|
||||||
|
depends_on:
|
||||||
|
- tapas-db
|
||||||
|
# - hivemq
|
||||||
ports:
|
ports:
|
||||||
- "8082:8082"
|
- "8082:8082"
|
||||||
- "5006:5005"
|
- "5006:5005"
|
||||||
volumes:
|
volumes:
|
||||||
- ./assignment/src:/opt/app/src
|
- ./roster/src:/opt/app/src
|
||||||
- ./assignment/target:/opt/app/target
|
- ./roster/target:/opt/app/target
|
||||||
executor-pool:
|
executor-pool:
|
||||||
container_name: executor-pool
|
container_name: executor-pool
|
||||||
build:
|
build:
|
||||||
context: "./executor-pool"
|
context: "./executor-pool"
|
||||||
dockerfile: "Dockerfile"
|
dockerfile: "Dockerfile"
|
||||||
target: development
|
target: development
|
||||||
|
depends_on:
|
||||||
|
- tapas-db
|
||||||
|
# - hivemq
|
||||||
ports:
|
ports:
|
||||||
- "8083:8083"
|
- "8083:8083"
|
||||||
- "5007:5005"
|
- "5007:5005"
|
||||||
volumes:
|
volumes:
|
||||||
- ./executor-pool/src:/opt/app/src
|
- ./executor-pool/src:/opt/app/src
|
||||||
- ./executor-pool/target:/opt/app/target
|
- ./executor-pool/target:/opt/app/target
|
||||||
executor1:
|
executor-computation:
|
||||||
container_name: executor1
|
container_name: executor-computation
|
||||||
build:
|
build:
|
||||||
context: "./executor1"
|
context: "."
|
||||||
dockerfile: "Dockerfile"
|
dockerfile: "./executor-computation/Dockerfile"
|
||||||
target: development
|
|
||||||
ports:
|
|
||||||
- "8084:8084"
|
|
||||||
- "5008:5005"
|
|
||||||
volumes:
|
|
||||||
- ./executor1/src:/opt/app/src
|
|
||||||
- ./executor1/target:/opt/app/target
|
|
||||||
executor2:
|
|
||||||
container_name: executor2
|
|
||||||
build:
|
|
||||||
context: "./executor2"
|
|
||||||
dockerfile: "Dockerfile"
|
|
||||||
target: development
|
target: development
|
||||||
ports:
|
ports:
|
||||||
- "8085:8085"
|
- "8085:8085"
|
||||||
- "5009:5005"
|
- "5008:5005"
|
||||||
volumes:
|
volumes:
|
||||||
- ./executor2/src:/opt/app/src
|
- ./executor-computation/src:/opt/app/src
|
||||||
- ./executor2/target:/opt/app/target
|
- ./executor-computation/target:/opt/app/target
|
||||||
|
# executor-robot:
|
||||||
|
# container_name: executor-robot
|
||||||
|
# build:
|
||||||
|
# context: "."
|
||||||
|
# dockerfile: "./executor-robot/Dockerfile"
|
||||||
|
# target: development
|
||||||
|
# ports:
|
||||||
|
# - "8084:8084"
|
||||||
|
# - "5009:5005"
|
||||||
|
# volumes:
|
||||||
|
# - ./executor-robot/src:/opt/app/src
|
||||||
|
# - ./executor-robot/target:/opt/app/target
|
||||||
|
@@ -66,6 +66,21 @@
|
|||||||
<artifactId>common</artifactId>
|
<artifactId>common</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>de.codecentric</groupId>
|
||||||
|
<artifactId>chaos-monkey-spring-boot</artifactId>
|
||||||
|
<version>2.5.4</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-test</artifactId>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
@@ -30,7 +30,7 @@ public class TaskAvailableController {
|
|||||||
@GetMapping(path = "/newtask/{taskType}", consumes = { "application/json" })
|
@GetMapping(path = "/newtask/{taskType}", consumes = { "application/json" })
|
||||||
public ResponseEntity<String> retrieveTaskFromTaskList(@PathVariable("taskType") String taskType) {
|
public ResponseEntity<String> retrieveTaskFromTaskList(@PathVariable("taskType") String taskType) {
|
||||||
|
|
||||||
logger.info("New " + taskType + " available");
|
logger.info("ExecutorBase | New " + taskType + " task available");
|
||||||
|
|
||||||
if (ExecutorType.contains(taskType.toUpperCase())) {
|
if (ExecutorType.contains(taskType.toUpperCase())) {
|
||||||
TaskAvailableCommand command = new TaskAvailableCommand(
|
TaskAvailableCommand command = new TaskAvailableCommand(
|
||||||
|
@@ -15,8 +15,8 @@ import ch.unisg.executorbase.executor.domain.ExecutionFinishedEvent;
|
|||||||
|
|
||||||
public class ExecutionFinishedEventAdapter implements ExecutionFinishedEventPort {
|
public class ExecutionFinishedEventAdapter implements ExecutionFinishedEventPort {
|
||||||
|
|
||||||
String server = System.getenv("roster_uri") == null ?
|
String server = System.getenv("ROSTER_URI") == null ?
|
||||||
"http://localhost:8082" : System.getenv("roster_uri");
|
"http://localhost:8082" : System.getenv("ROSTER_URI");
|
||||||
|
|
||||||
|
|
||||||
Logger logger = Logger.getLogger(ExecutionFinishedEventAdapter.class.getName());
|
Logger logger = Logger.getLogger(ExecutionFinishedEventAdapter.class.getName());
|
||||||
@@ -28,6 +28,8 @@ public class ExecutionFinishedEventAdapter implements ExecutionFinishedEventPort
|
|||||||
@Override
|
@Override
|
||||||
public void publishExecutionFinishedEvent(ExecutionFinishedEvent event) {
|
public void publishExecutionFinishedEvent(ExecutionFinishedEvent event) {
|
||||||
|
|
||||||
|
logger.log(Level.INFO, "ExecutorBase | Sending finish execution event....");
|
||||||
|
|
||||||
String body = new JSONObject()
|
String body = new JSONObject()
|
||||||
.put("taskID", event.getTaskID())
|
.put("taskID", event.getTaskID())
|
||||||
.put("outputData", event.getOutputData())
|
.put("outputData", event.getOutputData())
|
||||||
@@ -51,8 +53,7 @@ public class ExecutionFinishedEventAdapter implements ExecutionFinishedEventPort
|
|||||||
logger.log(Level.SEVERE, e.getLocalizedMessage(), e);
|
logger.log(Level.SEVERE, e.getLocalizedMessage(), e);
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.log(Level.INFO, "Finish execution event sent with result: {0}", event.getOutputData());
|
logger.log(Level.INFO, "ExecutorBase | Finish execution event sent with result: {0}", event.getOutputData());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -8,8 +8,8 @@ import java.net.http.HttpResponse;
|
|||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
|
||||||
import org.springframework.context.annotation.Primary;
|
import org.springframework.context.annotation.Primary;
|
||||||
|
import org.springframework.http.HttpStatus;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
import ch.unisg.common.valueobject.ExecutorURI;
|
import ch.unisg.common.valueobject.ExecutorURI;
|
||||||
@@ -23,8 +23,8 @@ import org.json.JSONObject;
|
|||||||
@Primary
|
@Primary
|
||||||
public class GetAssignmentAdapter implements GetAssignmentPort {
|
public class GetAssignmentAdapter implements GetAssignmentPort {
|
||||||
|
|
||||||
String server = System.getenv("roster_uri") == null ?
|
String server = System.getenv("ROSTER_URI") == null ?
|
||||||
"http://localhost:8082" : System.getenv("roster_uri");
|
"http://localhost:8082" : System.getenv("ROSTER_URI");
|
||||||
|
|
||||||
Logger logger = Logger.getLogger(GetAssignmentAdapter.class.getName());
|
Logger logger = Logger.getLogger(GetAssignmentAdapter.class.getName());
|
||||||
|
|
||||||
@@ -49,16 +49,19 @@ public class GetAssignmentAdapter implements GetAssignmentPort {
|
|||||||
.build();
|
.build();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
logger.info("Sending getAssignment Request");
|
logger.info("ExecutorBase | Sending getAssignment request");
|
||||||
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
|
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
|
||||||
logger.log(Level.INFO, "getAssignment request result:\n {0}", response.body());
|
if (response.statusCode() != HttpStatus.OK.value()) {
|
||||||
if (response.body().equals("")) {
|
logger.info("ExecutorBase | No task assigned");
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
logger.info("ExecutorBase | Task assigned");
|
||||||
JSONObject responseBody = new JSONObject(response.body());
|
JSONObject responseBody = new JSONObject(response.body());
|
||||||
|
|
||||||
String inputData = responseBody.getString("inputData");
|
if (!responseBody.get("inputData").equals(null)) {
|
||||||
return new Task(responseBody.getString("taskID"), inputData);
|
return new Task(responseBody.getString("taskID"), responseBody.getString("inputData"));
|
||||||
|
}
|
||||||
|
return new Task(responseBody.getString("taskID"));
|
||||||
|
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
logger.log(Level.SEVERE, e.getLocalizedMessage(), e);
|
logger.log(Level.SEVERE, e.getLocalizedMessage(), e);
|
||||||
|
@@ -9,7 +9,6 @@ import java.util.logging.Level;
|
|||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import org.json.JSONObject;
|
import org.json.JSONObject;
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
|
||||||
import org.springframework.context.annotation.Primary;
|
import org.springframework.context.annotation.Primary;
|
||||||
import org.springframework.http.HttpStatus;
|
import org.springframework.http.HttpStatus;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
@@ -22,8 +21,8 @@ import ch.unisg.executorbase.executor.domain.ExecutorType;
|
|||||||
@Primary
|
@Primary
|
||||||
public class NotifyExecutorPoolAdapter implements NotifyExecutorPoolPort {
|
public class NotifyExecutorPoolAdapter implements NotifyExecutorPoolPort {
|
||||||
|
|
||||||
String server = System.getenv("executor_pool_uri") == null ?
|
String server = System.getenv("EXECUTOR_POOL_URI") == null ?
|
||||||
"http://localhost:8083" : System.getenv("executor_pool_uri");
|
"http://localhost:8083" : System.getenv("EXECUTOR_POOL_URI");
|
||||||
|
|
||||||
Logger logger = Logger.getLogger(NotifyExecutorPoolAdapter.class.getName());
|
Logger logger = Logger.getLogger(NotifyExecutorPoolAdapter.class.getName());
|
||||||
|
|
||||||
@@ -41,7 +40,7 @@ public class NotifyExecutorPoolAdapter implements NotifyExecutorPoolPort {
|
|||||||
|
|
||||||
HttpClient client = HttpClient.newHttpClient();
|
HttpClient client = HttpClient.newHttpClient();
|
||||||
HttpRequest request = HttpRequest.newBuilder()
|
HttpRequest request = HttpRequest.newBuilder()
|
||||||
.uri(URI.create(server+"/executor-pool/AddExecutor"))
|
.uri(URI.create(server+"/executor-pool/executors"))
|
||||||
.header("Content-Type", "application/json")
|
.header("Content-Type", "application/json")
|
||||||
.POST(HttpRequest.BodyPublishers.ofString(body))
|
.POST(HttpRequest.BodyPublishers.ofString(body))
|
||||||
.build();
|
.build();
|
||||||
|
@@ -4,9 +4,11 @@ import javax.validation.constraints.NotNull;
|
|||||||
|
|
||||||
import ch.unisg.common.validation.SelfValidating;
|
import ch.unisg.common.validation.SelfValidating;
|
||||||
import ch.unisg.executorbase.executor.domain.ExecutorType;
|
import ch.unisg.executorbase.executor.domain.ExecutorType;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
import lombok.Value;
|
import lombok.Value;
|
||||||
|
|
||||||
@Value
|
@Value
|
||||||
|
@EqualsAndHashCode(callSuper=false)
|
||||||
public class TaskAvailableCommand extends SelfValidating<TaskAvailableCommand> {
|
public class TaskAvailableCommand extends SelfValidating<TaskAvailableCommand> {
|
||||||
|
|
||||||
@NotNull
|
@NotNull
|
||||||
|
@@ -15,6 +15,6 @@ public class TaskAvailableService implements TaskAvailableUseCase {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void newTaskAvailable(TaskAvailableCommand command) {
|
public void newTaskAvailable(TaskAvailableCommand command) {
|
||||||
// Placeholder so spring can create a bean, implementation of this function is inside the executors
|
// Placeholder so spring can create a bean, implementation of this service is inside the individual executors
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -34,18 +34,19 @@ public abstract class ExecutorBase {
|
|||||||
Logger logger = Logger.getLogger(ExecutorBase.class.getName());
|
Logger logger = Logger.getLogger(ExecutorBase.class.getName());
|
||||||
|
|
||||||
protected ExecutorBase(ExecutorType executorType) {
|
protected ExecutorBase(ExecutorType executorType) {
|
||||||
logger.info("Starting Executor");
|
logger.info("ExecutorBase | Starting Executor");
|
||||||
this.status = ExecutorStatus.STARTING_UP;
|
this.status = ExecutorStatus.STARTING_UP;
|
||||||
this.executorType = executorType;
|
this.executorType = executorType;
|
||||||
// TODO set this automaticly
|
// TODO set this automaticly
|
||||||
this.executorURI = new ExecutorURI("http://localhost:8084");
|
this.executorURI = new ExecutorURI("http://localhost:8084");
|
||||||
// TODO do this in main
|
// TODO do this in main
|
||||||
// Notify executor-pool about existence. If executor-pools response is successfull start with getting an assignment, else shut down executor.
|
// Notify executor-pool about existence. If executor-pools response is successfull start with getting an assignment, else shut down executor.
|
||||||
|
logger.info("ExecutorBase | Notifying executor-pool about existens");
|
||||||
if(!notifyExecutorPoolService.notifyExecutorPool(this.executorURI, this.executorType)) {
|
if(!notifyExecutorPoolService.notifyExecutorPool(this.executorURI, this.executorType)) {
|
||||||
logger.log(Level.WARNING, "Executor could not connect to executor pool! Shuting down!");
|
logger.log(Level.WARNING, "ExecutorBase | Executor could not connect to executor pool! Shuting down!");
|
||||||
System.exit(0);
|
System.exit(0);
|
||||||
} else {
|
} else {
|
||||||
logger.info("Executor conntected to executor pool");
|
logger.info("ExecutorBase | Executor conntected to executor pool");
|
||||||
this.status = ExecutorStatus.IDLING;
|
this.status = ExecutorStatus.IDLING;
|
||||||
getAssignment();
|
getAssignment();
|
||||||
}
|
}
|
||||||
@@ -58,10 +59,10 @@ public abstract class ExecutorBase {
|
|||||||
public void getAssignment() {
|
public void getAssignment() {
|
||||||
Task newTask = getAssignmentPort.getAssignment(this.getExecutorType(), this.getExecutorURI());
|
Task newTask = getAssignmentPort.getAssignment(this.getExecutorType(), this.getExecutorURI());
|
||||||
if (newTask != null) {
|
if (newTask != null) {
|
||||||
logger.info("Executor got a new task");
|
logger.info("ExecutorBase | Executor got a new task");
|
||||||
this.executeTask(newTask);
|
this.executeTask(newTask);
|
||||||
} else {
|
} else {
|
||||||
logger.info("Executor got no new task");
|
logger.info("ExecutorBase | Executor got no new task");
|
||||||
this.status = ExecutorStatus.IDLING;
|
this.status = ExecutorStatus.IDLING;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -71,7 +72,7 @@ public abstract class ExecutorBase {
|
|||||||
* @return void
|
* @return void
|
||||||
**/
|
**/
|
||||||
private void executeTask(Task task) {
|
private void executeTask(Task task) {
|
||||||
logger.info("Starting execution");
|
logger.info("ExecutorBase | Starting execution");
|
||||||
this.status = ExecutorStatus.EXECUTING;
|
this.status = ExecutorStatus.EXECUTING;
|
||||||
|
|
||||||
task.setOutputData(execution(task.getInputData()));
|
task.setOutputData(execution(task.getInputData()));
|
||||||
@@ -80,7 +81,7 @@ public abstract class ExecutorBase {
|
|||||||
executionFinishedEventPort.publishExecutionFinishedEvent(
|
executionFinishedEventPort.publishExecutionFinishedEvent(
|
||||||
new ExecutionFinishedEvent(task.getTaskID(), task.getOutputData(), "SUCCESS"));
|
new ExecutionFinishedEvent(task.getTaskID(), task.getOutputData(), "SUCCESS"));
|
||||||
|
|
||||||
logger.info("Finish execution");
|
logger.info("ExecutorBase | Finish execution");
|
||||||
getAssignment();
|
getAssignment();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,11 +1,11 @@
|
|||||||
package ch.unisg.executorbase.executor.domain;
|
package ch.unisg.executorbase.executor.domain;
|
||||||
|
|
||||||
public enum ExecutorType {
|
public enum ExecutorType {
|
||||||
ADDITION, ROBOT;
|
COMPUTATION, SMALLROBOT, HUMIDITY, HUMIDITY_DEMO;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks if the give executor type exists.
|
* Checks if the give executor type exists.
|
||||||
* @return Wheter the given executor type exists
|
* @return Whether the given executor type exists
|
||||||
**/
|
**/
|
||||||
public static boolean contains(String test) {
|
public static boolean contains(String test) {
|
||||||
|
|
||||||
|
@@ -19,7 +19,12 @@ public class Task {
|
|||||||
|
|
||||||
public Task(String taskID, String inputData) {
|
public Task(String taskID, String inputData) {
|
||||||
this.taskID = taskID;
|
this.taskID = taskID;
|
||||||
this.inputData= inputData;
|
this.inputData = inputData;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Task(String taskID) {
|
||||||
|
this.taskID = taskID;
|
||||||
|
this.inputData = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -1,3 +1,15 @@
|
|||||||
server.port=8081
|
server.port=8081
|
||||||
roster.url=http://127.0.0.1:8082
|
roster.url=http://127.0.0.1:8082
|
||||||
executor.pool.url=http://127.0.0.1:8083
|
executor.pool.url=http://127.0.0.1:8083
|
||||||
|
|
||||||
|
spring.profiles.active=chaos-monkey
|
||||||
|
chaos.monkey.enabled=false
|
||||||
|
management.endpoint.chaosmonkey.enabled=true
|
||||||
|
management.endpoint.chaosmonkeyjmx.enabled=true
|
||||||
|
# include specific endpoints
|
||||||
|
management.endpoints.web.exposure.include=health,info,chaosmonkey
|
||||||
|
chaos.monkey.watcher.controller=true
|
||||||
|
chaos.monkey.watcher.restController=true
|
||||||
|
chaos.monkey.watcher.service=true
|
||||||
|
chaos.monkey.watcher.repository=true
|
||||||
|
chaos.monkey.watcher.component=true
|
||||||
|
@@ -2,17 +2,30 @@ FROM openjdk:11 AS development
|
|||||||
|
|
||||||
WORKDIR /opt/app
|
WORKDIR /opt/app
|
||||||
|
|
||||||
# ENV SPRING_DATASOURCE_URL=jdbc:mysql://backend-db:3306/db
|
ENV EXECUTOR_POOL_URI=http://executor-pool:8083
|
||||||
|
ENV ROSTER_URI=http://roster:8082
|
||||||
|
|
||||||
COPY .mvn/ .mvn
|
COPY executor-computation/.mvn ./.mvn
|
||||||
COPY mvnw pom.xml mvnw.cmd ./
|
COPY executor-computation/mvnw executor-computation/pom.xml executor-computation/mvnw.cmd ./
|
||||||
|
|
||||||
RUN apt-get clean && apt-get update && apt-get install dos2unix
|
RUN apt-get clean && apt-get update && apt-get install dos2unix
|
||||||
RUN dos2unix mvnw
|
RUN dos2unix mvnw
|
||||||
|
|
||||||
RUN ./mvnw dependency:go-offline
|
COPY common/pom.xml /opt/app/common/
|
||||||
|
COPY common/src /opt/app/common/src
|
||||||
|
COPY common/*target /opt/app/common/target
|
||||||
|
|
||||||
COPY src /opt/app/src
|
COPY executor-base/pom.xml /opt/app/executor-base/
|
||||||
COPY *target /opt/app/target
|
COPY executor-base/src /opt/app/executor-base/src
|
||||||
|
COPY executor-base/*target /opt/app/executor-base/target
|
||||||
|
|
||||||
|
COPY executor-computation/src /opt/app/src
|
||||||
|
COPY executor-computation/*target /opt/app/target
|
||||||
|
|
||||||
|
RUN ./mvnw -f /opt/app/common/pom.xml clean install
|
||||||
|
|
||||||
|
RUN ./mvnw -f /opt/app/executor-base/pom.xml clean install
|
||||||
|
|
||||||
|
RUN ./mvnw clean install
|
||||||
|
|
||||||
CMD ["./mvnw", "spring-boot:run", "-Dspring-boot.run.jvmArguments=\"-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005\"", "-Dspring.devtools.restart.enabled=true"]
|
CMD ["./mvnw", "spring-boot:run", "-Dspring-boot.run.jvmArguments=\"-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005\"", "-Dspring.devtools.restart.enabled=true"]
|
||||||
|
@@ -52,6 +52,32 @@
|
|||||||
<artifactId>json</artifactId>
|
<artifactId>json</artifactId>
|
||||||
<version>20210307</version>
|
<version>20210307</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>de.codecentric</groupId>
|
||||||
|
<artifactId>chaos-monkey-spring-boot</artifactId>
|
||||||
|
<version>2.5.4</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-test</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.graalvm.js</groupId>
|
||||||
|
<artifactId>js</artifactId>
|
||||||
|
<version>21.3.0</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.graalvm.js</groupId>
|
||||||
|
<artifactId>js-scriptengine</artifactId>
|
||||||
|
<version>21.3.0</version>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
@@ -1,5 +1,9 @@
|
|||||||
package ch.unisg.executorcomputation;
|
package ch.unisg.executorcomputation;
|
||||||
|
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
import java.util.logging.Level;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.SpringApplication;
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
|
||||||
@@ -8,6 +12,8 @@ import ch.unisg.executorcomputation.executor.domain.Executor;
|
|||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
public class ExecutorcomputationApplication {
|
public class ExecutorcomputationApplication {
|
||||||
|
|
||||||
|
static Logger logger = Logger.getLogger(ExecutorcomputationApplication.class.getName());
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
SpringApplication.run(ExecutorcomputationApplication.class, args);
|
SpringApplication.run(ExecutorcomputationApplication.class, args);
|
||||||
Executor.getExecutor();
|
Executor.getExecutor();
|
||||||
|
@@ -1,13 +1,21 @@
|
|||||||
package ch.unisg.executorcomputation.executor.domain;
|
package ch.unisg.executorcomputation.executor.domain;
|
||||||
|
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
import java.util.logging.Level;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
|
import javax.script.ScriptEngine;
|
||||||
|
import javax.script.ScriptEngineManager;
|
||||||
|
import javax.script.ScriptException;
|
||||||
|
|
||||||
import ch.unisg.executorbase.executor.domain.ExecutorBase;
|
import ch.unisg.executorbase.executor.domain.ExecutorBase;
|
||||||
import ch.unisg.executorbase.executor.domain.ExecutorType;
|
import ch.unisg.executorbase.executor.domain.ExecutorType;
|
||||||
|
|
||||||
public class Executor extends ExecutorBase {
|
public class Executor extends ExecutorBase {
|
||||||
|
|
||||||
private static final Executor executor = new Executor(ExecutorType.ADDITION);
|
private static Logger executorLogger = Logger.getLogger(Executor.class.getName());
|
||||||
|
|
||||||
|
private static final Executor executor = new Executor(ExecutorType.COMPUTATION);
|
||||||
|
|
||||||
public static Executor getExecutor() {
|
public static Executor getExecutor() {
|
||||||
return executor;
|
return executor;
|
||||||
@@ -21,43 +29,30 @@ public class Executor extends ExecutorBase {
|
|||||||
protected
|
protected
|
||||||
String execution(String inputData) {
|
String execution(String inputData) {
|
||||||
|
|
||||||
String operator = "";
|
executorLogger.info("Executor | Starting execution with inputData: " + inputData);
|
||||||
if (inputData.contains("+")) {
|
|
||||||
operator = "+";
|
ScriptEngineManager mgr = new ScriptEngineManager();
|
||||||
} else if (inputData.contains("-")) {
|
ScriptEngine engine = mgr.getEngineByName("JavaScript");
|
||||||
operator = "-";
|
|
||||||
} else if (inputData.contains("*")) {
|
String result = "";
|
||||||
operator = "*";
|
try {
|
||||||
} else {
|
result = engine.eval(inputData).toString();
|
||||||
return "invalid data";
|
} catch (ScriptException e1) {
|
||||||
|
// TODO some logic if execution fails
|
||||||
|
executorLogger.severe(e1.getMessage());
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
double result = Double.NaN;
|
try {
|
||||||
|
TimeUnit.SECONDS.sleep(1);
|
||||||
// try {
|
} catch (InterruptedException e) {
|
||||||
// TimeUnit.SECONDS.sleep(5);
|
return result;
|
||||||
// } catch (InterruptedException e) {
|
// executorLogger.log(Level.SEVERE, e.getLocalizedMessage(), e);
|
||||||
// e.printStackTrace();
|
// Thread.currentThread().interrupt();
|
||||||
// }
|
|
||||||
|
|
||||||
if (operator.equalsIgnoreCase("+")) {
|
|
||||||
String[] parts = inputData.split("\\+");
|
|
||||||
double a = Double.parseDouble(parts[0]);
|
|
||||||
double b = Double.parseDouble(parts[1]);
|
|
||||||
result = a + b;
|
|
||||||
} else if (operator.equalsIgnoreCase("*")) {
|
|
||||||
String[] parts = inputData.split("\\*");
|
|
||||||
double a = Double.parseDouble(parts[0]);
|
|
||||||
double b = Double.parseDouble(parts[1]);
|
|
||||||
result = a * b;
|
|
||||||
} else if (operator.equalsIgnoreCase("-")) {
|
|
||||||
String[] parts = inputData.split("-");
|
|
||||||
double a = Double.parseDouble(parts[0]);
|
|
||||||
double b = Double.parseDouble(parts[1]);
|
|
||||||
result = a - b;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return Double.toString(result);
|
executorLogger.info("Executor | Finish execution");
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -1 +1,14 @@
|
|||||||
server.port=8085
|
server.port=8085
|
||||||
|
|
||||||
|
spring.profiles.active=chaos-monkey
|
||||||
|
chaos.monkey.enabled=false
|
||||||
|
management.endpoint.chaosmonkey.enabled=true
|
||||||
|
management.endpoint.chaosmonkeyjmx.enabled=true
|
||||||
|
# include specific endpoints
|
||||||
|
management.endpoints.web.exposure.include=health,info,chaosmonkey
|
||||||
|
chaos.monkey.watcher.controller=true
|
||||||
|
chaos.monkey.watcher.restController=true
|
||||||
|
chaos.monkey.watcher.service=true
|
||||||
|
chaos.monkey.watcher.repository=true
|
||||||
|
chaos.monkey.watcher.component=true
|
||||||
|
|
||||||
|
33
executor-humidity-demo/.gitignore
vendored
Normal file
33
executor-humidity-demo/.gitignore
vendored
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
HELP.md
|
||||||
|
target/
|
||||||
|
!.mvn/wrapper/maven-wrapper.jar
|
||||||
|
!**/src/main/**/target/
|
||||||
|
!**/src/test/**/target/
|
||||||
|
|
||||||
|
### STS ###
|
||||||
|
.apt_generated
|
||||||
|
.classpath
|
||||||
|
.factorypath
|
||||||
|
.project
|
||||||
|
.settings
|
||||||
|
.springBeans
|
||||||
|
.sts4-cache
|
||||||
|
|
||||||
|
### IntelliJ IDEA ###
|
||||||
|
.idea
|
||||||
|
*.iws
|
||||||
|
*.iml
|
||||||
|
*.ipr
|
||||||
|
|
||||||
|
### NetBeans ###
|
||||||
|
/nbproject/private/
|
||||||
|
/nbbuild/
|
||||||
|
/dist/
|
||||||
|
/nbdist/
|
||||||
|
/.nb-gradle/
|
||||||
|
build/
|
||||||
|
!**/src/main/**/build/
|
||||||
|
!**/src/test/**/build/
|
||||||
|
|
||||||
|
### VS Code ###
|
||||||
|
.vscode/
|
117
executor-humidity-demo/.mvn/wrapper/MavenWrapperDownloader.java
vendored
Normal file
117
executor-humidity-demo/.mvn/wrapper/MavenWrapperDownloader.java
vendored
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2007-present the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
import java.net.*;
|
||||||
|
import java.io.*;
|
||||||
|
import java.nio.channels.*;
|
||||||
|
import java.util.Properties;
|
||||||
|
|
||||||
|
public class MavenWrapperDownloader {
|
||||||
|
|
||||||
|
private static final String WRAPPER_VERSION = "0.5.6";
|
||||||
|
/**
|
||||||
|
* Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.
|
||||||
|
*/
|
||||||
|
private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/"
|
||||||
|
+ WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Path to the maven-wrapper.properties file, which might contain a downloadUrl property to
|
||||||
|
* use instead of the default one.
|
||||||
|
*/
|
||||||
|
private static final String MAVEN_WRAPPER_PROPERTIES_PATH =
|
||||||
|
".mvn/wrapper/maven-wrapper.properties";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Path where the maven-wrapper.jar will be saved to.
|
||||||
|
*/
|
||||||
|
private static final String MAVEN_WRAPPER_JAR_PATH =
|
||||||
|
".mvn/wrapper/maven-wrapper.jar";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Name of the property which should be used to override the default download url for the wrapper.
|
||||||
|
*/
|
||||||
|
private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl";
|
||||||
|
|
||||||
|
public static void main(String args[]) {
|
||||||
|
System.out.println("- Downloader started");
|
||||||
|
File baseDirectory = new File(args[0]);
|
||||||
|
System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath());
|
||||||
|
|
||||||
|
// If the maven-wrapper.properties exists, read it and check if it contains a custom
|
||||||
|
// wrapperUrl parameter.
|
||||||
|
File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);
|
||||||
|
String url = DEFAULT_DOWNLOAD_URL;
|
||||||
|
if(mavenWrapperPropertyFile.exists()) {
|
||||||
|
FileInputStream mavenWrapperPropertyFileInputStream = null;
|
||||||
|
try {
|
||||||
|
mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);
|
||||||
|
Properties mavenWrapperProperties = new Properties();
|
||||||
|
mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);
|
||||||
|
url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);
|
||||||
|
} catch (IOException e) {
|
||||||
|
System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'");
|
||||||
|
} finally {
|
||||||
|
try {
|
||||||
|
if(mavenWrapperPropertyFileInputStream != null) {
|
||||||
|
mavenWrapperPropertyFileInputStream.close();
|
||||||
|
}
|
||||||
|
} catch (IOException e) {
|
||||||
|
// Ignore ...
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
System.out.println("- Downloading from: " + url);
|
||||||
|
|
||||||
|
File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);
|
||||||
|
if(!outputFile.getParentFile().exists()) {
|
||||||
|
if(!outputFile.getParentFile().mkdirs()) {
|
||||||
|
System.out.println(
|
||||||
|
"- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
System.out.println("- Downloading to: " + outputFile.getAbsolutePath());
|
||||||
|
try {
|
||||||
|
downloadFileFromURL(url, outputFile);
|
||||||
|
System.out.println("Done");
|
||||||
|
System.exit(0);
|
||||||
|
} catch (Throwable e) {
|
||||||
|
System.out.println("- Error downloading");
|
||||||
|
e.printStackTrace();
|
||||||
|
System.exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void downloadFileFromURL(String urlString, File destination) throws Exception {
|
||||||
|
if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) {
|
||||||
|
String username = System.getenv("MVNW_USERNAME");
|
||||||
|
char[] password = System.getenv("MVNW_PASSWORD").toCharArray();
|
||||||
|
Authenticator.setDefault(new Authenticator() {
|
||||||
|
@Override
|
||||||
|
protected PasswordAuthentication getPasswordAuthentication() {
|
||||||
|
return new PasswordAuthentication(username, password);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
URL website = new URL(urlString);
|
||||||
|
ReadableByteChannel rbc;
|
||||||
|
rbc = Channels.newChannel(website.openStream());
|
||||||
|
FileOutputStream fos = new FileOutputStream(destination);
|
||||||
|
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
|
||||||
|
fos.close();
|
||||||
|
rbc.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
BIN
executor-humidity-demo/.mvn/wrapper/maven-wrapper.jar
vendored
Normal file
BIN
executor-humidity-demo/.mvn/wrapper/maven-wrapper.jar
vendored
Normal file
Binary file not shown.
2
executor-humidity-demo/.mvn/wrapper/maven-wrapper.properties
vendored
Normal file
2
executor-humidity-demo/.mvn/wrapper/maven-wrapper.properties
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.2/apache-maven-3.8.2-bin.zip
|
||||||
|
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar
|
3
executor-humidity-demo/Californium3.properties
Normal file
3
executor-humidity-demo/Californium3.properties
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Californium3 CoAP Properties file
|
||||||
|
# Wed Dec 15 22:23:03 CET 2021
|
||||||
|
#
|
310
executor-humidity-demo/mvnw
vendored
Executable file
310
executor-humidity-demo/mvnw
vendored
Executable file
@@ -0,0 +1,310 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
# Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
# or more contributor license agreements. See the NOTICE file
|
||||||
|
# distributed with this work for additional information
|
||||||
|
# regarding copyright ownership. The ASF licenses this file
|
||||||
|
# to you under the Apache License, Version 2.0 (the
|
||||||
|
# "License"); you may not use this file except in compliance
|
||||||
|
# with the License. You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing,
|
||||||
|
# software distributed under the License is distributed on an
|
||||||
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
# KIND, either express or implied. See the License for the
|
||||||
|
# specific language governing permissions and limitations
|
||||||
|
# under the License.
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
# Maven Start Up Batch script
|
||||||
|
#
|
||||||
|
# Required ENV vars:
|
||||||
|
# ------------------
|
||||||
|
# JAVA_HOME - location of a JDK home dir
|
||||||
|
#
|
||||||
|
# Optional ENV vars
|
||||||
|
# -----------------
|
||||||
|
# M2_HOME - location of maven2's installed home dir
|
||||||
|
# MAVEN_OPTS - parameters passed to the Java VM when running Maven
|
||||||
|
# e.g. to debug Maven itself, use
|
||||||
|
# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
|
||||||
|
# MAVEN_SKIP_RC - flag to disable loading of mavenrc files
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
if [ -z "$MAVEN_SKIP_RC" ] ; then
|
||||||
|
|
||||||
|
if [ -f /etc/mavenrc ] ; then
|
||||||
|
. /etc/mavenrc
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f "$HOME/.mavenrc" ] ; then
|
||||||
|
. "$HOME/.mavenrc"
|
||||||
|
fi
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
# OS specific support. $var _must_ be set to either true or false.
|
||||||
|
cygwin=false;
|
||||||
|
darwin=false;
|
||||||
|
mingw=false
|
||||||
|
case "`uname`" in
|
||||||
|
CYGWIN*) cygwin=true ;;
|
||||||
|
MINGW*) mingw=true;;
|
||||||
|
Darwin*) darwin=true
|
||||||
|
# Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
|
||||||
|
# See https://developer.apple.com/library/mac/qa/qa1170/_index.html
|
||||||
|
if [ -z "$JAVA_HOME" ]; then
|
||||||
|
if [ -x "/usr/libexec/java_home" ]; then
|
||||||
|
export JAVA_HOME="`/usr/libexec/java_home`"
|
||||||
|
else
|
||||||
|
export JAVA_HOME="/Library/Java/Home"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -z "$JAVA_HOME" ] ; then
|
||||||
|
if [ -r /etc/gentoo-release ] ; then
|
||||||
|
JAVA_HOME=`java-config --jre-home`
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$M2_HOME" ] ; then
|
||||||
|
## resolve links - $0 may be a link to maven's home
|
||||||
|
PRG="$0"
|
||||||
|
|
||||||
|
# need this for relative symlinks
|
||||||
|
while [ -h "$PRG" ] ; do
|
||||||
|
ls=`ls -ld "$PRG"`
|
||||||
|
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||||
|
if expr "$link" : '/.*' > /dev/null; then
|
||||||
|
PRG="$link"
|
||||||
|
else
|
||||||
|
PRG="`dirname "$PRG"`/$link"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
saveddir=`pwd`
|
||||||
|
|
||||||
|
M2_HOME=`dirname "$PRG"`/..
|
||||||
|
|
||||||
|
# make it fully qualified
|
||||||
|
M2_HOME=`cd "$M2_HOME" && pwd`
|
||||||
|
|
||||||
|
cd "$saveddir"
|
||||||
|
# echo Using m2 at $M2_HOME
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Cygwin, ensure paths are in UNIX format before anything is touched
|
||||||
|
if $cygwin ; then
|
||||||
|
[ -n "$M2_HOME" ] &&
|
||||||
|
M2_HOME=`cygpath --unix "$M2_HOME"`
|
||||||
|
[ -n "$JAVA_HOME" ] &&
|
||||||
|
JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
|
||||||
|
[ -n "$CLASSPATH" ] &&
|
||||||
|
CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Mingw, ensure paths are in UNIX format before anything is touched
|
||||||
|
if $mingw ; then
|
||||||
|
[ -n "$M2_HOME" ] &&
|
||||||
|
M2_HOME="`(cd "$M2_HOME"; pwd)`"
|
||||||
|
[ -n "$JAVA_HOME" ] &&
|
||||||
|
JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$JAVA_HOME" ]; then
|
||||||
|
javaExecutable="`which javac`"
|
||||||
|
if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then
|
||||||
|
# readlink(1) is not available as standard on Solaris 10.
|
||||||
|
readLink=`which readlink`
|
||||||
|
if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then
|
||||||
|
if $darwin ; then
|
||||||
|
javaHome="`dirname \"$javaExecutable\"`"
|
||||||
|
javaExecutable="`cd \"$javaHome\" && pwd -P`/javac"
|
||||||
|
else
|
||||||
|
javaExecutable="`readlink -f \"$javaExecutable\"`"
|
||||||
|
fi
|
||||||
|
javaHome="`dirname \"$javaExecutable\"`"
|
||||||
|
javaHome=`expr "$javaHome" : '\(.*\)/bin'`
|
||||||
|
JAVA_HOME="$javaHome"
|
||||||
|
export JAVA_HOME
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$JAVACMD" ] ; then
|
||||||
|
if [ -n "$JAVA_HOME" ] ; then
|
||||||
|
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||||
|
# IBM's JDK on AIX uses strange locations for the executables
|
||||||
|
JAVACMD="$JAVA_HOME/jre/sh/java"
|
||||||
|
else
|
||||||
|
JAVACMD="$JAVA_HOME/bin/java"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
JAVACMD="`which java`"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -x "$JAVACMD" ] ; then
|
||||||
|
echo "Error: JAVA_HOME is not defined correctly." >&2
|
||||||
|
echo " We cannot execute $JAVACMD" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$JAVA_HOME" ] ; then
|
||||||
|
echo "Warning: JAVA_HOME environment variable is not set."
|
||||||
|
fi
|
||||||
|
|
||||||
|
CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
|
||||||
|
|
||||||
|
# traverses directory structure from process work directory to filesystem root
|
||||||
|
# first directory with .mvn subdirectory is considered project base directory
|
||||||
|
find_maven_basedir() {
|
||||||
|
|
||||||
|
if [ -z "$1" ]
|
||||||
|
then
|
||||||
|
echo "Path not specified to find_maven_basedir"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
basedir="$1"
|
||||||
|
wdir="$1"
|
||||||
|
while [ "$wdir" != '/' ] ; do
|
||||||
|
if [ -d "$wdir"/.mvn ] ; then
|
||||||
|
basedir=$wdir
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
# workaround for JBEAP-8937 (on Solaris 10/Sparc)
|
||||||
|
if [ -d "${wdir}" ]; then
|
||||||
|
wdir=`cd "$wdir/.."; pwd`
|
||||||
|
fi
|
||||||
|
# end of workaround
|
||||||
|
done
|
||||||
|
echo "${basedir}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# concatenates all lines of a file
|
||||||
|
concat_lines() {
|
||||||
|
if [ -f "$1" ]; then
|
||||||
|
echo "$(tr -s '\n' ' ' < "$1")"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
BASE_DIR=`find_maven_basedir "$(pwd)"`
|
||||||
|
if [ -z "$BASE_DIR" ]; then
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
|
||||||
|
# This allows using the maven wrapper in projects that prohibit checking in binary data.
|
||||||
|
##########################################################################################
|
||||||
|
if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Found .mvn/wrapper/maven-wrapper.jar"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..."
|
||||||
|
fi
|
||||||
|
if [ -n "$MVNW_REPOURL" ]; then
|
||||||
|
jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
|
||||||
|
else
|
||||||
|
jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
|
||||||
|
fi
|
||||||
|
while IFS="=" read key value; do
|
||||||
|
case "$key" in (wrapperUrl) jarUrl="$value"; break ;;
|
||||||
|
esac
|
||||||
|
done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties"
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Downloading from: $jarUrl"
|
||||||
|
fi
|
||||||
|
wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar"
|
||||||
|
if $cygwin; then
|
||||||
|
wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"`
|
||||||
|
fi
|
||||||
|
|
||||||
|
if command -v wget > /dev/null; then
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Found wget ... using wget"
|
||||||
|
fi
|
||||||
|
if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
|
||||||
|
wget "$jarUrl" -O "$wrapperJarPath"
|
||||||
|
else
|
||||||
|
wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath"
|
||||||
|
fi
|
||||||
|
elif command -v curl > /dev/null; then
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Found curl ... using curl"
|
||||||
|
fi
|
||||||
|
if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
|
||||||
|
curl -o "$wrapperJarPath" "$jarUrl" -f
|
||||||
|
else
|
||||||
|
curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f
|
||||||
|
fi
|
||||||
|
|
||||||
|
else
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Falling back to using Java to download"
|
||||||
|
fi
|
||||||
|
javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java"
|
||||||
|
# For Cygwin, switch paths to Windows format before running javac
|
||||||
|
if $cygwin; then
|
||||||
|
javaClass=`cygpath --path --windows "$javaClass"`
|
||||||
|
fi
|
||||||
|
if [ -e "$javaClass" ]; then
|
||||||
|
if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo " - Compiling MavenWrapperDownloader.java ..."
|
||||||
|
fi
|
||||||
|
# Compiling the Java class
|
||||||
|
("$JAVA_HOME/bin/javac" "$javaClass")
|
||||||
|
fi
|
||||||
|
if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
|
||||||
|
# Running the downloader
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo " - Running MavenWrapperDownloader.java ..."
|
||||||
|
fi
|
||||||
|
("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR")
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
##########################################################################################
|
||||||
|
# End of extension
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo $MAVEN_PROJECTBASEDIR
|
||||||
|
fi
|
||||||
|
MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS"
|
||||||
|
|
||||||
|
# For Cygwin, switch paths to Windows format before running java
|
||||||
|
if $cygwin; then
|
||||||
|
[ -n "$M2_HOME" ] &&
|
||||||
|
M2_HOME=`cygpath --path --windows "$M2_HOME"`
|
||||||
|
[ -n "$JAVA_HOME" ] &&
|
||||||
|
JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
|
||||||
|
[ -n "$CLASSPATH" ] &&
|
||||||
|
CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
|
||||||
|
[ -n "$MAVEN_PROJECTBASEDIR" ] &&
|
||||||
|
MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Provide a "standardized" way to retrieve the CLI args that will
|
||||||
|
# work with both Windows and non-Windows executions.
|
||||||
|
MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@"
|
||||||
|
export MAVEN_CMD_LINE_ARGS
|
||||||
|
|
||||||
|
WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
|
||||||
|
|
||||||
|
exec "$JAVACMD" \
|
||||||
|
$MAVEN_OPTS \
|
||||||
|
-classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \
|
||||||
|
"-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
|
||||||
|
${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@"
|
182
executor-humidity-demo/mvnw.cmd
vendored
Normal file
182
executor-humidity-demo/mvnw.cmd
vendored
Normal file
@@ -0,0 +1,182 @@
|
|||||||
|
@REM ----------------------------------------------------------------------------
|
||||||
|
@REM Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
@REM or more contributor license agreements. See the NOTICE file
|
||||||
|
@REM distributed with this work for additional information
|
||||||
|
@REM regarding copyright ownership. The ASF licenses this file
|
||||||
|
@REM to you under the Apache License, Version 2.0 (the
|
||||||
|
@REM "License"); you may not use this file except in compliance
|
||||||
|
@REM with the License. You may obtain a copy of the License at
|
||||||
|
@REM
|
||||||
|
@REM https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
@REM
|
||||||
|
@REM Unless required by applicable law or agreed to in writing,
|
||||||
|
@REM software distributed under the License is distributed on an
|
||||||
|
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
@REM KIND, either express or implied. See the License for the
|
||||||
|
@REM specific language governing permissions and limitations
|
||||||
|
@REM under the License.
|
||||||
|
@REM ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@REM ----------------------------------------------------------------------------
|
||||||
|
@REM Maven Start Up Batch script
|
||||||
|
@REM
|
||||||
|
@REM Required ENV vars:
|
||||||
|
@REM JAVA_HOME - location of a JDK home dir
|
||||||
|
@REM
|
||||||
|
@REM Optional ENV vars
|
||||||
|
@REM M2_HOME - location of maven2's installed home dir
|
||||||
|
@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
|
||||||
|
@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending
|
||||||
|
@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
|
||||||
|
@REM e.g. to debug Maven itself, use
|
||||||
|
@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
|
||||||
|
@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
|
||||||
|
@REM ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
|
||||||
|
@echo off
|
||||||
|
@REM set title of command window
|
||||||
|
title %0
|
||||||
|
@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on'
|
||||||
|
@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
|
||||||
|
|
||||||
|
@REM set %HOME% to equivalent of $HOME
|
||||||
|
if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
|
||||||
|
|
||||||
|
@REM Execute a user defined script before this one
|
||||||
|
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
|
||||||
|
@REM check for pre script, once with legacy .bat ending and once with .cmd ending
|
||||||
|
if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
|
||||||
|
if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
|
||||||
|
:skipRcPre
|
||||||
|
|
||||||
|
@setlocal
|
||||||
|
|
||||||
|
set ERROR_CODE=0
|
||||||
|
|
||||||
|
@REM To isolate internal variables from possible post scripts, we use another setlocal
|
||||||
|
@setlocal
|
||||||
|
|
||||||
|
@REM ==== START VALIDATION ====
|
||||||
|
if not "%JAVA_HOME%" == "" goto OkJHome
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo Error: JAVA_HOME not found in your environment. >&2
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the >&2
|
||||||
|
echo location of your Java installation. >&2
|
||||||
|
echo.
|
||||||
|
goto error
|
||||||
|
|
||||||
|
:OkJHome
|
||||||
|
if exist "%JAVA_HOME%\bin\java.exe" goto init
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo Error: JAVA_HOME is set to an invalid directory. >&2
|
||||||
|
echo JAVA_HOME = "%JAVA_HOME%" >&2
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the >&2
|
||||||
|
echo location of your Java installation. >&2
|
||||||
|
echo.
|
||||||
|
goto error
|
||||||
|
|
||||||
|
@REM ==== END VALIDATION ====
|
||||||
|
|
||||||
|
:init
|
||||||
|
|
||||||
|
@REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
|
||||||
|
@REM Fallback to current working directory if not found.
|
||||||
|
|
||||||
|
set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
|
||||||
|
IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
|
||||||
|
|
||||||
|
set EXEC_DIR=%CD%
|
||||||
|
set WDIR=%EXEC_DIR%
|
||||||
|
:findBaseDir
|
||||||
|
IF EXIST "%WDIR%"\.mvn goto baseDirFound
|
||||||
|
cd ..
|
||||||
|
IF "%WDIR%"=="%CD%" goto baseDirNotFound
|
||||||
|
set WDIR=%CD%
|
||||||
|
goto findBaseDir
|
||||||
|
|
||||||
|
:baseDirFound
|
||||||
|
set MAVEN_PROJECTBASEDIR=%WDIR%
|
||||||
|
cd "%EXEC_DIR%"
|
||||||
|
goto endDetectBaseDir
|
||||||
|
|
||||||
|
:baseDirNotFound
|
||||||
|
set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
|
||||||
|
cd "%EXEC_DIR%"
|
||||||
|
|
||||||
|
:endDetectBaseDir
|
||||||
|
|
||||||
|
IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
|
||||||
|
|
||||||
|
@setlocal EnableExtensions EnableDelayedExpansion
|
||||||
|
for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
|
||||||
|
@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
|
||||||
|
|
||||||
|
:endReadAdditionalConfig
|
||||||
|
|
||||||
|
SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
|
||||||
|
set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
|
||||||
|
set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
|
||||||
|
|
||||||
|
set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
|
||||||
|
|
||||||
|
FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO (
|
||||||
|
IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B
|
||||||
|
)
|
||||||
|
|
||||||
|
@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
|
||||||
|
@REM This allows using the maven wrapper in projects that prohibit checking in binary data.
|
||||||
|
if exist %WRAPPER_JAR% (
|
||||||
|
if "%MVNW_VERBOSE%" == "true" (
|
||||||
|
echo Found %WRAPPER_JAR%
|
||||||
|
)
|
||||||
|
) else (
|
||||||
|
if not "%MVNW_REPOURL%" == "" (
|
||||||
|
SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
|
||||||
|
)
|
||||||
|
if "%MVNW_VERBOSE%" == "true" (
|
||||||
|
echo Couldn't find %WRAPPER_JAR%, downloading it ...
|
||||||
|
echo Downloading from: %DOWNLOAD_URL%
|
||||||
|
)
|
||||||
|
|
||||||
|
powershell -Command "&{"^
|
||||||
|
"$webclient = new-object System.Net.WebClient;"^
|
||||||
|
"if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^
|
||||||
|
"$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^
|
||||||
|
"}"^
|
||||||
|
"[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^
|
||||||
|
"}"
|
||||||
|
if "%MVNW_VERBOSE%" == "true" (
|
||||||
|
echo Finished downloading %WRAPPER_JAR%
|
||||||
|
)
|
||||||
|
)
|
||||||
|
@REM End of extension
|
||||||
|
|
||||||
|
@REM Provide a "standardized" way to retrieve the CLI args that will
|
||||||
|
@REM work with both Windows and non-Windows executions.
|
||||||
|
set MAVEN_CMD_LINE_ARGS=%*
|
||||||
|
|
||||||
|
%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
|
||||||
|
if ERRORLEVEL 1 goto error
|
||||||
|
goto end
|
||||||
|
|
||||||
|
:error
|
||||||
|
set ERROR_CODE=1
|
||||||
|
|
||||||
|
:end
|
||||||
|
@endlocal & set ERROR_CODE=%ERROR_CODE%
|
||||||
|
|
||||||
|
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost
|
||||||
|
@REM check for post script, once with legacy .bat ending and once with .cmd ending
|
||||||
|
if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
|
||||||
|
if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd"
|
||||||
|
:skipRcPost
|
||||||
|
|
||||||
|
@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
|
||||||
|
if "%MAVEN_BATCH_PAUSE%" == "on" pause
|
||||||
|
|
||||||
|
if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
|
||||||
|
|
||||||
|
exit /B %ERROR_CODE%
|
81
executor-humidity-demo/pom.xml
Normal file
81
executor-humidity-demo/pom.xml
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<parent>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||||||
|
<version>2.5.5</version>
|
||||||
|
<relativePath/> <!-- lookup parent from repository -->
|
||||||
|
</parent>
|
||||||
|
<groupId>ch.unisg</groupId>
|
||||||
|
<artifactId>executor-humidity-demo</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
<name>executor-humidity-demo</name>
|
||||||
|
<description>Demo project for Spring Boot</description>
|
||||||
|
<properties>
|
||||||
|
<java.version>11</java.version>
|
||||||
|
</properties>
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>jitpack.io</id>
|
||||||
|
<url>https://jitpack.io</url>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
||||||
|
<version>2.5.5</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-web</artifactId>
|
||||||
|
<version>5.3.10</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-devtools</artifactId>
|
||||||
|
<scope>runtime</scope>
|
||||||
|
<optional>true</optional>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>ch.unisg</groupId>
|
||||||
|
<artifactId>executor-base</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.californium</groupId>
|
||||||
|
<artifactId>californium-core</artifactId>
|
||||||
|
<version>3.0.0</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.github.Interactions-HSG</groupId>
|
||||||
|
<artifactId>wot-td-java</artifactId>
|
||||||
|
<version>0.1.1</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<excludes>
|
||||||
|
<exclude>
|
||||||
|
<groupId>org.projectlombok</groupId>
|
||||||
|
<artifactId>lombok</artifactId>
|
||||||
|
</exclude>
|
||||||
|
</excludes>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
</project>
|
@@ -0,0 +1,16 @@
|
|||||||
|
package ch.unisg.executorhumidity;
|
||||||
|
|
||||||
|
import org.springframework.boot.SpringApplication;
|
||||||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
|
||||||
|
import ch.unisg.executorhumidity.executor.domain.Executor;
|
||||||
|
|
||||||
|
@SpringBootApplication
|
||||||
|
public class ExecutorhumidityApplication {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
SpringApplication.run(ExecutorhumidityApplication.class, args);
|
||||||
|
Executor.getExecutor();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,38 @@
|
|||||||
|
package ch.unisg.executorhumidity.executor.adapter.in.web;
|
||||||
|
|
||||||
|
import org.springframework.http.HttpHeaders;
|
||||||
|
import org.springframework.http.HttpStatus;
|
||||||
|
import org.springframework.http.ResponseEntity;
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.PathVariable;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
import ch.unisg.executorbase.executor.application.port.in.TaskAvailableCommand;
|
||||||
|
import ch.unisg.executorbase.executor.application.port.in.TaskAvailableUseCase;
|
||||||
|
import ch.unisg.executorbase.executor.domain.ExecutorType;
|
||||||
|
|
||||||
|
import java.util.concurrent.CompletableFuture;
|
||||||
|
|
||||||
|
@RestController
|
||||||
|
public class TaskAvailableController {
|
||||||
|
private final TaskAvailableUseCase taskAvailableUseCase;
|
||||||
|
|
||||||
|
public TaskAvailableController(TaskAvailableUseCase taskAvailableUseCase) {
|
||||||
|
this.taskAvailableUseCase = taskAvailableUseCase;
|
||||||
|
}
|
||||||
|
|
||||||
|
@GetMapping(path="/newtask/{taskType}")
|
||||||
|
public ResponseEntity<String> retrieveTaskfromTaskList(@PathVariable("taskType") String taskType) {
|
||||||
|
|
||||||
|
if (ExecutorType.contains(taskType.toUpperCase())) {
|
||||||
|
TaskAvailableCommand command = new TaskAvailableCommand(
|
||||||
|
ExecutorType.valueOf(taskType.toUpperCase()));
|
||||||
|
CompletableFuture.runAsync(() -> taskAvailableUseCase.newTaskAvailable(command));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add the content type as a response header
|
||||||
|
HttpHeaders responseHeaders = new HttpHeaders();
|
||||||
|
|
||||||
|
return new ResponseEntity<>("OK", responseHeaders, HttpStatus.OK);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,114 @@
|
|||||||
|
package ch.unisg.executorhumidity.executor.adapter.out;
|
||||||
|
|
||||||
|
import ch.unisg.executorhumidity.executor.application.port.out.GetHumidityPort;
|
||||||
|
import ch.unisg.ics.interactions.wot.td.ThingDescription;
|
||||||
|
import ch.unisg.ics.interactions.wot.td.affordances.Form;
|
||||||
|
import ch.unisg.ics.interactions.wot.td.affordances.PropertyAffordance;
|
||||||
|
import ch.unisg.ics.interactions.wot.td.clients.TDCoapRequest;
|
||||||
|
import ch.unisg.ics.interactions.wot.td.clients.TDCoapResponse;
|
||||||
|
import ch.unisg.ics.interactions.wot.td.io.TDGraphReader;
|
||||||
|
import ch.unisg.ics.interactions.wot.td.schemas.ObjectSchema;
|
||||||
|
import ch.unisg.ics.interactions.wot.td.vocabularies.TD;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
|
import org.springframework.context.annotation.Primary;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
import org.w3c.dom.Document;
|
||||||
|
import org.w3c.dom.Node;
|
||||||
|
import org.w3c.dom.NodeList;
|
||||||
|
import org.xml.sax.InputSource;
|
||||||
|
import org.xml.sax.SAXException;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.StringReader;
|
||||||
|
import java.net.URI;
|
||||||
|
import java.net.http.HttpClient;
|
||||||
|
import java.net.http.HttpRequest;
|
||||||
|
import java.net.http.HttpResponse;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
|
import javax.xml.parsers.DocumentBuilder;
|
||||||
|
import javax.xml.parsers.DocumentBuilderFactory;
|
||||||
|
import javax.xml.parsers.ParserConfigurationException;
|
||||||
|
|
||||||
|
|
||||||
|
@Component
|
||||||
|
@Primary
|
||||||
|
public class GetHumidityAdapter implements GetHumidityPort {
|
||||||
|
|
||||||
|
String endpoint = System.getenv("SEARCH_ENGINE_URI") == null ?
|
||||||
|
"https://api.interactions.ics.unisg.ch/search/searchEngine" : System.getenv("SEARCH_ENGINE_URI");
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getHumidity() {
|
||||||
|
|
||||||
|
String input = "@prefix dct: <http://purl.org/dc/terms/> . select ?title where { ?title dct:title 'Mirogate' }";
|
||||||
|
|
||||||
|
var httpRequest = HttpRequest.newBuilder()
|
||||||
|
.uri(URI.create(endpoint))
|
||||||
|
.header("Content-Type", "application/sparql-query")
|
||||||
|
.POST(HttpRequest.BodyPublishers.ofString(input))
|
||||||
|
.build();
|
||||||
|
|
||||||
|
var client = HttpClient.newHttpClient();
|
||||||
|
|
||||||
|
try {
|
||||||
|
String description = client.send(httpRequest, HttpResponse.BodyHandlers.ofString()).body();
|
||||||
|
String mirogateUri = null;
|
||||||
|
|
||||||
|
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
|
||||||
|
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
|
||||||
|
Document doc = dBuilder.parse(new InputSource(new StringReader(description)));
|
||||||
|
|
||||||
|
doc.getDocumentElement().normalize();
|
||||||
|
|
||||||
|
NodeList results = doc.getElementsByTagName("uri");
|
||||||
|
for (int temp = 0; temp < results.getLength(); temp += 1) {
|
||||||
|
Node nNode = results.item(temp);
|
||||||
|
if (nNode.getTextContent().contains("mirogate")) {
|
||||||
|
mirogateUri = nNode.getTextContent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (mirogateUri == null) {
|
||||||
|
// TODO implement logic if execution failed
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse a TD from a string
|
||||||
|
ThingDescription td = TDGraphReader.readFromURL(ThingDescription.TDFormat.RDF_TURTLE, mirogateUri);
|
||||||
|
|
||||||
|
Optional<PropertyAffordance> humidity = td.getPropertyByName("humidity");
|
||||||
|
|
||||||
|
if (humidity.isPresent()) {
|
||||||
|
Optional<Form> form = humidity.get().getFirstFormForOperationType(TD.readProperty);
|
||||||
|
|
||||||
|
// System.out.println(humidity.get().getDataSchema().getDatatype());
|
||||||
|
if (form.isPresent()) {
|
||||||
|
TDCoapRequest request = new TDCoapRequest(form.get(), TD.readProperty);
|
||||||
|
try {
|
||||||
|
TDCoapResponse response = request.execute();
|
||||||
|
Map<String, Object> payload = response.getPayloadAsObject((ObjectSchema) humidity.get().getDataSchema());
|
||||||
|
Object result = payload.get("https://interactions.ics.unisg.ch/mirogate#HumidityValue");
|
||||||
|
return result.toString();
|
||||||
|
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
} catch (ParserConfigurationException e1) {
|
||||||
|
// TODO Auto-generated catch block
|
||||||
|
e1.printStackTrace();
|
||||||
|
} catch (SAXException e1) {
|
||||||
|
// TODO Auto-generated catch block
|
||||||
|
e1.printStackTrace();
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,9 @@
|
|||||||
|
package ch.unisg.executorhumidity.executor.application.port.out;
|
||||||
|
|
||||||
|
import org.eclipse.californium.elements.exception.ConnectorException;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
public interface GetHumidityPort {
|
||||||
|
String getHumidity();
|
||||||
|
}
|
@@ -0,0 +1,27 @@
|
|||||||
|
package ch.unisg.executorhumidity.executor.application.service;
|
||||||
|
|
||||||
|
import ch.unisg.executorbase.executor.domain.ExecutorStatus;
|
||||||
|
import ch.unisg.executorhumidity.executor.domain.Executor;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
import ch.unisg.executorbase.executor.application.port.in.TaskAvailableCommand;
|
||||||
|
import ch.unisg.executorbase.executor.application.port.in.TaskAvailableUseCase;
|
||||||
|
import lombok.RequiredArgsConstructor;
|
||||||
|
|
||||||
|
import javax.transaction.Transactional;
|
||||||
|
|
||||||
|
@RequiredArgsConstructor
|
||||||
|
@Component
|
||||||
|
@Transactional
|
||||||
|
public class TaskAvailableService implements TaskAvailableUseCase {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void newTaskAvailable(TaskAvailableCommand command) {
|
||||||
|
|
||||||
|
Executor executor = Executor.getExecutor();
|
||||||
|
|
||||||
|
if(executor.getExecutorType() == command.getTaskType() &&
|
||||||
|
executor.getStatus() == ExecutorStatus.IDLING) {
|
||||||
|
executor.getAssignment();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,31 @@
|
|||||||
|
package ch.unisg.executorhumidity.executor.domain;
|
||||||
|
|
||||||
|
import ch.unisg.executorbase.executor.domain.ExecutorBase;
|
||||||
|
import ch.unisg.executorbase.executor.domain.ExecutorType;
|
||||||
|
import ch.unisg.executorhumidity.executor.adapter.out.GetHumidityAdapter;
|
||||||
|
import ch.unisg.executorhumidity.executor.application.port.out.GetHumidityPort;
|
||||||
|
import org.eclipse.californium.elements.exception.ConnectorException;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
public class Executor extends ExecutorBase {
|
||||||
|
|
||||||
|
private static final Executor executor = new Executor(ExecutorType.HUMIDITY_DEMO);
|
||||||
|
|
||||||
|
private final GetHumidityPort getHumidityPort = new GetHumidityAdapter();
|
||||||
|
|
||||||
|
private Executor(ExecutorType executorType) {super(executorType);}
|
||||||
|
|
||||||
|
public static Executor getExecutor() {return executor;}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected
|
||||||
|
String execution(String input) {
|
||||||
|
//TODO: Fill
|
||||||
|
|
||||||
|
String result = getHumidityPort.getHumidity();
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,16 @@
|
|||||||
|
server.port=8088
|
||||||
|
|
||||||
|
search.engine.uri=https://api.interactions.ics.unisg.ch/search/searchEngine
|
||||||
|
|
||||||
|
spring.profiles.active=chaos-monkey
|
||||||
|
chaos.monkey.enabled=false
|
||||||
|
management.endpoint.chaosmonkey.enabled=true
|
||||||
|
management.endpoint.chaosmonkeyjmx.enabled=true
|
||||||
|
# include specific endpoints
|
||||||
|
management.endpoints.web.exposure.include=health,info,chaosmonkey
|
||||||
|
chaos.monkey.watcher.controller=true
|
||||||
|
chaos.monkey.watcher.restController=true
|
||||||
|
chaos.monkey.watcher.service=true
|
||||||
|
chaos.monkey.watcher.repository=true
|
||||||
|
chaos.monkey.watcher.component=true
|
||||||
|
|
33
executor-humidity/.gitignore
vendored
Normal file
33
executor-humidity/.gitignore
vendored
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
HELP.md
|
||||||
|
target/
|
||||||
|
!.mvn/wrapper/maven-wrapper.jar
|
||||||
|
!**/src/main/**/target/
|
||||||
|
!**/src/test/**/target/
|
||||||
|
|
||||||
|
### STS ###
|
||||||
|
.apt_generated
|
||||||
|
.classpath
|
||||||
|
.factorypath
|
||||||
|
.project
|
||||||
|
.settings
|
||||||
|
.springBeans
|
||||||
|
.sts4-cache
|
||||||
|
|
||||||
|
### IntelliJ IDEA ###
|
||||||
|
.idea
|
||||||
|
*.iws
|
||||||
|
*.iml
|
||||||
|
*.ipr
|
||||||
|
|
||||||
|
### NetBeans ###
|
||||||
|
/nbproject/private/
|
||||||
|
/nbbuild/
|
||||||
|
/dist/
|
||||||
|
/nbdist/
|
||||||
|
/.nb-gradle/
|
||||||
|
build/
|
||||||
|
!**/src/main/**/build/
|
||||||
|
!**/src/test/**/build/
|
||||||
|
|
||||||
|
### VS Code ###
|
||||||
|
.vscode/
|
117
executor-humidity/.mvn/wrapper/MavenWrapperDownloader.java
vendored
Normal file
117
executor-humidity/.mvn/wrapper/MavenWrapperDownloader.java
vendored
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2007-present the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
import java.net.*;
|
||||||
|
import java.io.*;
|
||||||
|
import java.nio.channels.*;
|
||||||
|
import java.util.Properties;
|
||||||
|
|
||||||
|
public class MavenWrapperDownloader {
|
||||||
|
|
||||||
|
private static final String WRAPPER_VERSION = "0.5.6";
|
||||||
|
/**
|
||||||
|
* Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.
|
||||||
|
*/
|
||||||
|
private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/"
|
||||||
|
+ WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Path to the maven-wrapper.properties file, which might contain a downloadUrl property to
|
||||||
|
* use instead of the default one.
|
||||||
|
*/
|
||||||
|
private static final String MAVEN_WRAPPER_PROPERTIES_PATH =
|
||||||
|
".mvn/wrapper/maven-wrapper.properties";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Path where the maven-wrapper.jar will be saved to.
|
||||||
|
*/
|
||||||
|
private static final String MAVEN_WRAPPER_JAR_PATH =
|
||||||
|
".mvn/wrapper/maven-wrapper.jar";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Name of the property which should be used to override the default download url for the wrapper.
|
||||||
|
*/
|
||||||
|
private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl";
|
||||||
|
|
||||||
|
public static void main(String args[]) {
|
||||||
|
System.out.println("- Downloader started");
|
||||||
|
File baseDirectory = new File(args[0]);
|
||||||
|
System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath());
|
||||||
|
|
||||||
|
// If the maven-wrapper.properties exists, read it and check if it contains a custom
|
||||||
|
// wrapperUrl parameter.
|
||||||
|
File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);
|
||||||
|
String url = DEFAULT_DOWNLOAD_URL;
|
||||||
|
if(mavenWrapperPropertyFile.exists()) {
|
||||||
|
FileInputStream mavenWrapperPropertyFileInputStream = null;
|
||||||
|
try {
|
||||||
|
mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);
|
||||||
|
Properties mavenWrapperProperties = new Properties();
|
||||||
|
mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);
|
||||||
|
url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);
|
||||||
|
} catch (IOException e) {
|
||||||
|
System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'");
|
||||||
|
} finally {
|
||||||
|
try {
|
||||||
|
if(mavenWrapperPropertyFileInputStream != null) {
|
||||||
|
mavenWrapperPropertyFileInputStream.close();
|
||||||
|
}
|
||||||
|
} catch (IOException e) {
|
||||||
|
// Ignore ...
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
System.out.println("- Downloading from: " + url);
|
||||||
|
|
||||||
|
File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);
|
||||||
|
if(!outputFile.getParentFile().exists()) {
|
||||||
|
if(!outputFile.getParentFile().mkdirs()) {
|
||||||
|
System.out.println(
|
||||||
|
"- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
System.out.println("- Downloading to: " + outputFile.getAbsolutePath());
|
||||||
|
try {
|
||||||
|
downloadFileFromURL(url, outputFile);
|
||||||
|
System.out.println("Done");
|
||||||
|
System.exit(0);
|
||||||
|
} catch (Throwable e) {
|
||||||
|
System.out.println("- Error downloading");
|
||||||
|
e.printStackTrace();
|
||||||
|
System.exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void downloadFileFromURL(String urlString, File destination) throws Exception {
|
||||||
|
if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) {
|
||||||
|
String username = System.getenv("MVNW_USERNAME");
|
||||||
|
char[] password = System.getenv("MVNW_PASSWORD").toCharArray();
|
||||||
|
Authenticator.setDefault(new Authenticator() {
|
||||||
|
@Override
|
||||||
|
protected PasswordAuthentication getPasswordAuthentication() {
|
||||||
|
return new PasswordAuthentication(username, password);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
URL website = new URL(urlString);
|
||||||
|
ReadableByteChannel rbc;
|
||||||
|
rbc = Channels.newChannel(website.openStream());
|
||||||
|
FileOutputStream fos = new FileOutputStream(destination);
|
||||||
|
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
|
||||||
|
fos.close();
|
||||||
|
rbc.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
BIN
executor-humidity/.mvn/wrapper/maven-wrapper.jar
vendored
Normal file
BIN
executor-humidity/.mvn/wrapper/maven-wrapper.jar
vendored
Normal file
Binary file not shown.
2
executor-humidity/.mvn/wrapper/maven-wrapper.properties
vendored
Normal file
2
executor-humidity/.mvn/wrapper/maven-wrapper.properties
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.2/apache-maven-3.8.2-bin.zip
|
||||||
|
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar
|
3
executor-humidity/Californium3.properties
Normal file
3
executor-humidity/Californium3.properties
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Californium3 CoAP Properties file
|
||||||
|
# Wed Dec 15 22:23:03 CET 2021
|
||||||
|
#
|
310
executor-humidity/mvnw
vendored
Executable file
310
executor-humidity/mvnw
vendored
Executable file
@@ -0,0 +1,310 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
# Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
# or more contributor license agreements. See the NOTICE file
|
||||||
|
# distributed with this work for additional information
|
||||||
|
# regarding copyright ownership. The ASF licenses this file
|
||||||
|
# to you under the Apache License, Version 2.0 (the
|
||||||
|
# "License"); you may not use this file except in compliance
|
||||||
|
# with the License. You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing,
|
||||||
|
# software distributed under the License is distributed on an
|
||||||
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
# KIND, either express or implied. See the License for the
|
||||||
|
# specific language governing permissions and limitations
|
||||||
|
# under the License.
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
# Maven Start Up Batch script
|
||||||
|
#
|
||||||
|
# Required ENV vars:
|
||||||
|
# ------------------
|
||||||
|
# JAVA_HOME - location of a JDK home dir
|
||||||
|
#
|
||||||
|
# Optional ENV vars
|
||||||
|
# -----------------
|
||||||
|
# M2_HOME - location of maven2's installed home dir
|
||||||
|
# MAVEN_OPTS - parameters passed to the Java VM when running Maven
|
||||||
|
# e.g. to debug Maven itself, use
|
||||||
|
# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
|
||||||
|
# MAVEN_SKIP_RC - flag to disable loading of mavenrc files
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
if [ -z "$MAVEN_SKIP_RC" ] ; then
|
||||||
|
|
||||||
|
if [ -f /etc/mavenrc ] ; then
|
||||||
|
. /etc/mavenrc
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f "$HOME/.mavenrc" ] ; then
|
||||||
|
. "$HOME/.mavenrc"
|
||||||
|
fi
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
# OS specific support. $var _must_ be set to either true or false.
|
||||||
|
cygwin=false;
|
||||||
|
darwin=false;
|
||||||
|
mingw=false
|
||||||
|
case "`uname`" in
|
||||||
|
CYGWIN*) cygwin=true ;;
|
||||||
|
MINGW*) mingw=true;;
|
||||||
|
Darwin*) darwin=true
|
||||||
|
# Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
|
||||||
|
# See https://developer.apple.com/library/mac/qa/qa1170/_index.html
|
||||||
|
if [ -z "$JAVA_HOME" ]; then
|
||||||
|
if [ -x "/usr/libexec/java_home" ]; then
|
||||||
|
export JAVA_HOME="`/usr/libexec/java_home`"
|
||||||
|
else
|
||||||
|
export JAVA_HOME="/Library/Java/Home"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -z "$JAVA_HOME" ] ; then
|
||||||
|
if [ -r /etc/gentoo-release ] ; then
|
||||||
|
JAVA_HOME=`java-config --jre-home`
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$M2_HOME" ] ; then
|
||||||
|
## resolve links - $0 may be a link to maven's home
|
||||||
|
PRG="$0"
|
||||||
|
|
||||||
|
# need this for relative symlinks
|
||||||
|
while [ -h "$PRG" ] ; do
|
||||||
|
ls=`ls -ld "$PRG"`
|
||||||
|
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||||
|
if expr "$link" : '/.*' > /dev/null; then
|
||||||
|
PRG="$link"
|
||||||
|
else
|
||||||
|
PRG="`dirname "$PRG"`/$link"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
saveddir=`pwd`
|
||||||
|
|
||||||
|
M2_HOME=`dirname "$PRG"`/..
|
||||||
|
|
||||||
|
# make it fully qualified
|
||||||
|
M2_HOME=`cd "$M2_HOME" && pwd`
|
||||||
|
|
||||||
|
cd "$saveddir"
|
||||||
|
# echo Using m2 at $M2_HOME
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Cygwin, ensure paths are in UNIX format before anything is touched
|
||||||
|
if $cygwin ; then
|
||||||
|
[ -n "$M2_HOME" ] &&
|
||||||
|
M2_HOME=`cygpath --unix "$M2_HOME"`
|
||||||
|
[ -n "$JAVA_HOME" ] &&
|
||||||
|
JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
|
||||||
|
[ -n "$CLASSPATH" ] &&
|
||||||
|
CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Mingw, ensure paths are in UNIX format before anything is touched
|
||||||
|
if $mingw ; then
|
||||||
|
[ -n "$M2_HOME" ] &&
|
||||||
|
M2_HOME="`(cd "$M2_HOME"; pwd)`"
|
||||||
|
[ -n "$JAVA_HOME" ] &&
|
||||||
|
JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$JAVA_HOME" ]; then
|
||||||
|
javaExecutable="`which javac`"
|
||||||
|
if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then
|
||||||
|
# readlink(1) is not available as standard on Solaris 10.
|
||||||
|
readLink=`which readlink`
|
||||||
|
if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then
|
||||||
|
if $darwin ; then
|
||||||
|
javaHome="`dirname \"$javaExecutable\"`"
|
||||||
|
javaExecutable="`cd \"$javaHome\" && pwd -P`/javac"
|
||||||
|
else
|
||||||
|
javaExecutable="`readlink -f \"$javaExecutable\"`"
|
||||||
|
fi
|
||||||
|
javaHome="`dirname \"$javaExecutable\"`"
|
||||||
|
javaHome=`expr "$javaHome" : '\(.*\)/bin'`
|
||||||
|
JAVA_HOME="$javaHome"
|
||||||
|
export JAVA_HOME
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$JAVACMD" ] ; then
|
||||||
|
if [ -n "$JAVA_HOME" ] ; then
|
||||||
|
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||||
|
# IBM's JDK on AIX uses strange locations for the executables
|
||||||
|
JAVACMD="$JAVA_HOME/jre/sh/java"
|
||||||
|
else
|
||||||
|
JAVACMD="$JAVA_HOME/bin/java"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
JAVACMD="`which java`"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -x "$JAVACMD" ] ; then
|
||||||
|
echo "Error: JAVA_HOME is not defined correctly." >&2
|
||||||
|
echo " We cannot execute $JAVACMD" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$JAVA_HOME" ] ; then
|
||||||
|
echo "Warning: JAVA_HOME environment variable is not set."
|
||||||
|
fi
|
||||||
|
|
||||||
|
CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
|
||||||
|
|
||||||
|
# traverses directory structure from process work directory to filesystem root
|
||||||
|
# first directory with .mvn subdirectory is considered project base directory
|
||||||
|
find_maven_basedir() {
|
||||||
|
|
||||||
|
if [ -z "$1" ]
|
||||||
|
then
|
||||||
|
echo "Path not specified to find_maven_basedir"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
basedir="$1"
|
||||||
|
wdir="$1"
|
||||||
|
while [ "$wdir" != '/' ] ; do
|
||||||
|
if [ -d "$wdir"/.mvn ] ; then
|
||||||
|
basedir=$wdir
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
# workaround for JBEAP-8937 (on Solaris 10/Sparc)
|
||||||
|
if [ -d "${wdir}" ]; then
|
||||||
|
wdir=`cd "$wdir/.."; pwd`
|
||||||
|
fi
|
||||||
|
# end of workaround
|
||||||
|
done
|
||||||
|
echo "${basedir}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# concatenates all lines of a file
|
||||||
|
concat_lines() {
|
||||||
|
if [ -f "$1" ]; then
|
||||||
|
echo "$(tr -s '\n' ' ' < "$1")"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
BASE_DIR=`find_maven_basedir "$(pwd)"`
|
||||||
|
if [ -z "$BASE_DIR" ]; then
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
|
||||||
|
# This allows using the maven wrapper in projects that prohibit checking in binary data.
|
||||||
|
##########################################################################################
|
||||||
|
if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Found .mvn/wrapper/maven-wrapper.jar"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..."
|
||||||
|
fi
|
||||||
|
if [ -n "$MVNW_REPOURL" ]; then
|
||||||
|
jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
|
||||||
|
else
|
||||||
|
jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
|
||||||
|
fi
|
||||||
|
while IFS="=" read key value; do
|
||||||
|
case "$key" in (wrapperUrl) jarUrl="$value"; break ;;
|
||||||
|
esac
|
||||||
|
done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties"
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Downloading from: $jarUrl"
|
||||||
|
fi
|
||||||
|
wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar"
|
||||||
|
if $cygwin; then
|
||||||
|
wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"`
|
||||||
|
fi
|
||||||
|
|
||||||
|
if command -v wget > /dev/null; then
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Found wget ... using wget"
|
||||||
|
fi
|
||||||
|
if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
|
||||||
|
wget "$jarUrl" -O "$wrapperJarPath"
|
||||||
|
else
|
||||||
|
wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath"
|
||||||
|
fi
|
||||||
|
elif command -v curl > /dev/null; then
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Found curl ... using curl"
|
||||||
|
fi
|
||||||
|
if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
|
||||||
|
curl -o "$wrapperJarPath" "$jarUrl" -f
|
||||||
|
else
|
||||||
|
curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f
|
||||||
|
fi
|
||||||
|
|
||||||
|
else
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Falling back to using Java to download"
|
||||||
|
fi
|
||||||
|
javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java"
|
||||||
|
# For Cygwin, switch paths to Windows format before running javac
|
||||||
|
if $cygwin; then
|
||||||
|
javaClass=`cygpath --path --windows "$javaClass"`
|
||||||
|
fi
|
||||||
|
if [ -e "$javaClass" ]; then
|
||||||
|
if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo " - Compiling MavenWrapperDownloader.java ..."
|
||||||
|
fi
|
||||||
|
# Compiling the Java class
|
||||||
|
("$JAVA_HOME/bin/javac" "$javaClass")
|
||||||
|
fi
|
||||||
|
if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
|
||||||
|
# Running the downloader
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo " - Running MavenWrapperDownloader.java ..."
|
||||||
|
fi
|
||||||
|
("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR")
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
##########################################################################################
|
||||||
|
# End of extension
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo $MAVEN_PROJECTBASEDIR
|
||||||
|
fi
|
||||||
|
MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS"
|
||||||
|
|
||||||
|
# For Cygwin, switch paths to Windows format before running java
|
||||||
|
if $cygwin; then
|
||||||
|
[ -n "$M2_HOME" ] &&
|
||||||
|
M2_HOME=`cygpath --path --windows "$M2_HOME"`
|
||||||
|
[ -n "$JAVA_HOME" ] &&
|
||||||
|
JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
|
||||||
|
[ -n "$CLASSPATH" ] &&
|
||||||
|
CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
|
||||||
|
[ -n "$MAVEN_PROJECTBASEDIR" ] &&
|
||||||
|
MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Provide a "standardized" way to retrieve the CLI args that will
|
||||||
|
# work with both Windows and non-Windows executions.
|
||||||
|
MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@"
|
||||||
|
export MAVEN_CMD_LINE_ARGS
|
||||||
|
|
||||||
|
WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
|
||||||
|
|
||||||
|
exec "$JAVACMD" \
|
||||||
|
$MAVEN_OPTS \
|
||||||
|
-classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \
|
||||||
|
"-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
|
||||||
|
${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@"
|
182
executor-humidity/mvnw.cmd
vendored
Normal file
182
executor-humidity/mvnw.cmd
vendored
Normal file
@@ -0,0 +1,182 @@
|
|||||||
|
@REM ----------------------------------------------------------------------------
|
||||||
|
@REM Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
@REM or more contributor license agreements. See the NOTICE file
|
||||||
|
@REM distributed with this work for additional information
|
||||||
|
@REM regarding copyright ownership. The ASF licenses this file
|
||||||
|
@REM to you under the Apache License, Version 2.0 (the
|
||||||
|
@REM "License"); you may not use this file except in compliance
|
||||||
|
@REM with the License. You may obtain a copy of the License at
|
||||||
|
@REM
|
||||||
|
@REM https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
@REM
|
||||||
|
@REM Unless required by applicable law or agreed to in writing,
|
||||||
|
@REM software distributed under the License is distributed on an
|
||||||
|
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
@REM KIND, either express or implied. See the License for the
|
||||||
|
@REM specific language governing permissions and limitations
|
||||||
|
@REM under the License.
|
||||||
|
@REM ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@REM ----------------------------------------------------------------------------
|
||||||
|
@REM Maven Start Up Batch script
|
||||||
|
@REM
|
||||||
|
@REM Required ENV vars:
|
||||||
|
@REM JAVA_HOME - location of a JDK home dir
|
||||||
|
@REM
|
||||||
|
@REM Optional ENV vars
|
||||||
|
@REM M2_HOME - location of maven2's installed home dir
|
||||||
|
@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
|
||||||
|
@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending
|
||||||
|
@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
|
||||||
|
@REM e.g. to debug Maven itself, use
|
||||||
|
@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
|
||||||
|
@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
|
||||||
|
@REM ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
|
||||||
|
@echo off
|
||||||
|
@REM set title of command window
|
||||||
|
title %0
|
||||||
|
@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on'
|
||||||
|
@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
|
||||||
|
|
||||||
|
@REM set %HOME% to equivalent of $HOME
|
||||||
|
if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
|
||||||
|
|
||||||
|
@REM Execute a user defined script before this one
|
||||||
|
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
|
||||||
|
@REM check for pre script, once with legacy .bat ending and once with .cmd ending
|
||||||
|
if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
|
||||||
|
if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
|
||||||
|
:skipRcPre
|
||||||
|
|
||||||
|
@setlocal
|
||||||
|
|
||||||
|
set ERROR_CODE=0
|
||||||
|
|
||||||
|
@REM To isolate internal variables from possible post scripts, we use another setlocal
|
||||||
|
@setlocal
|
||||||
|
|
||||||
|
@REM ==== START VALIDATION ====
|
||||||
|
if not "%JAVA_HOME%" == "" goto OkJHome
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo Error: JAVA_HOME not found in your environment. >&2
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the >&2
|
||||||
|
echo location of your Java installation. >&2
|
||||||
|
echo.
|
||||||
|
goto error
|
||||||
|
|
||||||
|
:OkJHome
|
||||||
|
if exist "%JAVA_HOME%\bin\java.exe" goto init
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo Error: JAVA_HOME is set to an invalid directory. >&2
|
||||||
|
echo JAVA_HOME = "%JAVA_HOME%" >&2
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the >&2
|
||||||
|
echo location of your Java installation. >&2
|
||||||
|
echo.
|
||||||
|
goto error
|
||||||
|
|
||||||
|
@REM ==== END VALIDATION ====
|
||||||
|
|
||||||
|
:init
|
||||||
|
|
||||||
|
@REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
|
||||||
|
@REM Fallback to current working directory if not found.
|
||||||
|
|
||||||
|
set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
|
||||||
|
IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
|
||||||
|
|
||||||
|
set EXEC_DIR=%CD%
|
||||||
|
set WDIR=%EXEC_DIR%
|
||||||
|
:findBaseDir
|
||||||
|
IF EXIST "%WDIR%"\.mvn goto baseDirFound
|
||||||
|
cd ..
|
||||||
|
IF "%WDIR%"=="%CD%" goto baseDirNotFound
|
||||||
|
set WDIR=%CD%
|
||||||
|
goto findBaseDir
|
||||||
|
|
||||||
|
:baseDirFound
|
||||||
|
set MAVEN_PROJECTBASEDIR=%WDIR%
|
||||||
|
cd "%EXEC_DIR%"
|
||||||
|
goto endDetectBaseDir
|
||||||
|
|
||||||
|
:baseDirNotFound
|
||||||
|
set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
|
||||||
|
cd "%EXEC_DIR%"
|
||||||
|
|
||||||
|
:endDetectBaseDir
|
||||||
|
|
||||||
|
IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
|
||||||
|
|
||||||
|
@setlocal EnableExtensions EnableDelayedExpansion
|
||||||
|
for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
|
||||||
|
@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
|
||||||
|
|
||||||
|
:endReadAdditionalConfig
|
||||||
|
|
||||||
|
SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
|
||||||
|
set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
|
||||||
|
set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
|
||||||
|
|
||||||
|
set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
|
||||||
|
|
||||||
|
FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO (
|
||||||
|
IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B
|
||||||
|
)
|
||||||
|
|
||||||
|
@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
|
||||||
|
@REM This allows using the maven wrapper in projects that prohibit checking in binary data.
|
||||||
|
if exist %WRAPPER_JAR% (
|
||||||
|
if "%MVNW_VERBOSE%" == "true" (
|
||||||
|
echo Found %WRAPPER_JAR%
|
||||||
|
)
|
||||||
|
) else (
|
||||||
|
if not "%MVNW_REPOURL%" == "" (
|
||||||
|
SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
|
||||||
|
)
|
||||||
|
if "%MVNW_VERBOSE%" == "true" (
|
||||||
|
echo Couldn't find %WRAPPER_JAR%, downloading it ...
|
||||||
|
echo Downloading from: %DOWNLOAD_URL%
|
||||||
|
)
|
||||||
|
|
||||||
|
powershell -Command "&{"^
|
||||||
|
"$webclient = new-object System.Net.WebClient;"^
|
||||||
|
"if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^
|
||||||
|
"$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^
|
||||||
|
"}"^
|
||||||
|
"[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^
|
||||||
|
"}"
|
||||||
|
if "%MVNW_VERBOSE%" == "true" (
|
||||||
|
echo Finished downloading %WRAPPER_JAR%
|
||||||
|
)
|
||||||
|
)
|
||||||
|
@REM End of extension
|
||||||
|
|
||||||
|
@REM Provide a "standardized" way to retrieve the CLI args that will
|
||||||
|
@REM work with both Windows and non-Windows executions.
|
||||||
|
set MAVEN_CMD_LINE_ARGS=%*
|
||||||
|
|
||||||
|
%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
|
||||||
|
if ERRORLEVEL 1 goto error
|
||||||
|
goto end
|
||||||
|
|
||||||
|
:error
|
||||||
|
set ERROR_CODE=1
|
||||||
|
|
||||||
|
:end
|
||||||
|
@endlocal & set ERROR_CODE=%ERROR_CODE%
|
||||||
|
|
||||||
|
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost
|
||||||
|
@REM check for post script, once with legacy .bat ending and once with .cmd ending
|
||||||
|
if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
|
||||||
|
if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd"
|
||||||
|
:skipRcPost
|
||||||
|
|
||||||
|
@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
|
||||||
|
if "%MAVEN_BATCH_PAUSE%" == "on" pause
|
||||||
|
|
||||||
|
if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
|
||||||
|
|
||||||
|
exit /B %ERROR_CODE%
|
81
executor-humidity/pom.xml
Normal file
81
executor-humidity/pom.xml
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<parent>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||||||
|
<version>2.5.5</version>
|
||||||
|
<relativePath/> <!-- lookup parent from repository -->
|
||||||
|
</parent>
|
||||||
|
<groupId>ch.unisg</groupId>
|
||||||
|
<artifactId>executor-humidity</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
<name>executor-humidity</name>
|
||||||
|
<description>Demo project for Spring Boot</description>
|
||||||
|
<properties>
|
||||||
|
<java.version>11</java.version>
|
||||||
|
</properties>
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>jitpack.io</id>
|
||||||
|
<url>https://jitpack.io</url>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
||||||
|
<version>2.5.5</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-web</artifactId>
|
||||||
|
<version>5.3.10</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-devtools</artifactId>
|
||||||
|
<scope>runtime</scope>
|
||||||
|
<optional>true</optional>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>ch.unisg</groupId>
|
||||||
|
<artifactId>executor-base</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.californium</groupId>
|
||||||
|
<artifactId>californium-core</artifactId>
|
||||||
|
<version>3.0.0</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.github.Interactions-HSG</groupId>
|
||||||
|
<artifactId>wot-td-java</artifactId>
|
||||||
|
<version>0.1.1</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<excludes>
|
||||||
|
<exclude>
|
||||||
|
<groupId>org.projectlombok</groupId>
|
||||||
|
<artifactId>lombok</artifactId>
|
||||||
|
</exclude>
|
||||||
|
</excludes>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
</project>
|
@@ -0,0 +1,16 @@
|
|||||||
|
package ch.unisg.executorhumidity;
|
||||||
|
|
||||||
|
import org.springframework.boot.SpringApplication;
|
||||||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
|
||||||
|
import ch.unisg.executorhumidity.executor.domain.Executor;
|
||||||
|
|
||||||
|
@SpringBootApplication
|
||||||
|
public class ExecutorhumidityApplication {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
SpringApplication.run(ExecutorhumidityApplication.class, args);
|
||||||
|
Executor.getExecutor();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,38 @@
|
|||||||
|
package ch.unisg.executorhumidity.executor.adapter.in.web;
|
||||||
|
|
||||||
|
import org.springframework.http.HttpHeaders;
|
||||||
|
import org.springframework.http.HttpStatus;
|
||||||
|
import org.springframework.http.ResponseEntity;
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.PathVariable;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
import ch.unisg.executorbase.executor.application.port.in.TaskAvailableCommand;
|
||||||
|
import ch.unisg.executorbase.executor.application.port.in.TaskAvailableUseCase;
|
||||||
|
import ch.unisg.executorbase.executor.domain.ExecutorType;
|
||||||
|
|
||||||
|
import java.util.concurrent.CompletableFuture;
|
||||||
|
|
||||||
|
@RestController
|
||||||
|
public class TaskAvailableController {
|
||||||
|
private final TaskAvailableUseCase taskAvailableUseCase;
|
||||||
|
|
||||||
|
public TaskAvailableController(TaskAvailableUseCase taskAvailableUseCase) {
|
||||||
|
this.taskAvailableUseCase = taskAvailableUseCase;
|
||||||
|
}
|
||||||
|
|
||||||
|
@GetMapping(path="/newtask/{taskType}")
|
||||||
|
public ResponseEntity<String> retrieveTaskfromTaskList(@PathVariable("taskType") String taskType) {
|
||||||
|
|
||||||
|
if (ExecutorType.contains(taskType.toUpperCase())) {
|
||||||
|
TaskAvailableCommand command = new TaskAvailableCommand(
|
||||||
|
ExecutorType.valueOf(taskType.toUpperCase()));
|
||||||
|
CompletableFuture.runAsync(() -> taskAvailableUseCase.newTaskAvailable(command));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add the content type as a response header
|
||||||
|
HttpHeaders responseHeaders = new HttpHeaders();
|
||||||
|
|
||||||
|
return new ResponseEntity<>("OK", responseHeaders, HttpStatus.OK);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,114 @@
|
|||||||
|
package ch.unisg.executorhumidity.executor.adapter.out;
|
||||||
|
|
||||||
|
import ch.unisg.executorhumidity.executor.application.port.out.GetHumidityPort;
|
||||||
|
import ch.unisg.ics.interactions.wot.td.ThingDescription;
|
||||||
|
import ch.unisg.ics.interactions.wot.td.affordances.Form;
|
||||||
|
import ch.unisg.ics.interactions.wot.td.affordances.PropertyAffordance;
|
||||||
|
import ch.unisg.ics.interactions.wot.td.clients.TDCoapRequest;
|
||||||
|
import ch.unisg.ics.interactions.wot.td.clients.TDCoapResponse;
|
||||||
|
import ch.unisg.ics.interactions.wot.td.io.TDGraphReader;
|
||||||
|
import ch.unisg.ics.interactions.wot.td.schemas.ObjectSchema;
|
||||||
|
import ch.unisg.ics.interactions.wot.td.vocabularies.TD;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
|
import org.springframework.context.annotation.Primary;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
import org.w3c.dom.Document;
|
||||||
|
import org.w3c.dom.Node;
|
||||||
|
import org.w3c.dom.NodeList;
|
||||||
|
import org.xml.sax.InputSource;
|
||||||
|
import org.xml.sax.SAXException;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.StringReader;
|
||||||
|
import java.net.URI;
|
||||||
|
import java.net.http.HttpClient;
|
||||||
|
import java.net.http.HttpRequest;
|
||||||
|
import java.net.http.HttpResponse;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
|
import javax.xml.parsers.DocumentBuilder;
|
||||||
|
import javax.xml.parsers.DocumentBuilderFactory;
|
||||||
|
import javax.xml.parsers.ParserConfigurationException;
|
||||||
|
|
||||||
|
|
||||||
|
@Component
|
||||||
|
@Primary
|
||||||
|
public class GetHumidityAdapter implements GetHumidityPort {
|
||||||
|
|
||||||
|
String endpoint = System.getenv("SEARCH_ENGINE_URI") == null ?
|
||||||
|
"https://api.interactions.ics.unisg.ch/search/searchEngine" : System.getenv("SEARCH_ENGINE_URI");
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getHumidity() {
|
||||||
|
|
||||||
|
String input = "@prefix dct: <http://purl.org/dc/terms/> . select ?title where { ?title dct:title 'Mirogate' }";
|
||||||
|
|
||||||
|
var httpRequest = HttpRequest.newBuilder()
|
||||||
|
.uri(URI.create(endpoint))
|
||||||
|
.header("Content-Type", "application/sparql-query")
|
||||||
|
.POST(HttpRequest.BodyPublishers.ofString(input))
|
||||||
|
.build();
|
||||||
|
|
||||||
|
var client = HttpClient.newHttpClient();
|
||||||
|
|
||||||
|
try {
|
||||||
|
String description = client.send(httpRequest, HttpResponse.BodyHandlers.ofString()).body();
|
||||||
|
String mirogateUri = null;
|
||||||
|
|
||||||
|
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
|
||||||
|
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
|
||||||
|
Document doc = dBuilder.parse(new InputSource(new StringReader(description)));
|
||||||
|
|
||||||
|
doc.getDocumentElement().normalize();
|
||||||
|
|
||||||
|
NodeList results = doc.getElementsByTagName("uri");
|
||||||
|
for (int temp = 0; temp < results.getLength(); temp += 1) {
|
||||||
|
Node nNode = results.item(temp);
|
||||||
|
if (nNode.getTextContent().contains("mirogate")) {
|
||||||
|
mirogateUri = nNode.getTextContent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (mirogateUri == null) {
|
||||||
|
// TODO implement logic if execution failed
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse a TD from a string
|
||||||
|
ThingDescription td = TDGraphReader.readFromURL(ThingDescription.TDFormat.RDF_TURTLE, mirogateUri);
|
||||||
|
|
||||||
|
Optional<PropertyAffordance> humidity = td.getPropertyByName("humidity");
|
||||||
|
|
||||||
|
if (humidity.isPresent()) {
|
||||||
|
Optional<Form> form = humidity.get().getFirstFormForOperationType(TD.readProperty);
|
||||||
|
|
||||||
|
// System.out.println(humidity.get().getDataSchema().getDatatype());
|
||||||
|
if (form.isPresent()) {
|
||||||
|
TDCoapRequest request = new TDCoapRequest(form.get(), TD.readProperty);
|
||||||
|
try {
|
||||||
|
TDCoapResponse response = request.execute();
|
||||||
|
Map<String, Object> payload = response.getPayloadAsObject((ObjectSchema) humidity.get().getDataSchema());
|
||||||
|
Object result = payload.get("https://interactions.ics.unisg.ch/mirogate#HumidityValue");
|
||||||
|
return result.toString();
|
||||||
|
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
} catch (ParserConfigurationException e1) {
|
||||||
|
// TODO Auto-generated catch block
|
||||||
|
e1.printStackTrace();
|
||||||
|
} catch (SAXException e1) {
|
||||||
|
// TODO Auto-generated catch block
|
||||||
|
e1.printStackTrace();
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,9 @@
|
|||||||
|
package ch.unisg.executorhumidity.executor.application.port.out;
|
||||||
|
|
||||||
|
import org.eclipse.californium.elements.exception.ConnectorException;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
public interface GetHumidityPort {
|
||||||
|
String getHumidity();
|
||||||
|
}
|
@@ -0,0 +1,27 @@
|
|||||||
|
package ch.unisg.executorhumidity.executor.application.service;
|
||||||
|
|
||||||
|
import ch.unisg.executorbase.executor.domain.ExecutorStatus;
|
||||||
|
import ch.unisg.executorhumidity.executor.domain.Executor;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
import ch.unisg.executorbase.executor.application.port.in.TaskAvailableCommand;
|
||||||
|
import ch.unisg.executorbase.executor.application.port.in.TaskAvailableUseCase;
|
||||||
|
import lombok.RequiredArgsConstructor;
|
||||||
|
|
||||||
|
import javax.transaction.Transactional;
|
||||||
|
|
||||||
|
@RequiredArgsConstructor
|
||||||
|
@Component
|
||||||
|
@Transactional
|
||||||
|
public class TaskAvailableService implements TaskAvailableUseCase {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void newTaskAvailable(TaskAvailableCommand command) {
|
||||||
|
|
||||||
|
Executor executor = Executor.getExecutor();
|
||||||
|
|
||||||
|
if(executor.getExecutorType() == command.getTaskType() &&
|
||||||
|
executor.getStatus() == ExecutorStatus.IDLING) {
|
||||||
|
executor.getAssignment();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,31 @@
|
|||||||
|
package ch.unisg.executorhumidity.executor.domain;
|
||||||
|
|
||||||
|
import ch.unisg.executorbase.executor.domain.ExecutorBase;
|
||||||
|
import ch.unisg.executorbase.executor.domain.ExecutorType;
|
||||||
|
import ch.unisg.executorhumidity.executor.adapter.out.GetHumidityAdapter;
|
||||||
|
import ch.unisg.executorhumidity.executor.application.port.out.GetHumidityPort;
|
||||||
|
import org.eclipse.californium.elements.exception.ConnectorException;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
public class Executor extends ExecutorBase {
|
||||||
|
|
||||||
|
private static final Executor executor = new Executor(ExecutorType.HUMIDITY);
|
||||||
|
|
||||||
|
private final GetHumidityPort getHumidityPort = new GetHumidityAdapter();
|
||||||
|
|
||||||
|
private Executor(ExecutorType executorType) {super(executorType);}
|
||||||
|
|
||||||
|
public static Executor getExecutor() {return executor;}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected
|
||||||
|
String execution(String input) {
|
||||||
|
//TODO: Fill
|
||||||
|
|
||||||
|
String result = getHumidityPort.getHumidity();
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
16
executor-humidity/src/main/resources/application.properties
Normal file
16
executor-humidity/src/main/resources/application.properties
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
server.port=8087
|
||||||
|
|
||||||
|
search.engine.uri=https://api.interactions.ics.unisg.ch/search/searchEngine
|
||||||
|
|
||||||
|
spring.profiles.active=chaos-monkey
|
||||||
|
chaos.monkey.enabled=false
|
||||||
|
management.endpoint.chaosmonkey.enabled=true
|
||||||
|
management.endpoint.chaosmonkeyjmx.enabled=true
|
||||||
|
# include specific endpoints
|
||||||
|
management.endpoints.web.exposure.include=health,info,chaosmonkey
|
||||||
|
chaos.monkey.watcher.controller=true
|
||||||
|
chaos.monkey.watcher.restController=true
|
||||||
|
chaos.monkey.watcher.service=true
|
||||||
|
chaos.monkey.watcher.repository=true
|
||||||
|
chaos.monkey.watcher.component=true
|
||||||
|
|
@@ -2,7 +2,9 @@ FROM openjdk:11 AS development
|
|||||||
|
|
||||||
WORKDIR /opt/app
|
WORKDIR /opt/app
|
||||||
|
|
||||||
# ENV SPRING_DATASOURCE_URL=jdbc:mysql://backend-db:3306/db
|
ENV ROSTER_URI=http://roster:8082
|
||||||
|
ENV SPRING_DATA_MONGODB_URI=mongodb://root:password@tapas-db:27017
|
||||||
|
ENV MQTT_BROKER_URI=tcp://hivemq:1883
|
||||||
|
|
||||||
COPY .mvn/ .mvn
|
COPY .mvn/ .mvn
|
||||||
COPY mvnw pom.xml mvnw.cmd ./
|
COPY mvnw pom.xml mvnw.cmd ./
|
||||||
@@ -10,9 +12,9 @@ COPY mvnw pom.xml mvnw.cmd ./
|
|||||||
RUN apt-get clean && apt-get update && apt-get install dos2unix
|
RUN apt-get clean && apt-get update && apt-get install dos2unix
|
||||||
RUN dos2unix mvnw
|
RUN dos2unix mvnw
|
||||||
|
|
||||||
RUN ./mvnw dependency:go-offline
|
|
||||||
|
|
||||||
COPY src /opt/app/src
|
COPY src /opt/app/src
|
||||||
COPY *target /opt/app/target
|
COPY *target /opt/app/target
|
||||||
|
|
||||||
|
RUN ./mvnw clean install
|
||||||
|
|
||||||
CMD ["./mvnw", "spring-boot:run", "-Dspring-boot.run.jvmArguments=\"-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005\"", "-Dspring.devtools.restart.enabled=true"]
|
CMD ["./mvnw", "spring-boot:run", "-Dspring-boot.run.jvmArguments=\"-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005\"", "-Dspring.devtools.restart.enabled=true"]
|
||||||
|
@@ -17,6 +17,7 @@
|
|||||||
<java.version>11</java.version>
|
<java.version>11</java.version>
|
||||||
<sonar.organization>scs-asse-fs21-group1</sonar.organization>
|
<sonar.organization>scs-asse-fs21-group1</sonar.organization>
|
||||||
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
|
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
|
||||||
|
<skipTests>true</skipTests>
|
||||||
</properties>
|
</properties>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
@@ -78,6 +79,12 @@
|
|||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.tngtech.archunit</groupId>
|
||||||
|
<artifactId>archunit-junit4</artifactId>
|
||||||
|
<version>0.22.0</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
@@ -1,13 +1,31 @@
|
|||||||
package ch.unisg.executorpool;
|
package ch.unisg.executorpool;
|
||||||
|
|
||||||
|
import javax.annotation.PostConstruct;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.SpringApplication;
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
import org.springframework.data.mongodb.repository.config.EnableMongoRepositories;
|
||||||
|
|
||||||
|
import ch.unisg.executorpool.adapter.out.persistence.mongodb.ExecutorRepository;
|
||||||
|
import ch.unisg.executorpool.application.port.out.LoadExecutorPort;
|
||||||
|
import ch.unisg.executorpool.domain.ExecutorPool;
|
||||||
|
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
|
@EnableMongoRepositories(basePackageClasses = ExecutorRepository.class)
|
||||||
public class ExecutorPoolApplication {
|
public class ExecutorPoolApplication {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private LoadExecutorPort loadExecutorPort;
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
SpringApplication.run(ExecutorPoolApplication.class, args);
|
SpringApplication.run(ExecutorPoolApplication.class, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@PostConstruct
|
||||||
|
public void initializeExecutorPool() {
|
||||||
|
// Is this allowed in main or does it need to be in a service?
|
||||||
|
ExecutorPool.getExecutorPool().initExecutorPool(loadExecutorPort.loadAllExecutors());
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -27,7 +27,7 @@ public class AddNewExecutorToExecutorPoolWebController {
|
|||||||
this.addNewExecutorToExecutorPoolUseCase = addNewExecutorToExecutorPoolUseCase;
|
this.addNewExecutorToExecutorPoolUseCase = addNewExecutorToExecutorPoolUseCase;
|
||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping(path = "/executor-pool/AddExecutor", consumes = {ExecutorJsonRepresentation.EXECUTOR_MEDIA_TYPE})
|
@PostMapping(path = "/executor-pool/executors", consumes = {ExecutorJsonRepresentation.EXECUTOR_MEDIA_TYPE})
|
||||||
public ResponseEntity<String> addNewExecutorToExecutorPool(@RequestBody ExecutorJsonRepresentation payload){
|
public ResponseEntity<String> addNewExecutorToExecutorPool(@RequestBody ExecutorJsonRepresentation payload){
|
||||||
try {
|
try {
|
||||||
AddNewExecutorToExecutorPoolCommand command = new AddNewExecutorToExecutorPoolCommand(
|
AddNewExecutorToExecutorPoolCommand command = new AddNewExecutorToExecutorPoolCommand(
|
||||||
|
@@ -19,7 +19,7 @@ public class GetAllExecutorsInExecutorPoolWebController {
|
|||||||
this.getAllExecutorsInExecutorPoolUseCase = getAllExecutorsInExecutorPoolUseCase;
|
this.getAllExecutorsInExecutorPoolUseCase = getAllExecutorsInExecutorPoolUseCase;
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping(path = "executor-pool/GetAllExecutorsinExecutorPool")
|
@GetMapping(path = "executor-pool/GetAllExecutorsInExecutorPool")
|
||||||
public ResponseEntity<String> getAllExecutorsInExecutorPool(){
|
public ResponseEntity<String> getAllExecutorsInExecutorPool(){
|
||||||
List<ExecutorClass> executorClassList = getAllExecutorsInExecutorPoolUseCase.getAllExecutorsInExecutorPool();
|
List<ExecutorClass> executorClassList = getAllExecutorsInExecutorPoolUseCase.getAllExecutorsInExecutorPool();
|
||||||
|
|
||||||
|
@@ -7,9 +7,7 @@ import ch.unisg.executorpool.domain.ExecutorClass;
|
|||||||
import org.springframework.http.HttpHeaders;
|
import org.springframework.http.HttpHeaders;
|
||||||
import org.springframework.http.HttpStatus;
|
import org.springframework.http.HttpStatus;
|
||||||
import org.springframework.http.ResponseEntity;
|
import org.springframework.http.ResponseEntity;
|
||||||
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import org.springframework.web.bind.annotation.RequestBody;
|
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
|
||||||
import org.springframework.web.server.ResponseStatusException;
|
import org.springframework.web.server.ResponseStatusException;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
@@ -23,10 +21,10 @@ public class RemoveExecutorFromExecutorPoolWebController {
|
|||||||
this.removeExecutorFromExecutorPoolUseCase = removeExecutorFromExecutorPoolUseCase;
|
this.removeExecutorFromExecutorPoolUseCase = removeExecutorFromExecutorPoolUseCase;
|
||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping(path = "/executor-pool/RemoveExecutor", consumes = {ExecutorJsonRepresentation.EXECUTOR_MEDIA_TYPE})
|
@DeleteMapping(path = "/executor-pool/executors/{executorUri}")
|
||||||
public ResponseEntity<String> removeExecutorFromExecutorPool(@RequestBody ExecutorJsonRepresentation executorJsonRepresentation){
|
public ResponseEntity<String> removeExecutorFromExecutorPool(@PathVariable("executorUri") String executorUri){
|
||||||
RemoveExecutorFromExecutorPoolCommand command = new RemoveExecutorFromExecutorPoolCommand(
|
RemoveExecutorFromExecutorPoolCommand command = new RemoveExecutorFromExecutorPoolCommand(
|
||||||
new ExecutorClass.ExecutorUri(URI.create(executorJsonRepresentation.getExecutorUri()))
|
new ExecutorClass.ExecutorUri(URI.create(executorUri))
|
||||||
);
|
);
|
||||||
Optional<ExecutorClass> removedExecutor = removeExecutorFromExecutorPoolUseCase.removeExecutorFromExecutorPool(command);
|
Optional<ExecutorClass> removedExecutor = removeExecutorFromExecutorPoolUseCase.removeExecutorFromExecutorPool(command);
|
||||||
|
|
||||||
|
@@ -1,5 +1,8 @@
|
|||||||
package ch.unisg.executorpool.adapter.out.persistence.mongodb;
|
package ch.unisg.executorpool.adapter.out.persistence.mongodb;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
@@ -26,8 +29,7 @@ public class ExecutorPersistenceAdapter implements AddExecutorPort, RemoveExecut
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void removeExecutor(ExecutorClass executorClass) {
|
public void removeExecutor(ExecutorClass executorClass) {
|
||||||
MongoExecutorDocument mongoExecutorDocument = executorMapper.mapToMongoDocument(executorClass);
|
executorRepository.deleteByExecutorUri(executorClass.getExecutorUri().getValue().toString());
|
||||||
executorRepository.delete(mongoExecutorDocument);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -37,4 +39,13 @@ public class ExecutorPersistenceAdapter implements AddExecutorPort, RemoveExecut
|
|||||||
return executorClass;
|
return executorClass;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<ExecutorClass> loadAllExecutors() {
|
||||||
|
List<ExecutorClass> executorClasses = new ArrayList<>();
|
||||||
|
for (MongoExecutorDocument exe : executorRepository.findAll()) {
|
||||||
|
executorClasses.add(executorMapper.mapToDomainEntity(exe));
|
||||||
|
}
|
||||||
|
return executorClasses;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -12,4 +12,6 @@ public interface ExecutorRepository extends MongoRepository<MongoExecutorDocumen
|
|||||||
|
|
||||||
public List<MongoExecutorDocument> findByExecutorTaskType(String executorTaskType);
|
public List<MongoExecutorDocument> findByExecutorTaskType(String executorTaskType);
|
||||||
|
|
||||||
|
public void deleteByExecutorUri(String executorUri);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +1,11 @@
|
|||||||
package ch.unisg.executorpool.adapter.out.persistence.mongodb;
|
package ch.unisg.executorpool.adapter.out.persistence.mongodb;
|
||||||
|
|
||||||
|
import org.springframework.data.mongodb.core.mapping.Document;
|
||||||
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
|
@Document(collection = "executors")
|
||||||
public class MongoExecutorDocument {
|
public class MongoExecutorDocument {
|
||||||
|
|
||||||
public String executorUri;
|
public String executorUri;
|
||||||
|
@@ -1,9 +1,13 @@
|
|||||||
package ch.unisg.executorpool.application.port.out;
|
package ch.unisg.executorpool.application.port.out;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
import ch.unisg.executorpool.domain.ExecutorClass;
|
import ch.unisg.executorpool.domain.ExecutorClass;
|
||||||
|
|
||||||
public interface LoadExecutorPort {
|
public interface LoadExecutorPort {
|
||||||
|
|
||||||
ExecutorClass loadExecutor(ExecutorClass.ExecutorUri executorUri, ExecutorClass.ExecutorTaskType executorTaskType);
|
ExecutorClass loadExecutor(ExecutorClass.ExecutorUri executorUri, ExecutorClass.ExecutorTaskType executorTaskType);
|
||||||
|
|
||||||
|
List<ExecutorClass> loadAllExecutors();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -31,11 +31,10 @@ public class RemoveExecutorFromExecutorPoolService implements RemoveExecutorFrom
|
|||||||
|
|
||||||
if(removedExecutor.isPresent()){
|
if(removedExecutor.isPresent()){
|
||||||
var executorRemovedEvent = new ExecutorRemovedEvent(removedExecutor.get());
|
var executorRemovedEvent = new ExecutorRemovedEvent(removedExecutor.get());
|
||||||
|
removeExecutorFromRepositoryPort.removeExecutor(removedExecutor.get());
|
||||||
executorRemovedEventPort.publishExecutorRemovedEvent(executorRemovedEvent);
|
executorRemovedEventPort.publishExecutorRemovedEvent(executorRemovedEvent);
|
||||||
}
|
}
|
||||||
|
|
||||||
removeExecutorFromRepositoryPort.removeExecutor(removedExecutor);
|
|
||||||
|
|
||||||
return removedExecutor;
|
return removedExecutor;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -18,7 +18,7 @@ public class ExecutorClass {
|
|||||||
this.executorTaskType = executorTaskType;
|
this.executorTaskType = executorTaskType;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected static ExecutorClass createExecutorClass(ExecutorUri executorUri, ExecutorTaskType executorTaskType){
|
public static ExecutorClass createExecutorClass(ExecutorUri executorUri, ExecutorTaskType executorTaskType){
|
||||||
System.out.println("New Executor: " + executorUri.value.toString() + " " + executorTaskType.getValue());
|
System.out.println("New Executor: " + executorUri.value.toString() + " " + executorTaskType.getValue());
|
||||||
return new ExecutorClass(executorUri, executorTaskType);
|
return new ExecutorClass(executorUri, executorTaskType);
|
||||||
}
|
}
|
||||||
|
@@ -67,6 +67,12 @@ public class ExecutorPool {
|
|||||||
return Optional.empty();
|
return Optional.empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void initExecutorPool(List<ExecutorClass> executors){
|
||||||
|
for (ExecutorClass executor : executors) {
|
||||||
|
listOfExecutors.value.add(executor);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Value
|
@Value
|
||||||
public static class ListOfExecutors {
|
public static class ListOfExecutors {
|
||||||
private List<ExecutorClass> value;
|
private List<ExecutorClass> value;
|
||||||
|
@@ -1,3 +1,7 @@
|
|||||||
server.port=8083
|
server.port=8083
|
||||||
|
|
||||||
mqtt.broker.uri=tcp://localhost:1883
|
# mqtt.broker.uri=tcp://localhost:1883
|
||||||
|
mqtt.broker.uri=tcp://broker.hivemq.com
|
||||||
|
|
||||||
|
spring.data.mongodb.uri=mongodb://root:password@localhost:27017
|
||||||
|
spring.data.mongodb.database=tapas-executors
|
||||||
|
@@ -0,0 +1,65 @@
|
|||||||
|
package ch.unisg.executorpool;
|
||||||
|
|
||||||
|
import static org.mockito.Mockito.times;
|
||||||
|
|
||||||
|
import java.net.URI;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.mockito.Mockito;
|
||||||
|
import static org.mockito.BDDMockito.*;
|
||||||
|
import static org.assertj.core.api.Assertions.*;
|
||||||
|
|
||||||
|
import ch.unisg.executorpool.application.port.in.AddNewExecutorToExecutorPoolCommand;
|
||||||
|
import ch.unisg.executorpool.application.port.out.AddExecutorPort;
|
||||||
|
import ch.unisg.executorpool.application.port.out.ExecutorAddedEventPort;
|
||||||
|
import ch.unisg.executorpool.application.service.AddNewExecutorToExecutorPoolService;
|
||||||
|
import ch.unisg.executorpool.domain.ExecutorAddedEvent;
|
||||||
|
import ch.unisg.executorpool.domain.ExecutorClass;
|
||||||
|
import ch.unisg.executorpool.domain.ExecutorPool;
|
||||||
|
import ch.unisg.executorpool.domain.ExecutorClass.ExecutorUri;
|
||||||
|
|
||||||
|
public class AddNewExecutorToExecutorPoolServiceTest {
|
||||||
|
|
||||||
|
private final AddExecutorPort addExecutorPort = Mockito.mock(AddExecutorPort.class);
|
||||||
|
private final ExecutorAddedEventPort newExecutorAddedEventPort = Mockito.mock(ExecutorAddedEventPort.class);
|
||||||
|
private final AddNewExecutorToExecutorPoolService addNewExecutorToExecutorPoolService = new AddNewExecutorToExecutorPoolService(
|
||||||
|
newExecutorAddedEventPort, addExecutorPort);
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void addingSucceeds() {
|
||||||
|
|
||||||
|
ExecutorClass newExecutor = givenAnExecutorWithTypeAndUri(new ExecutorClass.ExecutorTaskType("test-type"),
|
||||||
|
new ExecutorClass.ExecutorUri(URI.create("example.org")));
|
||||||
|
|
||||||
|
ExecutorPool executorPool = givenAnEmptyExecutorPool(ExecutorPool.getExecutorPool());
|
||||||
|
|
||||||
|
AddNewExecutorToExecutorPoolCommand addNewExecutorToExecutorPoolCommand = new AddNewExecutorToExecutorPoolCommand(
|
||||||
|
newExecutor.getExecutorUri(), newExecutor.getExecutorTaskType());
|
||||||
|
|
||||||
|
ExecutorClass addedExecutor = addNewExecutorToExecutorPoolService.addNewExecutorToExecutorPool(addNewExecutorToExecutorPoolCommand);
|
||||||
|
|
||||||
|
assertThat(addedExecutor).isNotNull();
|
||||||
|
assertThat(executorPool.getListOfExecutors().getValue()).hasSize(1);
|
||||||
|
|
||||||
|
then(newExecutorAddedEventPort).should(times(1)).publishExecutorAddedEvent(any(ExecutorAddedEvent.class));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private ExecutorPool givenAnEmptyExecutorPool(ExecutorPool executorPool) {
|
||||||
|
executorPool.getListOfExecutors().getValue().clear();
|
||||||
|
return executorPool;
|
||||||
|
}
|
||||||
|
|
||||||
|
private ExecutorClass givenAnExecutorWithTypeAndUri(ExecutorClass.ExecutorTaskType executorTaskType,
|
||||||
|
ExecutorUri executorUri) {
|
||||||
|
|
||||||
|
ExecutorClass executor = Mockito.mock(ExecutorClass.class);
|
||||||
|
given(executor.getExecutorTaskType()).willReturn(executorTaskType);
|
||||||
|
given(executor.getExecutorUri()).willReturn(executorUri);
|
||||||
|
return executor;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,70 @@
|
|||||||
|
package ch.unisg.executorpool;
|
||||||
|
|
||||||
|
import org.json.JSONException;
|
||||||
|
import org.json.JSONObject;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
import org.springframework.boot.test.web.client.TestRestTemplate;
|
||||||
|
import org.springframework.http.HttpEntity;
|
||||||
|
import org.springframework.http.HttpHeaders;
|
||||||
|
import org.springframework.http.HttpMethod;
|
||||||
|
import org.springframework.http.HttpStatus;
|
||||||
|
import org.springframework.http.ResponseEntity;
|
||||||
|
import static org.assertj.core.api.BDDAssertions.*;
|
||||||
|
|
||||||
|
import ch.unisg.executorpool.adapter.common.formats.ExecutorJsonRepresentation;
|
||||||
|
import ch.unisg.executorpool.application.port.out.AddExecutorPort;
|
||||||
|
import ch.unisg.executorpool.domain.ExecutorPool;
|
||||||
|
import ch.unisg.executorpool.domain.ExecutorClass;
|
||||||
|
import ch.unisg.executorpool.domain.ExecutorClass.ExecutorTaskType;
|
||||||
|
import ch.unisg.executorpool.domain.ExecutorClass.ExecutorUri;
|
||||||
|
|
||||||
|
|
||||||
|
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
|
||||||
|
public class AddNewExecutorToExecutorPoolSystemTest {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private TestRestTemplate restTemplate;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private AddExecutorPort addExecutorPort;
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void AddNewExecutorToExecutorPool() throws JSONException {
|
||||||
|
|
||||||
|
ExecutorTaskType executorTaskType = new ExecutorTaskType("system-integration-test-type");
|
||||||
|
ExecutorUri executorUri = new ExecutorUri(java.net.URI.create("example.org"));
|
||||||
|
|
||||||
|
ResponseEntity response = whenAddNewExecutorToEmptyPool(executorTaskType, executorUri);
|
||||||
|
|
||||||
|
JSONObject responseJson = new JSONObject(response.getBody().toString());
|
||||||
|
String respExecutorUri = responseJson.getString("executorUri");
|
||||||
|
String respExecutorTaskType = responseJson.getString("executorTaskType");
|
||||||
|
|
||||||
|
then(response.getStatusCode()).isEqualTo(HttpStatus.CREATED);
|
||||||
|
then(respExecutorUri).isEqualTo(executorUri.getValue().toString());
|
||||||
|
then(respExecutorTaskType).isEqualTo(executorTaskType.getValue());
|
||||||
|
then(ExecutorPool.getExecutorPool().getListOfExecutors().getValue()).hasSize(1);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private ResponseEntity whenAddNewExecutorToEmptyPool(ExecutorTaskType executorTaskType,
|
||||||
|
ExecutorUri executorUri) throws JSONException {
|
||||||
|
|
||||||
|
ExecutorPool.getExecutorPool().getListOfExecutors().getValue().clear();
|
||||||
|
|
||||||
|
HttpHeaders headers = new HttpHeaders();
|
||||||
|
headers.add("Content-Type", ExecutorJsonRepresentation.EXECUTOR_MEDIA_TYPE);
|
||||||
|
|
||||||
|
String jsonPayLoad = new JSONObject().put("executorTaskType", executorTaskType.getValue())
|
||||||
|
.put("executorUri", executorUri.getValue()).toString();
|
||||||
|
|
||||||
|
|
||||||
|
HttpEntity<String> request = new HttpEntity<>(jsonPayLoad,headers);
|
||||||
|
|
||||||
|
return restTemplate.exchange("/executor-pool/AddExecutor", HttpMethod.POST, request, Object.class);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,75 @@
|
|||||||
|
package ch.unisg.executorpool;
|
||||||
|
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
|
import ch.unisg.executorpool.application.port.out.LoadExecutorPort;
|
||||||
|
import org.bson.json.JsonObject;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.mockito.Mockito;
|
||||||
|
import static org.mockito.BDDMockito.eq;
|
||||||
|
import static org.mockito.BDDMockito.then;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
|
||||||
|
import org.springframework.boot.test.mock.mockito.MockBean;
|
||||||
|
import org.springframework.test.web.servlet.MockMvc;
|
||||||
|
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
|
||||||
|
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
||||||
|
|
||||||
|
import ch.unisg.executorpool.adapter.common.formats.ExecutorJsonRepresentation;
|
||||||
|
import ch.unisg.executorpool.adapter.in.web.AddNewExecutorToExecutorPoolWebController;
|
||||||
|
import ch.unisg.executorpool.adapter.out.persistence.mongodb.ExecutorRepository;
|
||||||
|
import ch.unisg.executorpool.application.port.in.AddNewExecutorToExecutorPoolCommand;
|
||||||
|
import ch.unisg.executorpool.application.port.in.AddNewExecutorToExecutorPoolUseCase;
|
||||||
|
import ch.unisg.executorpool.domain.ExecutorClass;
|
||||||
|
import ch.unisg.executorpool.domain.ExecutorClass.ExecutorTaskType;
|
||||||
|
import ch.unisg.executorpool.domain.ExecutorClass.ExecutorUri;
|
||||||
|
import org.json.JSONObject;
|
||||||
|
|
||||||
|
|
||||||
|
@WebMvcTest(controllers = AddNewExecutorToExecutorPoolWebController.class)
|
||||||
|
public class AddNewExecutorToExecutorPoolWebControllerTest {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private MockMvc mockMvc;
|
||||||
|
|
||||||
|
@MockBean
|
||||||
|
private AddNewExecutorToExecutorPoolUseCase addNewExecutorToExecutorPoolUseCase;
|
||||||
|
|
||||||
|
@MockBean
|
||||||
|
ExecutorRepository executorRepository;
|
||||||
|
|
||||||
|
@MockBean
|
||||||
|
LoadExecutorPort loadExecutorPort;
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testAddNewExecutorToExecutorPool() throws Exception {
|
||||||
|
|
||||||
|
String executorTaskType = "test-request-type";
|
||||||
|
String executorUri = "example.org";
|
||||||
|
|
||||||
|
String jsonPayLoad = new JSONObject().put("executorTaskType", executorTaskType).put("executorUri", executorUri).toString();
|
||||||
|
|
||||||
|
ExecutorClass executorStub = ExecutorClass.createExecutorClass(new ExecutorUri(java.net.URI.create(executorUri)),
|
||||||
|
new ExecutorClass.ExecutorTaskType(executorTaskType));
|
||||||
|
|
||||||
|
AddNewExecutorToExecutorPoolCommand addNewExecutorToExecutorPoolCommand = new AddNewExecutorToExecutorPoolCommand(
|
||||||
|
new ExecutorUri(java.net.URI.create(executorUri)), new ExecutorTaskType(executorTaskType));
|
||||||
|
|
||||||
|
Mockito.when(addNewExecutorToExecutorPoolUseCase
|
||||||
|
.addNewExecutorToExecutorPool(addNewExecutorToExecutorPoolCommand))
|
||||||
|
.thenReturn(executorStub);
|
||||||
|
|
||||||
|
mockMvc.perform(post("/executor-pool/AddExecutor")
|
||||||
|
.contentType(ExecutorJsonRepresentation.EXECUTOR_MEDIA_TYPE)
|
||||||
|
.content(jsonPayLoad))
|
||||||
|
.andExpect(status().isCreated());
|
||||||
|
|
||||||
|
then(addNewExecutorToExecutorPoolUseCase).should()
|
||||||
|
.addNewExecutorToExecutorPool(eq(new AddNewExecutorToExecutorPoolCommand(
|
||||||
|
new ExecutorUri(java.net.URI.create(executorUri)), new ExecutorTaskType(executorTaskType))));
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,20 @@
|
|||||||
|
package ch.unisg.executorpool;
|
||||||
|
|
||||||
|
import com.tngtech.archunit.core.importer.ClassFileImporter;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import static com.tngtech.archunit.lang.syntax.ArchRuleDefinition.noClasses;
|
||||||
|
|
||||||
|
public class DependencyRuleTests {
|
||||||
|
@Test
|
||||||
|
void testPackageDependencies() {
|
||||||
|
noClasses()
|
||||||
|
.that()
|
||||||
|
.resideInAPackage("ch.unisg.executorpool.domain..")
|
||||||
|
.should()
|
||||||
|
.dependOnClassesThat()
|
||||||
|
.resideInAnyPackage("ch.unisg.executorpool.application..")
|
||||||
|
.check(new ClassFileImporter()
|
||||||
|
.importPackages("ch.unisg.executorpool.."));
|
||||||
|
}
|
||||||
|
}
|
@@ -1,13 +0,0 @@
|
|||||||
package ch.unisg.executorpool;
|
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
|
||||||
|
|
||||||
@SpringBootTest
|
|
||||||
class ExecutorPoolApplicationTests {
|
|
||||||
|
|
||||||
@Test
|
|
||||||
void contextLoads() {
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user