5 unstable releases
0.3.1 | Apr 15, 2024 |
---|---|
0.3.0 | Apr 14, 2024 |
0.2.1 | Apr 8, 2024 |
0.1.1 | Mar 31, 2024 |
0.1.0 | Mar 31, 2024 |
#94 in Unix APIs
254 downloads per month
30KB
383 lines
Fiddler
Fiddler is a stream processor built in rust that uses a yaml based configuration file syntax to map together inputs, processors, and outputs.
Such as:
input:
stdin: {}
pipeline:
max_in_flight: 10
processors:
- python:
string: true
code: |
import json
msg = json.loads(root)
msg['Python'] = 'rocks'
root = json.dumps(msg)
output:
switch:
- check:
condition: '\"Hello World\" > `5`'
output:
validate:
expected: []
- stdout: {}
The main inline message manipulation is provided by Python, and requires the Python shared library.
To install the Python shared library on Ubuntu:
sudo apt install python3-dev
To install the Python shared library on RPM based distributions (e.g. Fedora, Red Hat, SuSE), install the python3-devel
package.
Any third party packages utilized in Python will have to be installed on the OS running fiddler.
The message format in and out is simple, the source of the event is stored in the local variable named root
; and the output taken from executing the code is expected to be named root
. By default root
is bytes of the message, unless the argument string: true
is proved, in which case root
is converted to a string.
Conditional execution of steps for processing, or selection of outputs can be obtained through the use of check
and switch
plugins. For processing, it looks like:
- switch:
- check:
condition: '\"Hello World\" <= `5`'
processors:
- python:
string: true
code: |
import json
new_string = f\"python: {root}\"
root = new_string
- echo: {}
- label: my_cool_mapping
echo: {}
The condition format utilized [jmespath](https://jmespath.org/specification.html) syntax for evaluation. As such, this can only be utilized with JSON documents.
Install
- Grab a release for your OS here
- Install with Cargo
cargo install fiddler
Run
fiddler run -c <path_to_config_file> [ -c ... ]
Lint
fiddler lint -c <path_to_config_file> [ -c ... ]
Test
Tests are expected in the format of <filename>_test.yaml
. I.e. if you have a configuration input.yaml
. The expected filename is input_test.yaml
. The test file syntax is as follows:
- name: name_of_test
inputs:
- list of expected input strings
expected_outputs:
- list of expected output strings
Tests can be run as fiddler-cli test -c <path_to_configuration>.yaml
Build
Build with Cargo cargo build --release --features all
Plugins
Input
File
input:
file:
filename: tests/data/input.txt
codec: ToEnd
filename
:string
: path to file to be readcodec
:string
: Possible Values:ToEnd
: Read entire file in one message.Lines
: Read file line by line
Stdin
input:
stdin: {}
Processors
Lines
processors:
- lines: {}
NoOp
processors:
- noop: {}
Python
processors:
- python:
string: true
code: |
import json
msg = json.loads(root)
msg['Python'] = 'rocks'
root = json.dumps(msg)
string
:bool
: whether or not the message contents are passed as a string or bytes (default)code
:string
: python code to execute
Check
processors:
- check:
condition: '\"Hello World\" <= `5`'
processors:
- python:
string: true
code: |
import json
new_string = f\"python: {root}\"
root = new_string
condition
:string
: jmespath expression to evaluate if processors are runprocessors
:list
: list of processors to run if condition is met
Switch
processors:
- switch:
- check:
condition: '\"Hello World\" <= `5`'
processors:
- python:
string: true
code: |
import json
new_string = f\"python: {root}\"
root = new_string
- echo: {}
- echo: {}
array
: array of processors to run, typically used with thecheck
processor. once a processor is successful, no other processors are ran
Output
StdOut
output:
stdout: {}
Check
output:
check:
condition: '\"Hello World\" > `5`'
output:
stdout: {}
condition
:string
: jmespath expression to evaluate if processors are runoutput
:object
: output to use if check is true
Switch
output:
switch:
- check:
condition: '\"Hello World\" > `5`'
output:
validate:
expected: []
array
: array of outputs, typically used with thecheck
output.
Elasticsearch
output:
elasticsearch:
url: http://example.com:9200
username: user
password: password
cloud_id: some_cloud_id
index: example
url
: if not using elasticsearch cloud, specify the url of the es cluster. i.e. http://127.0.0.1:9200username
: username for authenticationpassword
: password for authenticationcloud_id
: if using elasticsearch cloud, specify the cloud_idindex
: index to insert events into
Note: Variables can be collected from the environment, so when providing password, you may set it to password: "{{ ElasticSearchPassword }}"
and ElasticSearchPassword will be pulled from the environment variables and provided to the configuration.
Contributing
Contributions are welcome and encouraged! Contributions come in many forms. You could:
- Submit a feature request or bug report as an issue.
- Ask for improved documentation as an issue.
- Comment on issues that require feedback.
- Contribute code via pull requests.
Note that unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in fiddler by you shall be licensed under the Apache License, Version 2.0, without any additional terms or conditions.
Known Issues
- Cargo shows warnings on switch plugins when compiled on Windows that they are skipped when in fact they are not.
- build.rs doesn't validate Python is present when compiled on Windows
- Integration tests failing on windows GHA
Dependencies
~31–47MB
~797K SLoC