Giter Club home page Giter Club logo

sidekick's Introduction

Sidekick Licence  Sidekick Discord Channel  Foresight monitoring  Sidekick Sandbox 

Sidekick - Like Chrome DevTools for your backend, now open source | Product Hunt
Table of Contents
  1. What is Sidekick?
  2. Why Sidekick?
  3. Features
  4. Who should use Sidekick?
  5. How does Sidekick work?
  6. Getting Started
  7. Sidekick Ecosystem
  8. Contributing
  9. Questions? Problems? Suggestions?
  10. Contact

What is Sidekick?

Sidekick is a live application debugger that lets you troubleshoot your applications while they keep on running.

Add dynamic logs and put non-breaking breakpoints in your running application without the need of stopping & redeploying.

Sidekick Open Source is here to allow self-hosting and make live debugging more accessible. Built for everyone who needs extra information from their running applications.

Sidekick Actions:

Sidekick has two major actions; Tracepoints & Logpoints.

  • A tracepoint is a non-breaking remote breakpoint. In short, it takes a snapshot of the variables when the code hits that line.
  • Logpoints open the way for dynamic(on-demand) logging to Sidekick users. Replacing traditional logging with dynamic logging has the potential to lower stage sizes, costs, and time for log searching while adding the ability to add new logpoints without editing the source code, redeploying, or restarting the application.

Supported runtimes: Java, Python, Node.js

To learn more about Sidekick features and capabilities, see our web page.

(back to top)

Why Sidekick?

You can use Sidekick in any stage of your development for your live debugging & logging needs. With Sidekick you can:

  • Debug your remote application (monoliths or microservices on Kubernetes, Docker, VMs, or Local) and collect actionable data from your remote application.
  • Add logs to your production apps without redeploying or restarting
  • Cut your monitoring costs with on-demand & conditional logpoints & tracepoints
  • On-board new developers by showing how your apps work using real-time data.
  • Observe Event-Driven Systems with ease
  • Programmatically control where and when you collect data from your applications
  • Either use Sidekick's Web IDE, VS Code & IntelliJ IDEA extensions to control your Sidekick Actions or use headless clients to bring Sidekick to your workflow in any way you want!
  • Evaluate the impact of an error on applications with integrated distributed tracing.
  • Collaborate with your colleagues by sharing snapshots taken by Sidekick.
  • Reduce the time spent context-switching between different tools.

All these with almost no overhead. PS: Check out our benchmark blogs

(back to top)

Features

  • Conditions & custom hit limits for your logpoints and tracepoints -> collect only what you need
  • Mustache powered expression system for logpoints -> easily add variable data to your logs context
  • Customizable agents -> configure how your agents work, define depth and frame numbers
  • Aggregate your collected data with Thundra APM and Open-telemetry traces
  • Collect errors automatically and send them to your target of choice (will be available at 30th Aug)
  • Define custom data redaction functions to control what is being collected (Node.js only)
  • Control your logpoints and tracepoints using programmatically
  • Work with your collected data in your way using Sidekick clients

(back to top)

Who should use Sidekick?

While utilizing log data seems the most obvious choice for debugging a remote application, Sidekick provides an extra edge with a seamless debugging experience that is similar to debugging an application on your local environment.

Whether you're a developer, testing software engineer, or QA engineer, Sidekick is here to help you find the root cause of the errors.

(back to top)

How does Sidekick work?

Sidekick consists of 3 layers; The broker is the central unit of Sidekick. It controls all the data flow between clients and agents. This very repository contains the Sidekick broker.

Agents are the layer where Sidekick actions meet with your applications. Agents deployed with your software lets you collect snapshot data and generate dynamic logs without modifying your code. Agents get orders from clients and start listening to the targeted lines with given properties. Then whenever your code hits a logpoint or a tracepoint, agents collect stack & log data and send them to the clients via the broker. Currently, we have agents for Java, Python & Node.js runtimes.

