-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1611 from Agenta-AI/improvement-playground-error-…
…message [Enhancement]: Improve playground error message
- Loading branch information
Showing
4 changed files
with
79 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import aiodocker | ||
|
||
|
||
async def retrieve_logs(container_id: str) -> str: | ||
""" | ||
Retrieves and returns the last 10 lines of logs (both stdout and stderr) | ||
for a specified Docker container. | ||
Args: | ||
container_id (str): The docker container identifier | ||
Returns: | ||
the last 10 lines of logs | ||
""" | ||
|
||
async with aiodocker.Docker() as client: | ||
container = await client.containers.get(container_id) | ||
logs = await container.log(stdout=True, stderr=True) | ||
outputs = logs[::-1][:10] | ||
return "".join(outputs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters