Package io.fabric8.kubernetes.client.dsl
Interface Timeable<T>
-
- All Known Subinterfaces:
BytesLimitTerminateTimeTailPrettyLoggable<W>,ContainerResource<W,I,PI,O,PO,X,T,B,IS,UB>,PodResource<T>,TerminateTimeTailPrettyLoggable<W>,TimestampBytesLimitTerminateTimeTailPrettyLoggable<W>,TimeTailPrettyLoggable<W>
- All Known Implementing Classes:
PodOperationsImpl
public interface Timeable<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TsinceSeconds(int seconds)Get logs after a duration of seconds:TsinceTime(String timestamp)Only return logs after a specific date (RFC3339)
-
-
-
Method Detail
-
sinceTime
T sinceTime(String timestamp)
Only return logs after a specific date (RFC3339)- Parameters:
timestamp- timestamp as string- Returns:
- log operation with PodLogOptions configured
-
sinceSeconds
T sinceSeconds(int seconds)
Get logs after a duration of seconds:- Parameters:
seconds- number of seconds- Returns:
- log operation with PodLogOptions configured
-
-