Create a Function to Automate the Process
- To create a function, click Functions > Workers.
- Click New Worker.
- Add the Function name as update-cpu-state and description as This function is to update the computer status based on the disk space.
- Select the Python 3 template.
-
Enter the following code. In the provided code, add your
thing’s Client ID and Secret ID from the Interface tab inside the Thing. Also,
complete the PATH with your own values.
import time import requests import json API_HOST = 'https://api.swx.altairone.com' CLIENT_ID = "Add_your_clientID_from_Interface_tab_inside_the_Thing" CLIENT_SECRET = "Add_your_client_Secret_from_Interface_tab_inside_the_Thing" def get_access_token(): payload = f'grant_type=client_credentials&' \ f'client_id={CLIENT_ID}&' \ f'client_secret={CLIENT_SECRET}&' \ f'scope=thing.read thing.update' headers = {'Content-Type': 'application/x-www-form-urlencoded'} response = requests.request("POST", API_HOST + "/oauth2/token", headers=headers, data=payload) return response.json()['access_token'] def revoke_token(token): payload = f'token={token}&' \ f'client_id={CLIENT_ID}&' \ f'client_secret={CLIENT_SECRET}' headers = {'Content-Type': 'application/x-www-form-urlencoded'} response = requests.request("POST", API_HOST + "/oauth2/revoke", headers=headers, data=payload) return response def handle(req): token=get_access_token() body = req.body.decode("utf-8") body = json.loads(body) cpu = body['cpu'] if cpu >= 85: state = "Critical usage" elif 50 < cpu < 85: state = "Normal usage" else: state = "Low usage" PATH = "/spaces/Enter_your_space_id/collections/Enter_your_collection_name/things/Enter_your_thing_uid/properties/statecpu" headers = {"Authorization": "Bearer " + get_access_token()} response = requests.request("PUT", API_HOST + PATH, headers=headers,json={"statecpu": state}) return { "body": response.json(), "status_code": response.status_code }
Note: You can edit the code as necessary. -
Add an Event trigger as follows:
status/your-space_name/collections/your_collections_name/things/your_thing_id/properties/
cpu
When using this method, the function will be invoked whenever there is a change on the Property
cpu
on the Thing you have created. -
Deploy your function by clicking Save.
The function is created. This could take a few minutes. The status of your Function will be updated to a Building status and, eventually, it will become Running. At this point, your Function is ready to be called.
-
Test the function created in the Test tab by sending the input parameters to
the function and receiving the solution in the test response field.
- In Test Request Input field enter, enter {"cpu": 57.9}.
-
Click Run.
The Test Response field shows Normal usage.