# Rules management
The eKuiper REST api for rules allows you to manage rules, such as create, show, drop, describe, start, stop and restart rules.
# create a rule
The API accepts a JSON content and create and start a rule.
POST http://localhost:9081/rules
Request Sample
{
"id": "rule1",
"sql": "SELECT * FROM demo",
"actions": [{
"log": {}
}]
}
2
3
4
5
6
7
# show rules
The API is used for displaying all of rules defined in the server with a brief status.
GET http://localhost:9081/rules
Response Sample:
[
{
"id": "rule1",
"status": "Running"
},
{
"id": "rule2",
"status": "Stopped: canceled by error."
}
]
2
3
4
5
6
7
8
9
10
# describe a rule
The API is used for print the detailed definition of rule.
GET http://localhost:9081/rules/{id}
Path parameter id
is the id or name of the rule.
Response Sample:
{
"sql": "SELECT * from demo",
"actions": [
{
"log": {}
},
{
"mqtt": {
"server": "tcp://127.0.0.1:1883",
"topic": "demoSink"
}
}
]
}
2
3
4
5
6
7
8
9
10
11
12
13
14
# update a rule
The API accepts a JSON content and update a rule.
PUT http://localhost:9081/rules/{id}
Path parameter id
is the id or name of the old rule.
Request Sample
{
"id": "rule1",
"sql": "SELECT * FROM demo",
"actions": [{
"log": {}
}]
}
2
3
4
5
6
7
# drop a rule
The API is used for drop the rule.
DELETE http://localhost:9081/rules/{id}
# start a rule
The API is used to start running the rule.
POST http://localhost:9081/rules/{id}/start
# stop a rule
The API is used to stop running the rule.
POST http://localhost:9081/rules/{id}/stop
# restart a rule
The API is used to restart the rule.
POST http://localhost:9081/rules/{id}/restart
# get the status of a rule
The command is used to get the status of the rule. If the rule is running, the metrics will be retrieved realtime. The status can be
- $metrics
- stopped: $reason
GET http://localhost:9081/rules/{id}/status
Response Sample:
{
"source_demo_0_records_in_total":5,
"source_demo_0_records_out_total":5,
"source_demo_0_exceptions_total":0,
"source_demo_0_process_latency_ms":0,
"source_demo_0_buffer_length":0,
"source_demo_0_last_invocation":"2020-01-02T11:28:33.054821",
...
"op_filter_0_records_in_total":5,
"op_filter_0_records_out_total":2,
"op_filter_0_exceptions_total":0,
"op_filter_0_process_latency_ms":0,
"op_filter_0_buffer_length":0,
"op_filter_0_last_invocation":"2020-01-02T11:28:33.054821",
...
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# get the topology structure of a rule
The command is used to get the status of the rule represented as a json string. In the json string, there are 2 fields:
- sources: it is a string array of the names of all source nodes. They are the entry of the topology.
- edges: it is a hash map of all edges categorized by nodes. The keys are the starting point of an edge. And the value is a collection of ending point.
GET http://localhost:9081/rules/{id}/topo
Response Sample:
{
"sources": [
"source_stream"
],
"edges": {
"op_project": [
"sink_log"
],
"source_stream": [
"op_project"
]
}
}
2
3
4
5
6
7
8
9
10
11
12
13