Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions .github/workflows/deploy-demo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Deploy demo to GitHub Pages

on:
push:
branches: [main]
paths:
- "demo/**"
- ".github/workflows/deploy-demo.yml"
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: pages
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: demo
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
cache-dependency-path: demo/package-lock.json

- run: npm install
- run: npm run build
env:
VITE_BASE_PATH: /LogOctopus/

- uses: actions/upload-pages-artifact@v3
with:
path: demo/dist

deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ LogOctopus automatically collects, stores, and visualises logs and system data f
Built for automated and distributed testing workflows, it captures logs, system events, performance metrics, and command outputs from multiple devices within the context of a single test scenario — making debugging and root cause analysis significantly faster.
Instead of manually gathering logs from different machines after a failed test, LogOctopus centralises all test evidence into one place and exposes it through an interactive web UI and REST API.

## Live Demo

<div align="center">

[![Try the live demo](docs/demo-preview.gif)](https://kkuuba.github.io/LogOctopus/)

*👆 Click the preview above to open the interactive demo*

</div>

## Fast Track

**What is it?** - LogOctopus is an SSH-native test observability platform that collects logs and execution data from multiple remote devices and organises everything per test session or scenario.
Expand Down
14 changes: 14 additions & 0 deletions demo/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LogOctopus — Live Demo</title>
<meta name="description" content="Interactive demo of LogOctopus, a log-collection dashboard, running on fake data with no backend." />
<script src="https://cdn.plot.ly/plotly-2.32.0.min.js"></script>
</head>
<body style="margin:0;background:#09090f;">
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Loading
Loading