Struct assemblyline_models::datastore::retrohunt::Retrohunt
source · pub struct Retrohunt {Show 18 fields
pub indices: IndexCatagory,
pub classification: ExpandingClassification,
pub search_classification: ClassificationString,
pub creator: String,
pub description: Text,
pub expiry_ts: Option<DateTime<Utc>>,
pub start_group: u32,
pub end_group: u32,
pub created_time: DateTime<Utc>,
pub started_time: DateTime<Utc>,
pub completed_time: Option<DateTime<Utc>>,
pub code: String,
pub raw_query: String,
pub yara_signature: String,
pub errors: Vec<String>,
pub warnings: Vec<String>,
pub finished: bool,
pub truncated: bool,
}Expand description
A search run on stored files.
Fields§
§indices: IndexCatagoryWhich archive catagories do we run on
classification: ExpandingClassificationClassification for the retrohunt job
search_classification: ClassificationStringMaximum classification of results in the search
creator: StringUser who created this retrohunt job
description: TextHuman readable description of this retrohunt job
expiry_ts: Option<DateTime<Utc>>Tags describing this retrohunt job“ Expiry timestamp of this retrohunt job
start_group: u32Earliest expiry group this search will include
end_group: u32Latest expiry group this search will include
created_time: DateTime<Utc>Start time for the search.
started_time: DateTime<Utc>Start time for the search.
completed_time: Option<DateTime<Utc>>Time that the search finished
code: StringUnique id identifying this retrohunt job
raw_query: StringText of filter query derived from yara signature
yara_signature: StringText of original yara signature run
errors: Vec<String>List of error messages that occured during the search
warnings: Vec<String>List of warning messages that occured during the search
finished: boolBoolean that indicates if this retrohunt job is finished
truncated: boolIndicates if the list of hits been truncated at some limit