Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
milandjurdjevic committed Aug 18, 2024
0 parents commit 41803bc
Show file tree
Hide file tree
Showing 19 changed files with 1,643 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
129 changes: 129 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
name: Main
on:
push:
branches: [ "main" ]
tags:
- 'v*'
pull_request:
branches: [ "main" ]
jobs:
ubuntu-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore
run: dotnet restore src
- name: Build
run: dotnet build src --no-restore --configuration Release
- name: Test
run: dotnet test src --no-build --configuration Release --verbosity normal
- name: Publish
run: dotnet publish src/Analog --configuration Release -p:PublishSingleFile=true --self-contained
- name: Zip
run: zip /home/runner/work/analog/analog-linux-x64 /home/runner/work/analog/analog/src/Analog/bin/Release/net8.0/linux-x64/publish/*
- name: Upload
uses: actions/upload-artifact@v4
with:
name: analog-linux-x64
path: /home/runner/work/analog/analog-linux-x64.zip
windows-build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore
run: dotnet restore src
- name: Build
run: dotnet build src --no-restore --configuration Release
- name: Test
run: dotnet test src --no-build --configuration Release --verbosity normal
- name: Publish
run: dotnet publish src/Analog --configuration Release -p:PublishSingleFile=true --self-contained
- name: Zip
shell: pwsh
run: Compress-Archive -Path D:\a\analog\analog\src\Analog\bin\Release\net8.0\win-x64\publish\* -DestinationPath D:\a\analog\analog-win-x64.zip
- name: Upload
uses: actions/upload-artifact@v4
with:
name: analog-win-x64
path: D:\a\analog\analog-win-x64.zip
macos-build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore
run: dotnet restore src
- name: Build
run: dotnet build src --no-restore --configuration Release
- name: Test
run: dotnet test src --no-build --configuration Release --verbosity normal
- name: Publish
run: dotnet publish src/Analog --configuration Release -p:PublishSingleFile=true --self-contained
- name: Zip
run: zip /Users/runner/work/analog/analog-osx-arm64 /Users/runner/work/analog/analog/src/Analog/bin/Release/net8.0/osx-arm64/publish/*
- name: Upload
uses: actions/upload-artifact@v4
with:
name: analog-osx-arm64
path: /Users/runner/work/analog/analog-osx-arm64.zip
release:
runs-on: ubuntu-latest
if: startsWith(github.event.ref, 'refs/tags/v')
needs: [ubuntu-build, windows-build, macos-build]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Download Build Artifacts
uses: actions/download-artifact@v4
- run: ls ${{ github.workspace }}/analog-osx-x64
- name: Create New Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Analog ${{ github.ref }}
draft: false
prerelease: false
- name: Upload MacOS Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ github.workspace }}/analog-osx-arm64/analog-osx-arm64.zip
asset_name: analog-osx-arm64.zip
asset_content_type: application/zip
- name: Upload Linux Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ github.workspace }}/analog-linux-x64/analog-linux-x64.zip
asset_name: analog-linux-x64.zip
asset_content_type: application/zip
- name: Upload Windows Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ github.workspace }}/analog-win-x64/analog-win-x64.zip
asset_name: analog-win-x64.zip
asset_content_type: application/zip
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.vscode/
.vs/
.idea/
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Analog

A powerful tool for quick and efficient log file analysis, offering robust filtering, searching, and visualization capabilities.

## Getting Started

Parse log file using the default template:
```bash
analog -f /path/to/logfile.log
```

Parse log file using a custom template:
```bash
analog -f /path/to/logfile.log -t custom_template_name
```

## Features
- [x] **Custom Templates**: Create custom templates to parse and analyze log files.
- [ ] **Visualizations**: Generate visualizations to better understand log data.
- [ ] **Filtering**: Filter log data based on specific criteria.
Loading

0 comments on commit 41803bc

Please sign in to comment.