Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

logger-app

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

logger-app

A self-hosted application for remotely watching log files through a web UI.

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
23
increased by109.09%
Maintainers
1
Weekly downloads
 
Created
Source

Logger

Future Features

  • Remote groups
  • Access Control lists
  • Configurable log output font-size

Performance Considerations

It took 10 minutes for a log to render a change from 3,500 to 12,100 log lines where the the new 8,600 lines where produced within a 1 minute burst. Another log was also active throughout this 10 minute period which had around 800 before the burst and 1,300 after the app finished rendering the burst.

Render time between log output page changes remained under/around 1 to 2 seconds.

Another browser was watching the slower log throughout this test and its performance was unaffected.

To Do

Essential Improvements

Removal of console output on client-side code or a Log Level management tool.

COMPONENTDIDUPDATE tracker on everythinggggggg.

Normalize state structure for more efficient updates.

Compute derived data such as active logs using Reselect.

Unassigned Features

Config option to use real or fake websockets (for internal proxies)

Regex based search boxes

Highlight matched text on searched pages

Parallax effect on 404 page

Disconnect all button on Dashboard page.

Download log file

Download current log output (generate on client-side using base64 encoding function download(filename, text) { var element = document.createElement('a'); element.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(text)); element.setAttribute('download', filename);

element.style.display = 'none';
document.body.appendChild(element);

element.click();

document.body.removeChild(element);

} )

Backtrack X amount of lines when starting to tail log

Reconnect socket connections automatically, toast errors

Release 0

Make everything required, and defer rendering of Page components until state has been loaded

Release 1

Management of groups and logs through UI

Release 2

Addition of optional user auth

Management of users through UI

Show member users on group page (if admin)

Release 3

Addition of remote log groups

  • With SSH key or password access?
  • Maybe split SSH keys into later release

Release 4

Log level matching, analysis view and output filtering

Syntax highlighting

Management through UI

Release 5

Admin status per group, users can add people/logs to a group if they are a admin of it

Done

Active Logs nav section doesn't shrink after has had logs closed from it.

Add active lists groups pages.

Add no logs indicator to group pages and nav groups.

Add full logs list groups to dashboard page.

Clear hasNew when navigating to log output page, currently on happens if you are on log output page and a new line comes in.

Add functionality to clear output button

Add new indicator state for when log is inactive but is holding log output

Potential bug where output sits in paused log buffer, then the user stops watching, starts again, then paused and then starts again. The stale output from earlier will be added to the main output in the wrong position.

Dashboard list filtering.

Nav section overflow scroll management.

No logs matching search filter indicator on group pages and dashboard page.

Add dynamic title tag based on current page.

Sticky header on group pages when they overflow.

Nav group list is cut off at large list lengths.

Add focus highlights to buttons and anchors for keyboard based nav.

  • Includes: Nav a and button tags, search inputs, group logs list items, log page buttons

Skip over closed nav groups when navigating using keyboard.

Extend search filter to log file path.

Keywords

FAQs

Package last updated on 18 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc