{"id":13594859,"url":"https://github.com/mishankov/web-tail","last_synced_at":"2026-02-21T22:00:54.050Z","repository":{"id":42508257,"uuid":"451495148","full_name":"mishankov/web-tail","owner":"mishankov","description":"📖 Web based log monitoring tool","archived":false,"fork":false,"pushed_at":"2026-02-01T23:13:13.000Z","size":655,"stargazers_count":19,"open_issues_count":11,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-02T08:55:43.963Z","etag":null,"topics":["docker","golang","log","logging","monitoring","real-time","ssh","svelte"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mishankov.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-01-24T14:23:19.000Z","updated_at":"2026-01-09T22:54:20.000Z","dependencies_parsed_at":"2024-06-09T03:42:26.077Z","dependency_job_id":"a4fcfaf7-6fcf-44da-9edf-769778072b47","html_url":"https://github.com/mishankov/web-tail","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/mishankov/web-tail","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mishankov%2Fweb-tail","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mishankov%2Fweb-tail/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mishankov%2Fweb-tail/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mishankov%2Fweb-tail/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mishankov","download_url":"https://codeload.github.com/mishankov/web-tail/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mishankov%2Fweb-tail/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29694781,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T18:18:25.093Z","status":"ssl_error","status_checked_at":"2026-02-21T18:18:22.435Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","golang","log","logging","monitoring","real-time","ssh","svelte"],"created_at":"2024-08-01T16:01:40.111Z","updated_at":"2026-02-21T22:00:54.040Z","avatar_url":"https://github.com/mishankov.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# Web tail\n\n[![CI](https://github.com/mishankov/web-tail/actions/workflows/ci.yml/badge.svg)](https://github.com/mishankov/web-tail/actions/workflows/ci.yml)\n[![CodeFactor](https://www.codefactor.io/repository/github/mishankov/web-tail/badge)](https://www.codefactor.io/repository/github/mishankov/web-tail)\n\nWeb application to view lines from file on local system or on remote server built with [Svelte](https://github.com/sveltejs/svelte)\n\n![](images/image-1.png)\n\n## Installation\n\nDownload and unpack `web-tail-[platform].zip` from [latest release](https://github.com/mishankov/web-tail/releases/latest)\n\nDocker image is also available [here](https://github.com/mishankov/web-tail/pkgs/container/web-tail)\n\n## Configuration\n\nIn unpacked folder edit `web-tail.config.toml` file\n\n- `port` - port that Web tail will run on. Defaults value is `4444`\n- `allowedOrigins` - list of allowed origins for WebSocket connections. Defaults value is [\"*\"] which allows all origins\n- `servers` - reusable servers configuration\n  - `name` - name of server to use in `sources` configs\n  - `host` - host of remote server. Mandatory field for source types `ssh:*`\n  - `port` - port of remote server. Mandatory field for source types `ssh:*`\n  - `username` - username for ssh connection to remote server. Mandatory for source types `ssh:*`\n  - `password` - password to authenticate on remote server. Either this or `privateKeyPath` is mandatory for source types `ssh:*`\n  - `privateKeyPath` - path to file with private key to authenticate on remote server. Either this or `password` is mandatory for source types `ssh:*`\n- `sources` - list of sources to tail lines from\n  - `name` - name of source. Mandatory field\n  - `type` - type of source. Possible values: `local:file`, `local:docker`, `local:openclaw`, `ssh:file`, `ssh:docker`, `ssh:openclaw`. Mandatory field\n  - `path` - path to file. Mandatory field for source types `*:file`\n  - `serverName` - name of a server from `servers` list\n  - `containerId` - Docker container ID. Mandatory field for source types `*:docker`\n  - `host` - host of remote server. Mandatory field for source types `ssh:*`\n  - `port` - port of remote server. Mandatory field for source types `ssh:*`\n  - `username` - username for ssh connection to remote server. Mandatory for source types `ssh:*`\n  - `password` - password to authenticate on remote server. Either this or `privateKeyPath` is mandatory for source types `ssh:*`\n  - `privateKeyPath` - path to file with private key to authenticate on remote server. Either this or `password` is mandatory for source types `ssh:*`\n\n## Usage\n\n![](images/image-2.png)\n\nOptions from left to right:\n\n- Dropdown to select one of sources from `web-tail.config.toml`\n- Search field. Matching results will be selected. Search is case insensitive by default\n- `Filter` toggle. If enabled only lines with matching results are shown\n- `.*` toggle. If enabled treats text in search field as regular expression\n- `Aa` toggle. If enabled makes search case sensitive\n- `Reverse` toggle. If enabled latest lines shown on top\n- Max lines field. How much lines will be shown\n\n\n## Development\n\nSet environment variable `ASSETS=dist/public` before doing `go run ./server` to use preemtively compiled assets\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmishankov%2Fweb-tail","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmishankov%2Fweb-tail","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmishankov%2Fweb-tail/lists"}