QLattice dashboard
by: Kevin Broløs
Give me all the details
When you've signed up for your QLattice, you can head over to the dashboard, to get a more detailed view of everything.
This is your gateway into everything related to managing your QLattice
.
We already covered accessing your QLattice and the Details
page, but we've yet to talk about snapshots, and how you can us them to back up and restore your QLattice.
Snapshots
Inside the dashboard, you'll find a view to Snapshot
your QLattice
. You can find it through [QLattice_Name] > Snapshots
.
This view allows you to create snapshots
of your QLattice
whenever you feel like it, and you can always restore
a previous version if you accidentally reset it, or ended up in a state you're unsatisfied with.
Of course, you can also do all of this programmatically:
from feyn import QLattice
qlattice = QLattice()
# Returns a snapshot object containing your note, time of snapshotting and id
snapshot = qlattice.snapshots.capture("A little note")
# List all snapshots:
for s in qlattice.snapshots:
print(s.id, s.when, s.note)
# Restore using the id of the snapshot. The instance of the snapshot from previously also works.
qlattice.snapshots.restore(snapshot.id)
Activity Log
The Activity log is also found on the dashboard
, under [QLattice_Name] > Activity Log
. It shows you whenever a user performs an action on your QLattice
. You'll see whenever someone has reset the QLattice
, added or removed registers
, when it has been updated, QGraphs
extracted and if snapshots
have been created or restored.
User Management
On the dashboard
, you also have access to simple user management. This is found under User Admin
. This will allow multiple users to access your dashboard
, and any QLattice
s you have created.
The Overview
This could have gone on the top, but you finally have the Overview
, where you can see metrics for the allocation and usage of all of your QLattices. This can help you see how many of them are utilized, and when.