You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By allowing users to drag-and-drop/open non-rrd files in the UI, we've effectively introduced a new logging source (where logging source is broadly defined as creating a store), but we haven't reflected that in the StoreSource enum:
pubenumStoreSource{Unknown,/// The official Rerun C Logging SDKCSdk,/// The official Rerun Python Logging SDKPythonSdk(PythonVersion),/// The official Rerun Rust Logging SDKRustSdk{rustc_version:String,llvm_version:String,},/// Loading a file directly from disk via the CLI.FileFromCli{rustc_version:String,llvm_version:String,},/// Perhaps from some manual data ingestion?Other(String),}
We're missing a FileFromUI entry:
/// Loading a file directly from the UI (open or drag-and-drop).////// Only relevant for non-rrd files.FileFromUi{viewer_version:String,},
Loading a jpeg through the UI should resulting in store_source=FileFromUi and data_source=File.
The text was updated successfully, but these errors were encountered:
By allowing users to drag-and-drop/open non-rrd files in the UI, we've effectively introduced a new logging source (where logging source is broadly defined as creating a store), but we haven't reflected that in the
StoreSource
enum:We're missing a
FileFromUI
entry:Loading a jpeg through the UI should resulting in
store_source=FileFromUi
anddata_source=File
.The text was updated successfully, but these errors were encountered: