Lenses offers a powerful CLI (command-line tool) built-in Go that utilizes the REST and WebSocket APIs of Lenses to communicate with Apache Kafka. It provides a straightforward way to perform common data engineering and site reliability engineering tasks.
Quick start
To use the CLI you must first configure the workspace:
lenses-cli configure
And fill in the details:
? Host: https://lenseshost:9991
? Auth token or username:
? Password: ******
? Save workspace name: dataopsDev
The configuration will be stored in ~/.lenses/config.yml
Controlling the output format
The —output flag, controls the format of the output.
The value of output can be Table, YAML or JSON. By default, the results of a command are printed as a table.
Additionally, when using the –output flag with JSON, two more optional flags are available: –pretty and –query. These flags can be passed to all commands that fetch and return JSON-formatted results.
—pretty - Enable the pretty format for JSON output of commands (default false).
—query - A jmespath query expression. This allows for querying the JSON output of commands. For more details view the JMESPATH documentation.
Usage with a service account
To use the CLI with a service account for CI/CD you need to pass these options:
lenses-cli topics \
--token=<service-account-name>:<service-account-token> \
--host=<lenses-url-host>
# Real Example
lenses-cli topics \
--token=ci:58d86476-bcc6-47e2-a57e-0c6bbd9c88b9 \
--host=http://<your-lenses-url>:9991
Data
Datasets
This page describes commands to update various metadata associated with datasets in Lenses via the CLI.
Notice that the --tags parameter is required and should contain a non-empty, space separated list of tags (a tag max length is 255 characters). To delete all the tags associated to a dataset, you can use the remove-tags subcommand:
This page describes commands to access the Elasticsearch indexes in Lenses via the CLI.
List all the available indexes
# list all elasticsearch indexes
lenses-cli elasticsearch-indexes
# or filter by connection and include system indexes
lenses-cli elasticsearch-indexes \
--connection es-default \
--include-system-indexes
This page describes the commands to manage Kafka topics via the Lenses CLI.
View all topics
The optional names flag wil display only the names of the topics. If you use the –unwrap flag, each topic name will be displayed on a new line as text:
# first change the key/value type
lenses-cli topics metadata set \
--name=topicName \
--key-type=bytes \
--value-type=xml
# now you may change its schema
lenses-cli topics metadata set \
--name=topicName \
--key-type=bytes \
--key-schema="{\"type\":\"record\",\"name\":\"lenses_record\",\"namespace\":\"lenses\",\"fields\":[{\"name\":\"keyField\",\"type\":\"string\"}]}" \
--value-type=xml \
--value-schema="{\"type\":\"record\",\"name\":\"lenses_record\",\"namespace\":\"lenses\",\"fields\":[{\"name\":\"valueField\",\"type\":\"string\"}]}"
Update from a file:
lenses-cli topic update ./topic.yaml
Example file:
topicName: topicName
keyType: bytes
valueType: xml
valueSchema: "{\"type\":\"record\",\"name\":\"lenses_record\",\"namespace\":\"lenses\",\"fields\":[{\"name\":\"heading3\",\"type\":\"string\"}]}"
Delete topics
lenses-cli topic delete --name="topic2"
Querying data
This page describes how to query data in Lenses via the CLI.
The CLI allows you to browse and subscribe to topic data with SQL. Please refer to the Lenses SQL documentation for more details.
Use these flags to control the data that’s returned:
keys print message keys
keys-only print the keys only, not the value of the message
meta print the message metadata, partition number and offsets
stats print query statistics as the last message
Browsing
Browse data via the query command, optionally validate and output stats:
Live continuous queries update according to the query and never stop until terminated:
lenses-cli \
query \
--live-stream "SELECT score, author FROM reddit_posts WHERE _sample=2 AND _sampleWindow=200"
Interactive shell
The interactive shell allows you to have an interactive experience and issue Lenses SQL queries from the command line.
To start the interactive shell, issue the following command:
lenses-cli shell
The available options are the following:
keys print message keys
keys-only print the keys only, not the value of the message
meta print the message metadata, partition number and offsets
stats print query statistics as the last message
pretty pretty print the JSON output
live-stream run as a continuous query
!options prints the current options
Options are set using the ! prefix
Queries are executed by ;
Multiline queries are possible but not available in the history inside the shell. After a restart, the multiline queries are concatenated into one line and can be selected.
Query history is stored in .lenses/history in the home directory of the user.
__ ________ ____
/ / ___ ____ ________ _____ / ____/ / / _/
/ / / _ \/ __ \/ ___/ _ \/ ___/ / / / / / /
/ /___/ __/ / / (__ ) __(__ ) / /___/ /____/ /
/_____/\___/_/ /_/____/\___/____/ \____/_____/___/
Docs at https://docs.lenses.io
Connected to [https://master.lenses.io:443] as [andrew], context [master]
Use "!" to set output options [!keys|!keysOnly|!stats|!meta|!pretty]
Crtl+D to exit
lenses-sql>
Admin
Alerts
This page describes the commands to manage Lenses Alerts via the CLI.
View all raised alert notifications
Copy
lenses-cli alerts
View all alert settings
Copy
lenses-cli alert settings
View an alert setting
lenses-cli alert setting --id=2000
Enable or disable an alert setting
Enabling
lenses-cli alert setting --id=1000 --enable
Disabling
lenses-cli alert setting --id=1000 --enable=false
View all conditions that belong to a specific alert setting
lenses-cli alert setting conditions --alert=2000
Create or update an existing condition for a specific alert setting
lenses-cli alert setting condition set \
--alert=2000 \
--condition="lag >= 200000 on group groupA and topic topicA" \
--channels="f9d6140c-4823-4157-a93c-5147aa0e2f29"
# For "Data Produced" type of alert rules
lenses-cli alert setting condition set \
--alert=5000 \
--topic=my-topic \
--duration=PT6H \
--more-than=5
# optional channels can be used more than once
# You can get the ID of a channel with `lenses-cli alertchannels`
lenses-cli alert setting condition set \
--alert=5000 \
--topic=my-topic \
--duration=PT6H \
--more-than=5 \
--channels="9176c428-be0e-4c36-aa1e-8b8a66782232" \
--channels="7b184b13-f37c-4eee-9c0a-17dec2fd7bf5"
Update an existing condition using flags
lenses-cli alert setting condition set --alert 2000 \
--condition="lag >= 95 on group group-1 and topic topic-1" \
--conditionID="5a6c3951-dfde-478e-8952-8193e62a9a8a" \
--channels="143315dd-80bf-4833-a13a-394be06dda87" \
--channels="f9d6140c-4823-4157-a93c-5147aa0e2f29"
# For "Data Produced" type of alert rules
# update - identify rule to update by its condition ID
lenses-cli alert settings --query="categories.producers" | jq .
lenses-cli alert setting condition set \
--conditionID=f4a623e3-5287-4ca3-9d05-8f0ab68a9b4b \
--alert=5000 \
--topic=my-topic \
--duration=PT6H \
--more-than=5
Create or update a condition from a file
cat > alert_cond.yaml <<- "EOF"
alert: 2000
conditionID: "5a6c3951-dfde-478e-8952-8193e62a9a8a"
condition:
"lag >= 30 on group schema-registry and topic backblaze_smart"
channels:
- "143315dd-80bf-4833-a13a-394be06dda87"
- "f9d6140c-4823-4157-a93c-5147aa0e2f29"
EOF
lenses-cli alert setting condition set alert_cond.yaml
# For "Data Produced" type of alert rules
cat > data_produced_alert.yaml <<- "EOF"
topic: "my-yaml-topic"
alert: 5000
more-than: 6990
duration: "PT6H"
EOF
lenses-cli alert setting condition set data_produced_alert.yml
Command line flags are ignored when loading from files.
Delete an existing condition for a specific alert
lenses-cli alert setting condition delete \
--alert=2000 \
--condition="7643d1ec-73f9-4913-95d1-87e62f1ec172"
# For "Data Produced" type of alert rules
alert setting condition delete \
--alert 5000 \
--condition=19e7791d-9fbf-4b6b-b198-8490e5e30d29
The value of the `--alert` flag is the Alert ID that the alert setting belongs to whereas the value of the `--condition` flag is the UUID of the condition to delete.
Alert Channels
This page describes managing alert channels in Lenses via the CLI.
This page describes the commands to manage Groups in Lenses via the CLI.
View groups
List the current user groups.
lenses-cli groups
View group
Get the details of a user group:
lenses-cli groups get --name Group1
Get the assigned data namespaces of a user group:
lenses-cli groups get --name Group1 --dataNamespaces
Create
Create a user group via the command line flags or file:
lenses-cli groups create \
--name MyGroup \
--description "My test group" \
--applicationPermissions ViewKafkaConsumers \
--applicationPermissions ManageKafkaConsumers \
--applicationPermissions ViewConnectors \
--connectClustersPermissions dev \
--dataNamespaces '[{"wildcards":["*"],"permissions":["CreateTopic","DropTopic","ConfigureTopic","QueryTopic","ShowTopic","ViewSchema","InsertData","DeleteData","UpdateSchema"],"system":"Kafka","instance":"Dev"}]'
# from a file:
lenses-cli groups create ./group.yaml
The --names flag displays only the names of the connectors. When used with --unwrap, it will print each connector name on a separate line in the output.
This page describes the commands to manage SQL Processors in Lenses via the CLI.
The CLI can create, modify, pause, restart and remove Lenses SQL Processors.
View processors
View all processors registered. Optionally filter by name, cluster and namespace.
lenses-cli processors
# filter by namespace
lenses-cli processors --namespace lenses-sql
# Please note the following columns in the table:
# * 'ID' which should be used as the 'id' required for the commands below.
# * 'PROCESSORID' , which the user may have configured in creating the processor, and will be used as the consumer group of the processor.
Create processors
For IN_PROC you only need the name, for KUBERNETES all three. Creating an IN_PROC processor will start it automatically. This is not the case for Kubernetes deployments, a start command (see below) is required once created.
--id (the processor id, optional)
--name (optional)
--cluster-name (should be passed if KUBERNETES)
--namespace (should be passed if KUBERNETES)
--runners (number of times to deploy while in KUBERNETES)
// Prepare the client's configuration based on the host and the authentication above.
currentConfig := lenses.ClientConfig{Host: "domain.com", Authentication: auth, Timeout: "15s", Debug: true}
// Creating the client using the configuration.
client, err := lenses.OpenConnection(currentConfig)
if err != nil {
// handle error.
}
Usage
All lenses-go#Client methods return a typed value based on the call and an error as second output to catch any errors coming from backend or client, forget panics.
topics, err := client.GetTopics()
if err != nil {
// handle error.
}
// Print the length of the topics we've just received from our Lenses Box.
print(len(topics))