| src | ||
| Cargo.lock | ||
| Cargo.toml | ||
| example_input.json | ||
| README.md | ||
Runs the algorithm that aggregates all of the unmatched anomalies
Run the calculation that crates a report with all the anomalies that were not matched in any of the ILI comparison runs.
Input
Arguments
org_id: as string which should be a validuuidfor the organizationproject_id: the id of the data project where the pipeline data is foundpipeline_id: anarrayofstringswhich should each be a valid uuid representing a pipeline.
Note the pipeline_id array and route_file array should be the length such that the first entry in each array corresponds to one another.
Creating the function on the platform
To create this function on the platform using the cli set up the port forwarding as shown in README.
Then run the following command to create the function.
cargo run functions create \
-f functions/aggregate_all_unmatched/ \
-d "Run algorithm to aggregate anomalies that were not matches in any of the ILI comparison runs" \
-i org_id=string \
-i project_id=string \
-i pipeline_id=array
Testing the function locally
You can run and test the function locally by running
cargo run
Then you can check it work with curl as follows
curl localhost:8080 -d $(jq '. | tojson' functions/aggregate_all_unmatched/example_input.json)