diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 12:08:03 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 12:08:18 +0000 |
commit | 5da14042f70711ea5cf66e034699730335462f66 (patch) | |
tree | 0f6354ccac934ed87a2d555f45be4c831cf92f4a /src/fluent-bit/lib/cfl/README.md | |
parent | Releasing debian version 1.44.3-2. (diff) | |
download | netdata-5da14042f70711ea5cf66e034699730335462f66.tar.xz netdata-5da14042f70711ea5cf66e034699730335462f66.zip |
Merging upstream version 1.45.3+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/fluent-bit/lib/cfl/README.md')
-rw-r--r-- | src/fluent-bit/lib/cfl/README.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/fluent-bit/lib/cfl/README.md b/src/fluent-bit/lib/cfl/README.md new file mode 100644 index 000000000..4050bef8b --- /dev/null +++ b/src/fluent-bit/lib/cfl/README.md @@ -0,0 +1,23 @@ +# CFL + +CFL is a tiny library that provides interfaces for data structures, originally created to satisfy the needs of Fluent Bit and other libraries used internally like CMetrics and CTraces projects. + +note: The name doesn't mean anything specific, you can call it `c:\ floppy` if you want. + +## Interfaces + +- cfl_sds: string manipulation +- cfl_list: linked list +- cfl_kv: key value pairs by using a linked list (cfl_list) +- cfl_array: array of elements +- cfl_variant: interface to manage contexts with vairant types +- cfl_time: time utilities +- cfl_hash: 64bit hashing functions + +## License + +This program is under the terms of the [Apache License v2.0](http://www.apache.org/licenses/LICENSE-2.0). + +## Authors + +Copyright is assigned to the `CFL Authors`, you can see a list of contributors [here](https://github.com/fluent/cfl/graphs/contributors). |