diff --git a/examples/00-example-generate-alertsettings.yaml b/examples/00-example-generate-alertsettings.yaml index 6ff21c45..b8c5a3ba 100644 --- a/examples/00-example-generate-alertsettings.yaml +++ b/examples/00-example-generate-alertsettings.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to generate data and have it sent to a target topic in a given format. diff --git a/examples/00-example-generate-sensordata.yaml b/examples/00-example-generate-sensordata.yaml index 46b73278..75d400aa 100644 --- a/examples/00-example-generate-sensordata.yaml +++ b/examples/00-example-generate-sensordata.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to generate data and have it sent to a target topic in a given format. diff --git a/examples/01-example-inspect.yaml b/examples/01-example-inspect.yaml index 718cc41c..235a9f94 100644 --- a/examples/01-example-inspect.yaml +++ b/examples/01-example-inspect.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to read from four simple streams and log all messages diff --git a/examples/02-example-copy.yaml b/examples/02-example-copy.yaml index f4d72cce..9145c449 100644 --- a/examples/02-example-copy.yaml +++ b/examples/02-example-copy.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to read from a simple stream and copy every message to a target topic. diff --git a/examples/03-example-filter.yaml b/examples/03-example-filter.yaml index 03954e6e..a9143d67 100644 --- a/examples/03-example-filter.yaml +++ b/examples/03-example-filter.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to filter messages from a simple stream. Here we # only let "blue sensors" pass and discard other messages after logging. diff --git a/examples/04-example-branch.yaml b/examples/04-example-branch.yaml index 4fd0c061..a5b76606 100644 --- a/examples/04-example-branch.yaml +++ b/examples/04-example-branch.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to branch processing of messages from a simple stream. Here we fork processing of "blue # sensors" and "red sensors" into a separate branch each. All other sensors will be processed in a default branch. diff --git a/examples/05-example-route.yaml b/examples/05-example-route.yaml index 39264532..692533a8 100644 --- a/examples/05-example-route.yaml +++ b/examples/05-example-route.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to route messages to a dynamic topic. The target topic is the result of an executed function. diff --git a/examples/06-example-duplicate.yaml b/examples/06-example-duplicate.yaml index aac74dc7..40dd3aab 100644 --- a/examples/06-example-duplicate.yaml +++ b/examples/06-example-duplicate.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json streams: sensor_source: diff --git a/examples/07-example-convert.yaml b/examples/07-example-convert.yaml index 4fc3976a..bdbb6acc 100644 --- a/examples/07-example-convert.yaml +++ b/examples/07-example-convert.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to read from a simple AVRO stream, then perform a series of conversions: # diff --git a/examples/08-example-count.yaml b/examples/08-example-count.yaml index cbd32c76..54a7a200 100644 --- a/examples/08-example-count.yaml +++ b/examples/08-example-count.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to read from a simple stream, group by owner, apply windows and count owners per window. diff --git a/examples/09-example-aggregate.yaml b/examples/09-example-aggregate.yaml index 782d213b..32e854e5 100644 --- a/examples/09-example-aggregate.yaml +++ b/examples/09-example-aggregate.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to read from a simple stream, group by owner, apply windows and count owners per window. diff --git a/examples/10-example-queryable-table.yaml b/examples/10-example-queryable-table.yaml index bb592d39..4ee47165 100644 --- a/examples/10-example-queryable-table.yaml +++ b/examples/10-example-queryable-table.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to read from a simple stream, group by owner, apply windows and count owners per window. diff --git a/examples/11-example-field-modification.yaml b/examples/11-example-field-modification.yaml index f106e03d..9b34e358 100644 --- a/examples/11-example-field-modification.yaml +++ b/examples/11-example-field-modification.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to read from an AVRO stream, modify a specific field and output to a target # stream. For validation purposes a second pipeline outputs the modified results. diff --git a/examples/12-example-byte-manipulation.yaml b/examples/12-example-byte-manipulation.yaml index 7bad4b34..59dc50ae 100644 --- a/examples/12-example-byte-manipulation.yaml +++ b/examples/12-example-byte-manipulation.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to read from a binary stream, manipulate specific bytes and output # messages on a target stream. For validation purposes a second pipeline outputs the manipulated diff --git a/examples/13-example-join.yaml b/examples/13-example-join.yaml index 39e74a97..290fba5d 100644 --- a/examples/13-example-join.yaml +++ b/examples/13-example-join.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to read sensor data from an Avro stream, join with the alert settings stored in a table and # produce alerts on a topic for the sensor data that should trigger alerts diff --git a/examples/14-example-manual-state-store.yaml b/examples/14-example-manual-state-store.yaml index 20a2f96b..b4d32abf 100644 --- a/examples/14-example-manual-state-store.yaml +++ b/examples/14-example-manual-state-store.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json streams: sensor_source_avro: diff --git a/examples/15-example-pipeline-linking.yaml b/examples/15-example-pipeline-linking.yaml index 3f1093f1..62864fcb 100644 --- a/examples/15-example-pipeline-linking.yaml +++ b/examples/15-example-pipeline-linking.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to read from four simple streams and log all messages diff --git a/examples/16-example-transform-metadata.yaml b/examples/16-example-transform-metadata.yaml index f124a88e..6a397431 100644 --- a/examples/16-example-transform-metadata.yaml +++ b/examples/16-example-transform-metadata.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to transform timestamp and header information of messages diff --git a/examples/17-example-inspect-with-metrics.yaml b/examples/17-example-inspect-with-metrics.yaml index 308dcf13..4a97bb02 100644 --- a/examples/17-example-inspect-with-metrics.yaml +++ b/examples/17-example-inspect-with-metrics.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to read from four simple streams and log all messages diff --git a/examples/18-example-timestamp-extractor.yaml b/examples/18-example-timestamp-extractor.yaml index 2e1b988f..eccb5968 100644 --- a/examples/18-example-timestamp-extractor.yaml +++ b/examples/18-example-timestamp-extractor.yaml @@ -1,4 +1,4 @@ -# $schema: https://raw.githubusercontent.com/Axual/ksml/main/docs/ksml-language-spec.json +# $schema: https://raw.githubusercontent.com/Axual/ksml/refs/heads/main/docs/ksml-language-spec.json # This example shows how to apply a timestamp extractor and offset reset policy to an input stream