GithubHelp home page GithubHelp logo

johnvle / logyard Goto Github PK

View Code? Open in Web Editor NEW

This project forked from oslabs-beta/logyard

0.0 0.0 0.0 49.85 MB

A log management and visualization platform

Home Page: https://www.logyard.io/

JavaScript 94.90% CSS 3.70% HTML 0.98% Dockerfile 0.42%

logyard's Introduction

README Banner

About

Built With

JavaScript React ReactRouter Redux Node Express MongoDB Mongoose Vite Docker HTML Markdown NPM TailwindCSS CSS ESLint Prettier Canva Trello Jest Supertest Vitest Cypress Vercel

Introduction

Our mission is to simplify log management for our users. With our custom logging package implemented in your code, alongside the LogYard GUI, you can easily visualize and analyze logs using multiple, customizable graphs based on time and log types. Our platform also offers dynamic log filtering, allowing users to group logs and filter them based on their individual properties. These features aim to make log management a breeze -- helping you monitor and troubleshoot effortlessly.

Features

  • Logging Package

    • Our custom logging packages allow you to record frontend and backend logs and store them safely in a local Docker or MongoDB cloud database.
    • Logs have various customizable attributes:
      • Level ( Options: error, warn, info, http, verbose, debug, silly )
      • Message ( What message do you want to be displayed with this log? )
      • Context ( Allows you to assign relevant information to your log, such as which file or container it came from. )
  • Application

    • See your logs in real time.
    • Sort and filter logs based on level and customizable properties.
    • Save custom filters to your account.
    • Visualize your logs through several graph types. Using filters and time selection, only visualize the logs you need.

Demo Our Product

We created a demo project for you to easily test our product's logging functionality and use our GUI. Follow the steps below in order to properly run the demo.

  1. LogYard

    1. Ensure you have Docker Desktop installed and opened, and that you are signed in with your Docker account.

    2. Clone the LogYard repository using the following terminal command:

      git clone https://github.com/oslabs-beta/LogYard.git

    3. Open the LogYard repo that you just cloned in your terminal and enter the following command lines to properly create and run the Docker image.

      docker build -t logyard .

      docker compose up

    4. Open Docker Dashboard and navigate to Containers.

    5. To open the LogYard application, click on the logyard app_container running on port '3333:3333'.

    6. You should now see LogYard's user sign-in page in your browser (shown below). To sign in as a guest, enter your server password located in your .env file (named 'VITE_USER_PASSWORD'). Or sign up to have access to additional features, such as the ability to save custom log filters.

  2. Demo App

    1. Clone the LogYard demo app's repository using the following terminal command (you can visit the repo here):

      git clone https://github.com/OSP7/LogYard-Demo-App.git

    2. Within the demo app's directory, install package dependencies and run the app using the following terminal commands, in order:

      npm install

      npm run dev

      After following the above steps, the demo app should now be visible on localhost:9000 and the LogYard GUI should remain accessible through your Docker container.

    3. Interacting with the demo app will generate logs that can be seen in the LogYard GUI! Go ahead and give it a try -- filter and visualize these logs!

      We hope you find our product useful. Once you're done, implement the logger package in your own application to view your own logs in our app! (see below)

Use Our Product

In order to start logging in your application and using the GUI, follow the steps below to install the proper dependencies.

1. Logging Packages

Installing packages

  1. Navigate to the directory in which you would like to install our packages. This should be the root directory for your project.

  2. In your terminal, type the following command to install the appropriate packages for frontend and backend logging capabilities.

    npm install logyard logyardbackend

Using packages

  1. Navigate to the specific file that you would like to use the logger in.

  2. At the top of your file, import the appropriate logger using one of the following lines of code:

    • For Frontend Logs:

          import logyard from 'logyard'
    • For Backend Logs:

          import logyardbackend from 'logyardbackend'
           
          // this step is not necessary if using CJS 'require' to import the logger
          const { logyard } = logyardbackend;
  3. Once the logger has been imported, invoke the 'logyard' function with the following argument options and by using the template below.

    • Arguments:

      1. level (Type: String) :

        • 'error', 'warn', 'info', 'http', 'verbose', 'debug', or 'silly'.
      2. message (Type: String) :

        • Any message you wish to be sent with the log.
      3. context(s) (Type: Object) :

        • Key-value pairs for each context you wish to include.
          // Template:
          logyard(
              'level', 
              'message' , 
              { 
                  ContextOneKey : ContextOneValue, 
                  ContextTwoKey : ContextTwoValue,
              } 
          );
          
          // Example:
          logyard(
              'error', 
              'authController.setCookie failure', 
              { 
                  Location: 'controllers/authController', 
                  Server: 6,
                  Etc: 'etc',
              }
          )

