Package io.fabric8.kubernetes.client.dsl
Interface TimeTailPrettyLoggable
-
- All Superinterfaces:
Loggable,PrettyLoggable,TailPrettyLoggable
- All Known Subinterfaces:
BytesLimitTerminateTimeTailPrettyLoggable,ContainerResource,PodResource,RollableScalableResource<T>,ScalableResource<T>,TimestampBytesLimitTerminateTimeTailPrettyLoggable
public interface TimeTailPrettyLoggable extends TailPrettyLoggable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TailPrettyLoggablesinceSeconds(int seconds)Get logs after a duration of seconds:TailPrettyLoggablesinceTime(String timestamp)Only return logs after a specific date (RFC3339)-
Methods inherited from interface io.fabric8.kubernetes.client.dsl.Loggable
getLog, getLog, getLogInputStream, getLogReader, watchLog, watchLog, withLogWaitTimeout, withReadyWaitTimeout
-
Methods inherited from interface io.fabric8.kubernetes.client.dsl.PrettyLoggable
withPrettyOutput
-
Methods inherited from interface io.fabric8.kubernetes.client.dsl.TailPrettyLoggable
tailingLines
-
-
-
-
Method Detail
-
sinceTime
TailPrettyLoggable sinceTime(String timestamp)
Only return logs after a specific date (RFC3339)- Parameters:
timestamp- timestamp as string- Returns:
- log operation with PodLogOptions configured
-
sinceSeconds
TailPrettyLoggable sinceSeconds(int seconds)
Get logs after a duration of seconds:- Parameters:
seconds- number of seconds- Returns:
- log operation with PodLogOptions configured
-
-