Bloblang Functions
Functions can be placed anywhere and allow you to extract information from your environment, generate values, or access data from the underlying message being mapped:
Functions support both named and nameless style arguments:
General
counter
Returns a non-negative integer that increments each time it is resolved, yielding the minimum (1
by default) as the first value. Each instantiation of counter
has its own independent count. Once the maximum integer (or max
argument) is reached the counter resets back to the minimum.
Parameters
min
<query expression, default1
> The minimum value of the counter, this is the first value that will be yielded. If this parameter is dynamic it will be resolved only once during the lifetime of the mapping.max
<query expression, default9223372036854775807
> The maximum value of the counter, once this value is yielded the counter will reset back to the min. If this parameter is dynamic it will be resolved only once during the lifetime of the mapping.set
<(optional) query expression> An optional mapping that when specified will be executed each time the counter is resolved. When this mapping resolves to a non-negative integer value it will cause the counter to reset to this value and yield it. If this mapping is omitted or doesn’t resolve to anything then the counter will increment and yield the value as normal. If this mapping resolves tonull
then the counter is not incremented and the current value is yielded. If this mapping resolves to a deletion then the counter is reset to themin
value.
Examples
It’s possible to increment a counter multiple times within a single mapping invocation using a map.
By specifying an optional set
parameter it is possible to dynamically reset the counter based on input data.
The set
parameter can also be utilized to peek at the counter without mutating it by returning null
.
deleted
A function that returns a result indicating that the mapping target should be deleted. Deleting, also known as dropping, messages will result in them being acknowledged as successfully processed to inputs in a Redpanda Connect pipeline. For more information about error handling patterns read xref:configuration:error_handling.adoc[].
Examples
Since the result is a value it can be used to do things like remove elements of an array within map_each
.
ksuid
Generates a new ksuid each time it is invoked and prints a string representation.
Examples
nanoid
Generates a new nanoid each time it is invoked and prints a string representation.
Parameters
length
<(optional) integer> An optional length.alphabet
<(optional) string> An optional custom alphabet to use for generating IDs. When specified the fieldlength
must also be present.
Examples
It is possible to specify an optional length parameter.
It is also possible to specify an optional custom alphabet after the length parameter.
pi
Returns the value of the mathematical constant Pi.
Examples
random_int
Generates a non-negative pseudo-random 64-bit integer. An optional integer argument can be provided in order to seed the random number generator.
Optional min
and max
arguments can be provided in order to only generate numbers within a range. Neither of these parameters can be set via a dynamic expression (i.e. from values taken from mapped data). Instead, for dynamic ranges extract a min and max manually using a modulo operator (random_int() % a + b
).
Parameters
seed
<query expression, default{"Value":0}
> A seed to use, if a query is provided it will only be resolved once during the lifetime of the mapping.min
<integer, default0
> The minimum value the random generated number will have. The default value is 0.max
<integer, default9223372036854775806
> The maximum value the random generated number will have. The default value is 9223372036854775806 (math.MaxInt64 - 1).
Examples
It is possible to specify a dynamic seed argument, in which case the argument will only be resolved once during the lifetime of the mapping.
range
The range
function creates an array of integers following a range between a start, stop and optional step integer argument. If the step argument is omitted then it defaults to 1. A negative step can be provided as long as stop < start.
Parameters
start
<integer> The start value.stop
<integer> The stop value.step
<integer, default1
> The step value.
Examples
snowflake_id
Generate a new snowflake ID each time it is invoked and prints a string representation. I.e.: 1559229974454472704
Parameters
node_id
<integer, default1
> It is possible to specify the node_id.
Examples
It is possible to specify the node_id.
throw
Throws an error similar to a regular mapping error. This is useful for abandoning a mapping entirely given certain conditions.
Parameters
why
<string> A string explanation for why an error was thrown, this will be added to the resulting error message.
Examples
ulid
Generate a random ULID.
Parameters
encoding
<string, default"crockford"
> The format to encode a ULID into. Valid options are: crockford, hexrandom_source
<string, default"secure_random"
> The source of randomness to use for generating ULIDs. “secure_random” is recommended for most use cases. “fast_random” can be used if security is not a concern.
Examples
Using the defaults of Crockford Base32 encoding and secure random source
ULIDs can be hex-encoded too.
They can be generated using a fast, but unsafe, random source for use cases that are not security-sensitive.
uuid_v4
Generates a new RFC-4122 UUID each time it is invoked and prints a string representation.
Examples
Message Info
batch_index
Returns the index of the mapped message within a batch. This is useful for applying maps only on certain messages of a batch.
Examples
batch_size
Returns the size of the message batch.
Examples
content
Returns the full raw contents of the mapping target message as a byte array. When mapping to a JSON field the value should be encoded using the method encode
, or cast to a string directly using the method string
, otherwise it will be base64 encoded by default.
Examples
error
If an error has occurred during the processing of a message this function returns the reported cause of the error as a string, otherwise null
. For more information about error handling patterns read xref:configuration:error_handling.adoc[].
Examples
errored
Returns a boolean value indicating whether an error has occurred during the processing of a message. For more information about error handling patterns read xref:configuration:error_handling.adoc[].
Examples
json
Returns the value of a field within a JSON message located by a [dot path][field_paths] argument. This function always targets the entire source JSON document regardless of the mapping context.
Parameters
path
<string, default""
> An optional [dot path][field_paths] identifying a field to obtain.
Examples
The path argument is optional and if omitted the entire JSON payload is returned.
metadata
Returns the value of a metadata key from the input message, or null
if the key does not exist. Since values are extracted from the read-only input message they do NOT reflect changes made from within the map, in order to query metadata mutations made within a mapping use the @
operator. This function supports extracting metadata from other messages of a batch with the from
method.
Parameters
key
<string, default""
> An optional key of a metadata value to obtain.
Examples
The key parameter is optional and if omitted the entire metadata contents are returned as an object.
tracing_id
Provides the message trace id. The returned value will be zeroed if the message does not contain a span.
Examples
tracing_span
Provides the message tracing span (created via Open Telemetry APIs) as an object serialized via text map formatting. The returned value will be null
if the message does not have a span.
Examples
Environment
env
Returns the value of an environment variable, or null
if the environment variable does not exist.
Parameters
name
<string> The name of an environment variable.no_cache
<bool, defaultfalse
> Force the variable lookup to occur for each mapping invocation.
Examples
When the name parameter is static this function will only resolve once and yield the same result for each invocation as an optimization, this means that updates to env vars during runtime will not be reflected. You can disable this cache with the optional parameter no_cache
, which when set to true
will cause the variable lookup to be performed for each execution of the mapping.
file
Reads a file and returns its contents. Relative paths are resolved from the directory of the process executing the mapping. In order to read files relative to the mapping file use the newer file_rel
function
Parameters
path
<string> The path of the target file.no_cache
<bool, defaultfalse
> Force the file to be read for each mapping invocation.
Examples
When the path parameter is static this function will only read the specified file once and yield the same result for each invocation as an optimization, this means that updates to files during runtime will not be reflected. You can disable this cache with the optional parameter no_cache
, which when set to true
will cause the file to be read for each execution of the mapping.
file_rel
Reads a file and returns its contents. Relative paths are resolved from the directory of the mapping.
Parameters
path
<string> The path of the target file.no_cache
<bool, defaultfalse
> Force the file to be read for each mapping invocation.
Examples
When the path parameter is static this function will only read the specified file once and yield the same result for each invocation as an optimization, this means that updates to files during runtime will not be reflected. You can disable this cache with the optional parameter no_cache
, which when set to true
will cause the file to be read for each execution of the mapping.
hostname
Returns a string matching the hostname of the machine running Benthos.
Examples
now
Returns the current timestamp as a string in RFC 3339 format with the local timezone. Use the method ts_format
in order to change the format and timezone.
Examples
timestamp_unix
Returns the current unix timestamp in seconds.
Examples
timestamp_unix_micro
Returns the current unix timestamp in microseconds.
Examples
timestamp_unix_milli
Returns the current unix timestamp in milliseconds.
Examples
timestamp_unix_nano
Returns the current unix timestamp in nanoseconds.
Examples
Fake Data Generation
fake
Takes in a string that maps to a faker function and returns the result from that faker function. Returns an error if the given string doesn’t match a supported faker function. Supported functions: latitude
, longitude
, unix_time
, date
, time_string
, month_name
, year_string
, day_of_week
, day_of_month
, timestamp
, century
, timezone
, time_period
, email
, mac_address
, domain_name
, url
, username
, ipv4
, ipv6
, password
, jwt
, word
, sentence
, paragraph
, cc_type
, cc_number
, currency
, amount_with_currency
, title_male
, title_female
, first_name
, first_name_male
, first_name_female
, last_name
, name
, gender
, chinese_first_name
, chinese_last_name
, chinese_name
, phone_number
, toll_free_phone_number
, e164_phone_number
, uuid_hyphenated
, uuid_digit
. Refer to the faker docs for details on these functions.
Parameters
function
<string, default""
> The name of the function to use to generate the value.
Examples
Use time_string
to generate a time in the format 00:00:00
:
Use email
to generate a string in email address format:
Use jwt
to generate a JWT token:
Use uuid_hyphenated
to generate a hyphenated UUID:
Deprecated
count
The count
function is a counter starting at 1 which increments after each time it is called. Count takes an argument which is an identifier for the counter, allowing you to specify multiple unique counters in your configuration.
Parameters
name
<string> An identifier for the counter.
Examples
meta
Returns the value of a metadata key from the input message as a string, or null
if the key does not exist. Since values are extracted from the read-only input message they do NOT reflect changes made from within the map. In order to query metadata mutations made within a mapping use the root_meta
function. This function supports extracting metadata from other messages of a batch with the from
method.
Parameters
key
<string, default""
> An optional key of a metadata value to obtain.
Examples
The key parameter is optional and if omitted the entire metadata contents are returned as an object.
root_meta
Returns the value of a metadata key from the new message being created as a string, or null
if the key does not exist. Changes made to metadata during a mapping will be reflected by this function.
Parameters
key
<string, default""
> An optional key of a metadata value to obtain.
Examples
The key parameter is optional and if omitted the entire metadata contents are returned as an object.