2. Setting up .config file

  1. In your project's root directory, create a new directory named 'config'.
  2. Within this new 'config' directory, create a new file titled 'default.json'.
        my_project  
             └─── config
             │    └─── default.json
             └─── node_modules
             │
             └─── src
             │
             └─── server
             │
             other root files...
    
  3. Copy and paste the following code into your newly created 'default.json' file.
        {
            "uri": "mongodb://localhost:8000",
            "level": "silly",
            "dbName": "LogYard"
        }
  4. Optional: Modify these 'default.json' variables to meet your needs.
    • uri: URI for which the back-end logger will connect to. Defaults to the MongoDB in the container.
    • level: Level at which all logs and below will be collected and sent to the database and thus, to the LogYard GUI. All logs collected at default level 'silly'.
      • Hierarchy: silly (Highest), debug, verbose, http, info, warn, error (Lowest)
    • dbName: The name for which you would like your database to be saved under. This must match the VITE_DB_DBNAME in your .env file.

3. LogYard GUI

Note: If you have already installed the GUI from the demo, please ensure you have properly set up your .env file in your project as outlined below.

  1. Ensure you have Docker Desktop installed and opened, and that you are signed in with your Docker account.

  2. Clone the LogYard repository using the following terminal command (you can visit the repo here):

    git clone https://github.com/oslabs-beta/LogYard.git

  3. Navigate to your .env file and configure its properties to you and your application's needs.

    • VITE_USER_PASSWORD - This is the 'server password' used on login.
    • VITE_DB_URI - Database URI that you'd like to connect to. You can use the given MongoDB in the container or put your own MongoDB URI here to have logs and other app information sent there.
    • VITE_DB_DBNAME - The name of your database. This must match 'dbName' in your config/default.json file.
  4. Open the LogYard repo that you just cloned in your terminal and enter the following command lines to properly create and run the Docker image.

    docker build -t logyard .

    docker compose up

  5. Open Docker Desktop and navigate to Containers.

  6. To open the LogYard application, click on the logyard app_container running on port '3333:3333'.

  7. You should now see LogYard's user sign-in page in your browser (shown below). To sign in as a guest, enter your server password located in your .env file (named 'VITE_USER_PASSWORD'). Or sign up to have access to additional features, such as the ability to save custom log filters.

  8. Interacting with your app to invoke your logging functions will populate them in the LogYard application, allowing them to be analyzed, filtered, and visualized!

FAQ

  1. Why do two separate packages exist for logging?

    • A browser application cannot directly connect to a database. Therefore the frontend logger sends logs first to a server that is connected to your database. The backend logger directly connects to the database.
  2. Does my container need to be running in order for the loggers to work?

    • Yes, the container hosts the database, which must be online to to recieve the incoming logs. However, if you only need logs from the backend logger, you can pause the 'app_container' in Docker. This restricts the ability to send logs from the front end, since they use this server as an API.
  3. I can already read my server logs. Why use this service?

    • LogYard provides a central location for accessing, reading, and analyzing logs. As an organization scales, reading logs from more than 2-3 sources quickly becomes a time sink.
  4. Will this work with my distributed compute cluster?

    • LogYard is designed to work with any compute service that can connect to a database.
  5. Can I use this for state replication?

    • LogYard does not provide state replication. It is intended as a lightweight solution for active logging analysis, not a Real User Monitoring (RUM) solution.

Contributing

We hope you enjoy using our product and find it useful!

If you have found a bug or an area that you feel could be improved within our product, please reach out -- or if you'd like, you can create a fork on this repo and contribute to our product yourself! Contributions are vital to the open-source community and all contributions are greatly appreciated!

Following the completion of your outstanding work, if you create a PR, our team will review your code! We thank all of those who contribute toward improving our product's reliability and expanding upon its features.

Tasks for Contribution

  • Improving analysis tools. Current tools provide a simple interface but lack in-depth capabilities.
  • Additional account customization:
    • Current accounts lack any organization features. Managing access to logs could be useful depending on application.
    • A more customizable dashboard and visualization page. Currently, save, load, and delete are used for monitoring.
  • More robust log displays. Currently all logs require a specific layout. A major improvement would be a single location to allow a drop-in replacement for different log models.
  • Improved C3 integrations. C3 is a powerful graphing tool; however, it directly affects the DOM unlike React which uses a virtual DOM. A major task would be to improve the current interface between C3 and React; specifically, creating a more responsive layout for graphs to allow a more customizable visualization page.

Publications

Our Team

Preston Coldwell
Ryan Smithey
Geoffrey Sun
Andy Wagner
Brian Hwang

Acknowledgments

License

Licensed by MIT. See 'MIT License' file for more information.

Support Us

If our product has helped you, or you would like to show your support, please ⭐️ this repository! It helps more than you know!

logyard's People

Contributors

bri-engineer avatar ryansmithey avatar geoffsun2 avatar prestoncoldwell avatar a-c-wagner avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.