You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
We are hosted Self-hosted-runners on EKS cluster.
I see that workflow action logs are available in /_diag/pages folder. Tried to mount the folder onto the host path, but strangely, only the empty files get mounted. But, if I create a file with content in the same folder, that gets mounted. Is there any difference in the files mounted with logs? also Please suggest ways to export the logs to datadog as the pods are ephemeral.
GitHub runner logs in the _diag directory may be created by the runner process and not flushed immediately, or they may be opened with special access modes that don’t ensure immediate content availability over a volume mount. Content written by the runner could be delayed, virtualized, or flushed only at process exit, especially if the process uses various buffering or locking mechanisms.
All log files within the _diag directory can be imported by Datadog, provided the agent configuration is set up to tail every relevant file type (such as logs, pages, and any specific diagnostic outputs). There is no technical limitation preventing Datadog from collecting multiple log formats, and the agent’s configuration can include glob patterns that match all files, for example: /actions-runner/_diag/*.*
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hi,
We are hosted Self-hosted-runners on EKS cluster.
I see that workflow action logs are available in /_diag/pages folder. Tried to mount the folder onto the host path, but strangely, only the empty files get mounted. But, if I create a file with content in the same folder, that gets mounted. Is there any difference in the files mounted with logs? also Please suggest ways to export the logs to datadog as the pods are ephemeral.
from runner:

From host (hostPath):
All reactions