pub struct HistoricalTask {
pub id: i64,
pub task_id: i64,
pub status: i32,
pub saved_at: NaiveDateTime,
}Expand description
Historical (Corpus, Service) run records
Fields§
§id: i64id of the historical record (task granularity)
task_id: i64foreign key in Tasks(id)
status: i32The historical status of the task
saved_at: NaiveDateTimeWhen was the save request for this historical record made
Implementations§
Source§impl HistoricalTask
impl HistoricalTask
Sourcepub fn retention_stats(
connection: &mut PgConnection,
) -> Result<(i64, Option<NaiveDateTime>), Error>
pub fn retention_stats( connection: &mut PgConnection, ) -> Result<(i64, Option<NaiveDateTime>), Error>
Retention stats for the per-task snapshot store: total rows and the oldest saved_at. This is
the unbounded-growth table (one row per task per save-snapshot), so the admin “manage
historical data” screen surfaces these to decide a retention cutoff.
Sourcepub fn count_before(
connection: &mut PgConnection,
cutoff: NaiveDateTime,
) -> Result<i64, Error>
pub fn count_before( connection: &mut PgConnection, cutoff: NaiveDateTime, ) -> Result<i64, Error>
How many snapshot rows are strictly older than cutoff — the dry-run count shown before a
prune, so the admin sees exactly what a prune would remove.
Sourcepub fn prune_before(
connection: &mut PgConnection,
cutoff: NaiveDateTime,
) -> Result<usize, Error>
pub fn prune_before( connection: &mut PgConnection, cutoff: NaiveDateTime, ) -> Result<usize, Error>
Deletes snapshot rows strictly older than cutoff (retention prune), returning the number
removed. The run summaries (historical_runs) are untouched — only the bulky per-task
snapshots are pruned, so the run history/charts survive while old per-task diffs age out.
Sourcepub fn find_by(
needle_id: i64,
connection: &mut PgConnection,
) -> Result<Vec<Self>, Error>
pub fn find_by( needle_id: i64, connection: &mut PgConnection, ) -> Result<Vec<Self>, Error>
Obtain all historical records for a given task id
Sourcepub fn find_most_recent(
needle_id: i64,
connection: &mut PgConnection,
) -> Result<Option<HistoricalTask>, Error>
pub fn find_most_recent( needle_id: i64, connection: &mut PgConnection, ) -> Result<Option<HistoricalTask>, Error>
Obtain the most recent historical record for a given taskid
Sourcepub fn report_for(
corpus: &Corpus,
service: &Service,
filters: Option<DiffStatusFilter>,
connection: &mut PgConnection,
) -> Result<HistoricalReportOverview, Error>
pub fn report_for( corpus: &Corpus, service: &Service, filters: Option<DiffStatusFilter>, connection: &mut PgConnection, ) -> Result<HistoricalReportOverview, Error>
Prepare a report for diffing the two most recent historical records of all tasks belonging to
a (corpus,service) pair. We do this 100 tasks at a time, starting from the given offset.
The return contract is (id, previous, current)
Sourcepub fn status_change_matrix(
corpus: &Corpus,
service: &Service,
previous_date: Option<NaiveDateTime>,
current_date: Option<NaiveDateTime>,
connection: &mut PgConnection,
) -> Result<StatusChangeMatrix, Error>
pub fn status_change_matrix( corpus: &Corpus, service: &Service, previous_date: Option<NaiveDateTime>, current_date: Option<NaiveDateTime>, connection: &mut PgConnection, ) -> Result<StatusChangeMatrix, Error>
The status-transition matrix between two snapshots of a (corpus, service): how many
tasks moved from each previous status to each current status. Unlike [report_for], it
aggregates in SQL (GROUP BY previous, current), so the result is bounded to one row per
status pair (≤ a few dozen) regardless of corpus size — a corpus with two 1.5M-task snapshots
is summarized without loading millions of historical_tasks rows into the application (the
unbounded-load class of KNOWN_ISSUES R-7/R-8). Returns the available snapshot-date labels
(newest first) and the matrix cells (previous_status, current_status, task_count). Fewer
than two snapshots (or an out-of-range date pair) yields an empty matrix — a normal “nothing
to diff” result, not an error.
Trait Implementations§
Source§impl Clone for HistoricalTask
impl Clone for HistoricalTask
Source§fn clone(&self) -> HistoricalTask
fn clone(&self) -> HistoricalTask
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for HistoricalTask
impl Debug for HistoricalTask
impl Eq for HistoricalTask
Source§impl HasTable for HistoricalTask
impl HasTable for HistoricalTask
Source§impl<'ident> Identifiable for &'ident HistoricalTask
impl<'ident> Identifiable for &'ident HistoricalTask
Source§impl PartialEq for HistoricalTask
impl PartialEq for HistoricalTask
Source§fn eq(&self, other: &HistoricalTask) -> bool
fn eq(&self, other: &HistoricalTask) -> bool
self and other values to be equal, and is used by ==.Source§impl<__DB: Backend, __ST0, __ST1, __ST2, __ST3> Queryable<(__ST0, __ST1, __ST2, __ST3), __DB> for HistoricalTask
impl<__DB: Backend, __ST0, __ST1, __ST2, __ST3> Queryable<(__ST0, __ST1, __ST2, __ST3), __DB> for HistoricalTask
Source§impl<__DB: Backend> QueryableByName<__DB> for HistoricalTask
impl<__DB: Backend> QueryableByName<__DB> for HistoricalTask
impl StructuralPartialEq for HistoricalTask
Auto Trait Implementations§
impl Freeze for HistoricalTask
impl RefUnwindSafe for HistoricalTask
impl Send for HistoricalTask
impl Sync for HistoricalTask
impl Unpin for HistoricalTask
impl UnsafeUnpin for HistoricalTask
impl UnwindSafe for HistoricalTask
Blanket Implementations§
§impl<T> AggregateExpressionMethods for T
impl<T> AggregateExpressionMethods for T
§fn aggregate_distinct(self) -> Self::Outputwhere
Self: DistinctDsl,
fn aggregate_distinct(self) -> Self::Outputwhere
Self: DistinctDsl,
DISTINCT modifier for aggregate functions Read more§fn aggregate_all(self) -> Self::Outputwhere
Self: AllDsl,
fn aggregate_all(self) -> Self::Outputwhere
Self: AllDsl,
ALL modifier for aggregate functions Read more§fn aggregate_filter<P>(self, f: P) -> Self::Outputwhere
P: AsExpression<Bool>,
Self: FilterDsl<<P as AsExpression<Bool>>::Expression>,
fn aggregate_filter<P>(self, f: P) -> Self::Outputwhere
P: AsExpression<Bool>,
Self: FilterDsl<<P as AsExpression<Bool>>::Expression>,
§fn aggregate_order<O>(self, o: O) -> Self::Outputwhere
Self: OrderAggregateDsl<O>,
fn aggregate_order<O>(self, o: O) -> Self::Outputwhere
Self: OrderAggregateDsl<O>,
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSend for T
impl<T> DowncastSend for T
§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
self with key and returns true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.§impl<DB, T> FromSqlRow<Untyped, DB> for Twhere
DB: Backend,
T: QueryableByName<DB>,
impl<DB, T> FromSqlRow<Untyped, DB> for Twhere
DB: Backend,
T: QueryableByName<DB>,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IntoCollection<T> for T
impl<T> IntoCollection<T> for T
§fn into_collection<A>(self) -> SmallVec<A>where
A: Array<Item = T>,
fn into_collection<A>(self) -> SmallVec<A>where
A: Array<Item = T>,
self into a collection.fn mapped<U, F, A>(self, f: F) -> SmallVec<A>where
F: FnMut(T) -> U,
A: Array<Item = U>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> IntoSql for T
impl<T> IntoSql for T
§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the foreground set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red() and
green(), which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg():
use yansi::{Paint, Color};
painted.fg(Color::White);Set foreground color to white using white().
use yansi::Paint;
painted.white();§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the background set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red() and
on_green(), which have the same functionality but
are pithier.
§Example
Set background color to red using fg():
use yansi::{Paint, Color};
painted.bg(Color::Red);Set background color to red using on_red().
use yansi::Paint;
painted.on_red();§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling [Attribute] value.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold() and
underline(), which have the same functionality
but are pithier.
§Example
Make text bold using attr():
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);Make text bold using using bold().
use yansi::Paint;
painted.bold();§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi [Quirk] value.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask() and
wrap(), which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk():
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);Enable wrapping using wrap().
use yansi::Paint;
painted.wrap();§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.
fn clear(&self) -> Painted<&T>
renamed to resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.
§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the [Condition] value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted only when both stdout and stderr are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);