Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
docker-py
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
docker-py
Commits
4a2db828
Kaydet (Commit)
4a2db828
authored
Eki 01, 2015
tarafından
Viacheslav Boiko
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Support the 'since' option in the 'containers/<id>/logs' endpoint
Signed-off-by:
Viacheslav Boiko
<
v.e.boyko@gmail.com
>
üst
7884ab9f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
49 additions
and
2 deletions
+49
-2
container.py
docker/api/container.py
+13
-1
__init__.py
docker/utils/__init__.py
+1
-1
api.md
docs/api.md
+1
-0
test.py
tests/test.py
+34
-0
No files found.
docker/api/container.py
Dosyayı görüntüle @
4a2db828
import
six
import
warnings
from
datetime
import
datetime
from
..
import
errors
from
..
import
utils
...
...
@@ -163,7 +164,7 @@ class ContainerApiMixin(object):
@utils.check_resource
def
logs
(
self
,
container
,
stdout
=
True
,
stderr
=
True
,
stream
=
False
,
timestamps
=
False
,
tail
=
'all'
):
timestamps
=
False
,
tail
=
'all'
,
since
=
None
):
if
utils
.
compare_version
(
'1.11'
,
self
.
_version
)
>=
0
:
params
=
{
'stderr'
:
stderr
and
1
or
0
,
'stdout'
:
stdout
and
1
or
0
,
...
...
@@ -174,6 +175,17 @@ class ContainerApiMixin(object):
if
tail
!=
'all'
and
(
not
isinstance
(
tail
,
int
)
or
tail
<=
0
):
tail
=
'all'
params
[
'tail'
]
=
tail
if
since
is
not
None
:
if
utils
.
compare_version
(
'1.19'
,
self
.
_version
)
<
0
:
raise
errors
.
InvalidVersion
(
'since is not supported in API < 1.19'
)
else
:
if
isinstance
(
since
,
datetime
):
params
[
'since'
]
=
utils
.
datetime_to_timestamp
(
since
)
elif
(
isinstance
(
since
,
int
)
and
since
>
0
):
params
[
'since'
]
=
since
url
=
self
.
_url
(
"/containers/{0}/logs"
,
container
)
res
=
self
.
_get
(
url
,
params
=
params
,
stream
=
stream
)
return
self
.
_get_result
(
container
,
stream
,
res
)
...
...
docker/utils/__init__.py
Dosyayı görüntüle @
4a2db828
from
.utils
import
(
compare_version
,
convert_port_bindings
,
convert_volume_binds
,
mkbuildcontext
,
tar
,
exclude_paths
,
parse_repository_tag
,
parse_host
,
kwargs_from_env
,
convert_filters
,
create_host_config
,
kwargs_from_env
,
convert_filters
,
datetime_to_timestamp
,
create_host_config
,
create_container_config
,
parse_bytes
,
ping_registry
,
parse_env_file
,
version_lt
,
version_gte
)
# flake8: noqa
...
...
docs/api.md
Dosyayı görüntüle @
4a2db828
...
...
@@ -325,6 +325,7 @@ Sets up an exec instance in a running container.
*
cmd (str or list): Command to be executed
*
stdout (bool): Attach to stdout of the exec command if true. Default: True
*
stderr (bool): Attach to stderr of the exec command if true. Default: True
*
since (UTC datetime or int): Output logs from this timestamp. Default:
`None`
(all logs are given)
*
tty (bool): Allocate a pseudo-TTY. Default: False
*
user (str): User to execute command as. Default: root
...
...
tests/test.py
Dosyayı görüntüle @
4a2db828
...
...
@@ -1439,6 +1439,7 @@ class DockerClientTest(Cleanup, base.BaseTestCase):
)
def
test_log_tail
(
self
):
with
mock
.
patch
(
'docker.Client.inspect_container'
,
fake_inspect_container
):
self
.
client
.
logs
(
fake_api
.
FAKE_CONTAINER_ID
,
stream
=
False
,
...
...
@@ -1453,6 +1454,39 @@ class DockerClientTest(Cleanup, base.BaseTestCase):
stream
=
False
)
def
test_log_since
(
self
):
ts
=
809222400
with
mock
.
patch
(
'docker.Client.inspect_container'
,
fake_inspect_container
):
self
.
client
.
logs
(
fake_api
.
FAKE_CONTAINER_ID
,
stream
=
False
,
since
=
ts
)
fake_request
.
assert_called_with
(
'GET'
,
url_prefix
+
'containers/3cc2351ab11b/logs'
,
params
=
{
'timestamps'
:
0
,
'follow'
:
0
,
'stderr'
:
1
,
'stdout'
:
1
,
'tail'
:
'all'
,
'since'
:
ts
},
timeout
=
DEFAULT_TIMEOUT_SECONDS
,
stream
=
False
)
def
test_log_since_with_datetime
(
self
):
ts
=
809222400
time
=
datetime
.
datetime
.
utcfromtimestamp
(
ts
)
with
mock
.
patch
(
'docker.Client.inspect_container'
,
fake_inspect_container
):
self
.
client
.
logs
(
fake_api
.
FAKE_CONTAINER_ID
,
stream
=
False
,
since
=
time
)
fake_request
.
assert_called_with
(
'GET'
,
url_prefix
+
'containers/3cc2351ab11b/logs'
,
params
=
{
'timestamps'
:
0
,
'follow'
:
0
,
'stderr'
:
1
,
'stdout'
:
1
,
'tail'
:
'all'
,
'since'
:
ts
},
timeout
=
DEFAULT_TIMEOUT_SECONDS
,
stream
=
False
)
def
test_log_tty
(
self
):
m
=
mock
.
Mock
()
with
mock
.
patch
(
'docker.Client.inspect_container'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment