Skip to content

kql-dashboard

Manage KQL dashboards (real-time dashboards)

Authentication scope: fabric

List KQL dashboards in a workspace

Terminal window
fabio kql-dashboard list --workspace <value>
Flag Type Required Description
--workspace string Yes Workspace ID

Read-only · Returns list

Show details of a KQL dashboard

Terminal window
fabio kql-dashboard show --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes KQL dashboard ID

Read-only · Returns object

Create a new KQL dashboard

Terminal window
fabio kql-dashboard create --workspace <value> --name <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--name string Yes Dashboard display name
--description string No Optional description
--sensitivity-label string No Sensitivity label ID to apply on creation

Mutates state · Returns object

Update KQL dashboard properties (name and/or description)

Terminal window
fabio kql-dashboard update --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes KQL dashboard ID
--name string No New display name
--description string No New description

Mutates state · Returns object

Delete a KQL dashboard

Terminal window
fabio kql-dashboard delete --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes KQL dashboard ID
--hard-delete bool No Permanently delete (cannot be recovered)

Mutates state · Destructive · Returns void

Get the definition of a KQL dashboard

Terminal window
fabio kql-dashboard get-definition --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes KQL dashboard ID
--decode bool No Decode base64 payloads inline (adds decodedPayload field)

Read-only · Long-running operation · Returns object

Update the definition of a KQL dashboard

Terminal window
fabio kql-dashboard update-definition --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes KQL dashboard ID
--file string No Definition file path (reads file content)
--content string No Definition content (inline)

Mutates state · Long-running operation · Returns void