All Projects → sourceplusplus → live-platform

sourceplusplus / live-platform

Licence: AGPL-3.0 license
Add breakpoints, logs, metrics, and spans to live production applications

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to live-platform

skywalking-nodejs
The NodeJS agent for Apache SkyWalking
Stars: ✭ 81 (+118.92%)
Mutual labels:  observability, distributed-tracing, skywalking
skywalking-client-js
Client-side JavaScript exception and tracing library for Apache SkyWalking APM.
Stars: ✭ 171 (+362.16%)
Mutual labels:  observability, distributed-tracing, skywalking
skywalking-python
The Python agent for Apache SkyWalking
Stars: ✭ 152 (+310.81%)
Mutual labels:  observability, distributed-tracing, skywalking
skywalking-swck
Apache SkyWalking Cloud on Kubernetes
Stars: ✭ 62 (+67.57%)
Mutual labels:  observability, distributed-tracing, skywalking
skywalking-kong
Kong agent for Apache SkyWalking
Stars: ✭ 17 (-54.05%)
Mutual labels:  observability, distributed-tracing, skywalking
skywalking-rust
Apache SkyWalking Rust Agent
Stars: ✭ 25 (-32.43%)
Mutual labels:  observability, distributed-tracing, skywalking
Skywalking
APM, Application Performance Monitoring System
Stars: ✭ 18,341 (+49470.27%)
Mutual labels:  observability, distributed-tracing, skywalking
uptrace
Open source APM: OpenTelemetry traces, metrics, and logs
Stars: ✭ 1,187 (+3108.11%)
Mutual labels:  observability, distributed-tracing
Applicationinsights Java
Application Insights for Java
Stars: ✭ 172 (+364.86%)
Mutual labels:  observability, distributed-tracing
Skywalking Docker
SkyWalking Docker file archive for all official releases
Stars: ✭ 206 (+456.76%)
Mutual labels:  observability, distributed-tracing
Applicationinsights Home
Application Insights main repository for documentation of overall SDK offerings for all platforms.
Stars: ✭ 221 (+497.3%)
Mutual labels:  observability, distributed-tracing
Applicationinsights Dotnet Server
Microsoft Application Insights for .NET Web Applications
Stars: ✭ 130 (+251.35%)
Mutual labels:  observability, distributed-tracing
Applicationinsights Go
Microsoft Application Insights SDK for Go
Stars: ✭ 113 (+205.41%)
Mutual labels:  observability, distributed-tracing
Zipkin Php
Zipkin instrumentation for PHP
Stars: ✭ 190 (+413.51%)
Mutual labels:  observability, distributed-tracing
Skyapm Dotnet
The .NET/.NET Core instrument agent for Apache SkyWalking
Stars: ✭ 1,268 (+3327.03%)
Mutual labels:  observability, distributed-tracing
Kspan
Turning Kubernetes Events into spans
Stars: ✭ 187 (+405.41%)
Mutual labels:  observability, distributed-tracing
Skywalking Data Collect Protocol
Data Collect Protocols of Apache SkyWalking
Stars: ✭ 49 (+32.43%)
Mutual labels:  observability, distributed-tracing
Skywalking Kubernetes
Apache SkyWalking Kubernetes Deployment Helm Chart
Stars: ✭ 207 (+459.46%)
Mutual labels:  observability, distributed-tracing
Zipkin
Zipkin is a distributed tracing system
Stars: ✭ 14,969 (+40356.76%)
Mutual labels:  observability, distributed-tracing
Sls Dev Tools
Dev Tools for the Serverless World - Issues, PRs and ⭐️welcome!
Stars: ✭ 662 (+1689.19%)
Mutual labels:  debug, observability

License GitHub release Build

Source++ is an open-source live coding platform. Add breakpoints, logs, metrics, and distributed tracing to live production software in real-time on-demand, right from your IDE or CLI.

Powered by Apache SkyWalking, Source++ enhances the software development experience with production debugging and development capabilities. Become a production-aware developer, understand code faster and deeper with developer-native observability technology, safely debug production applications with negligible to minimal overhead, and gain continuous insight into your application as it behaves in its natural environment.

Features

  • Live Instruments
    • Live Breakpoints: Non-Breaking Breakpoints
    • Live Logs: Just-in-Time Logging
    • Live Meters: Real-Time KPI Monitoring
    • Live Spans: User-Domain Tracing
  • Multi-instance/Serverless debugging
  • Role-based access control
  • Instrument conditionals
  • Instrument TTL, sampling, rate limiting
  • Feedback whitelist/blacklist
  • PII redaction

Quickstart

Docker docker-compose (macOS/Linux/Windows)   👈  recommended   (click to expand)
  1. Install Docker and Docker Compose on your system (if not already installed).
  2. Download the docker-compose.yml file into a new empty directory (can be anywhere).
    mkdir ~/spp-platform && cd ~/spp-platform
    curl -O 'https://raw.githubusercontent.com/sourceplusplus/sourceplusplus/master/docker/docker-compose.yml'
  3. Start services.
    docker-compose up
Docker docker (macOS/Linux/Windows)
  1. Install Docker on your system (if not already installed).
  2. Start Live Platform (Live Dashboard available at https://127.0.0.1:12800)
    docker run -d --name=spp-platform -p 11800:11800 -p 12800:12800 sourceplusplus/spp-platform

Get Started

Compiling Project

Follow this document.

Documentation

The Source++ documentation is available here.

Directory Structure

├── demos                     # Feature demonstrations
    ├── groovy                # Groovy demo
    ├── java                  # Java demo
    ├── kotlin                # Kotlin demo
    ├── nodejs                # Node.js demo
    └── python                # Python demo
├── docker                    # Docker setup files
    ├── e2e                   # End-to-end testing environment
    └── spp-platform          # Live coding server image
├── documentation             # Live coding documentation
├── interfaces                # Live coding clients
    ├── cli                   # Command-line interface
    └── jetbrains             # JetBrains IDE plugin
├── platform                  # Live coding server
    ├── bridge                # Bridge clients to platform
    ├── common                # Common platform code
    ├── core                  # Core platform code
    ├── dashboard             # Live Dashboard
    ├── processor             # Observability data processors
        ├── live-instrument   # Live Instrument processor
        └── live-view         # Live View processor
    └── storage               # Platform persistent memory
├── probes                    # Live coding probes
    ├── jvm                   # JVM support
    ├── nodejs                # Node.js support
    └── python                # Python support
└── protocol                  # Communication protocol

License

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Please see the LICENSE file in our repository for the full text.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].