Clients let you interact with the agents. They send commands to agents via the broker and let you control your tracepoints & logpoints. Clients come in many different ways:

  • The first one is Sidekick Web IDE, which you can use with our SaaS & on-prem versions, it lets you collaborate with other developers, and control your agents, workspaces & users from your browser. Since it is a web app, it does not require any installation. To learn more about Sidekick SaaS & On-prem features and capabilities, see our web page.
  • Secondly, we have our IDE extensions. They enable you to control your agents with the comfort of your IDE. Currently, we have extensions for Visual Studio Code & IntelliJ IDEA. Check out the Clients section below.
  • Last but not least, you can also use Sidekick with a headless approach. Sidekick Rest API lets you apply CRUD operations over logpoints & tracepoints via HTTP protocol and other clients like Sidekick Node.js Client lets you control your agents programmatically and make use of your collected data using code.

(back to top)

Getting Started

The simplest way to use Sidekick is to create an account on Sidekick Cloud. For the self-hosted version, you can either build Sidekick yourself or use our Docker image.

Note: Make sure docker daemon is running.

Running Sidekick using our Docker image

  1. Configure Environment Variables

    1. Go to the docker folder under the project
    2. Open .env file via any text editor
      1. Set your secret token (you can set any value, this will be your master key)
        1. API_TOKEN, BROKER_CLIENT_AUTHTOKEN and BROKER_TOKEN must be the same, otherwise, you can’t connect your apps and your client
      2. Set MySQL secrets
        1. Set MySQL root password (MYSQL_ROOT_PASSWORD)
        2. Set MySQL user (MYSQL_USER, SPRING_DATASOURCE_USERNAME)
        3. Set MySQL password (MYSQL_PASSWORD, SPRING_DATASOURCE_PASSWORD)
  2. Running Application Stack

    • Go to the docker folder under the project

    • Run command docker-compose up -d and wait for a minute

    • App is ready

    • You can connect to the broker using the url

      ws://<your-server-hostname-or-ip>:7777

    • You can see the API's swagger interface at

      http://<your-server-hostname-or-ip>:8084/swagger-ui.html

Building Sidekick

  1. Build Service Images

    1. Build Sidekick Broker Image
      1. Go to sidekick/sidekick-broker-app folder under project
      2. Execute release.sh
    2. Build Sidekick Api Image
      1. Go to sidekick/sidekick-api folder under project
      2. Execute release.sh

Now that your broker is ready, you need to install your agents & clients to start using Sidekick. Check out them below.

To learn more see our docs.

(back to top)

Sidekick Ecosystem

Documentation

(back to top)

Agents

Check out docs to learn how you can use agents with Sidekick Open Source!

Note: Agents are going open-source too! ETA: 30th of Aug

(back to top)

Clients

Check out docs to learn how you can use clients with Sidekick Open Source!

  • VSCode Extension (Python & Node.js):
  • IntelliJ IDEA (Java):
  • Sidekick Node.js Client:

    Sidekick Node Client opens up a new & headless way to use Sidekick. It allows you to both use custom ingest functions for the tracepoint or logpoint events and put/edit/delete your tracepoints/logpoints easily using code.

      Note: This can be used with agents from all runtimes.
    
  • REST API

    Sidekick REST API Doc

(back to top)

Usage Examples

Check out docs for more!

(back to top)

Sidekick Recipes

  1. Ingest your Sidekick logs & snapshots to Loki. https://github.com/boroskoyo/sidekick-loki

    Related blog post: Sidekick Recipes #2: Send logs to Loki -Add missing logs to your running microservices. Easy as 1–2–3

  2. Send your collected tracepoint & logpoint events to Elasticsearch https://github.com/boroskoyo/sidekick-elastic

    Related blog post: Sidekick Recipes #1: Elasticsearch Ingest

(back to top)

Recent Publications

(back to top)

Contributing

Checkout CONTRIBUTING.md

(back to top)

Questions? Problems? Suggestions?

To report a bug or request a feature, create a GitHub Issue. Please ensure someone else has not created an issue for the same topic.

(back to top)

Contact

Reach out on the Discord. A fellow community member or Sidekick engineer will be happy to help you out.

(back to top)

sidekick's People

Contributors

boroskoyo avatar suleymanbarman 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.