2020-08-12 15:46:50 +00:00
|
|
|
# system
|
2020-08-11 10:33:21 +00:00
|
|
|
import logging
|
|
|
|
|
2020-08-12 15:46:50 +00:00
|
|
|
# local
|
2020-08-13 09:32:54 +00:00
|
|
|
from ._subcommand import ServiceCommand
|
2020-08-12 14:43:13 +00:00
|
|
|
from .utils.dockercommand import DockerCommand
|
2020-08-08 17:41:11 +00:00
|
|
|
|
|
|
|
|
2020-08-13 09:32:54 +00:00
|
|
|
class LogsCommand(ServiceCommand):
|
2020-08-10 13:48:15 +00:00
|
|
|
def __init__(self):
|
|
|
|
super().__init__(
|
|
|
|
'logs',
|
2020-08-11 10:33:21 +00:00
|
|
|
description="Show logs of a project or service(s) of a project"
|
2020-08-10 14:36:05 +00:00
|
|
|
)
|
|
|
|
|
2020-08-13 09:32:54 +00:00
|
|
|
# -f switch: Follow logs
|
2020-08-11 12:03:00 +00:00
|
|
|
self._sub_parser.add_argument(
|
2020-08-10 15:40:56 +00:00
|
|
|
'-f', '--follow', action='store_true',
|
2020-08-10 14:36:05 +00:00
|
|
|
help="output appended data as log grows"
|
2020-08-10 09:24:39 +00:00
|
|
|
)
|
2020-08-08 17:41:11 +00:00
|
|
|
|
2020-08-11 12:03:00 +00:00
|
|
|
def run(self, config, args):
|
|
|
|
project_name = args.project
|
2020-08-10 15:40:56 +00:00
|
|
|
project_marker = config['markers:project']
|
|
|
|
project_dir = f'{project_name}{project_marker}'
|
|
|
|
|
|
|
|
environment = {
|
2020-08-11 10:33:21 +00:00
|
|
|
'KIWI_HUB_NAME': config['network:name'],
|
2020-08-10 15:40:56 +00:00
|
|
|
'COMPOSE_PROJECT_NAME': project_name
|
|
|
|
}
|
|
|
|
|
2020-08-11 12:03:00 +00:00
|
|
|
process_args = ['logs', '-t']
|
|
|
|
if args.follow:
|
|
|
|
process_args = [*process_args, '-f', '--tail=10']
|
2020-08-10 14:36:05 +00:00
|
|
|
|
2020-08-11 12:03:00 +00:00
|
|
|
if args.services:
|
|
|
|
process_args = [*process_args, *args.services]
|
2020-08-11 10:33:21 +00:00
|
|
|
|
|
|
|
try:
|
2020-08-11 12:03:00 +00:00
|
|
|
if args.follow:
|
2020-08-11 10:33:21 +00:00
|
|
|
DockerCommand('docker-compose').run(
|
2020-08-11 12:03:00 +00:00
|
|
|
process_args,
|
2020-08-11 10:33:21 +00:00
|
|
|
cwd=project_dir, env=environment
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
DockerCommand('docker-compose').run_less(
|
2020-08-11 12:03:00 +00:00
|
|
|
process_args,
|
2020-08-11 10:33:21 +00:00
|
|
|
cwd=project_dir, env=environment
|
|
|
|
)
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
logging.debug("Subprocess aborted.")
|
|
|
|
print()
|