Skip to content

eventhouse

Manage eventhouses (real-time analytics)

Authentication scope: fabric

List eventhouses in a workspace

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

Output fields: id, displayName, description

Read-only · Returns list

Show details of an eventhouse

Terminal window
fabio eventhouse show --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Eventhouse ID

Output fields: id, displayName, description, properties

Read-only · Returns object

Create a new eventhouse

Terminal window
fabio eventhouse create --workspace <value> --name <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--name string Yes Eventhouse display name
--description string No Optional description
--sensitivity-label string No Sensitivity label ID to apply on creation
--min-consumption-units string No Minimum consumption units to keep the eventhouse always-on (create-time only, creationPayload.minimumConsumptionUnits)

Examples

Terminal window
fabio eventhouse create --workspace $WS --name "TelemetryHub"

Output fields: id, displayName

Mutates state · Returns object

Update eventhouse properties (name and/or description)

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

Mutates state · Returns object

Delete an eventhouse

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

Mutates state · Destructive · Returns void

Get the definition of an eventhouse

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

Read-only · Long-running operation · Returns object

Update the definition of an eventhouse

Terminal window
fabio eventhouse update-definition --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Eventhouse ID
--file string No Path to eventhouse properties file
--content string No Inline eventhouse properties content (JSON)

Mutates state · Long-running operation · Returns void