Skip to content

Beacon server for Pharo utilizes JSON RPC for collecting signals from remote systems.

License

Notifications You must be signed in to change notification settings

grype/Beacon-Server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Beacon-Server

Server for collecting Beacon signals from remote clients in Pharo.

Installation

Metacello new
  baseline: 'BeaconServer';
  repository: 'github://grype/Beacon-Server';
  load.

Usage

Create and start an instance of BeaconServer and an instance of SignalLogger, and you're all set.

server := BeaconServer new.

"Start server on port 4000"
server startOn: 4000. 

"Start a logger"
logger := MemoryLogger instance.
logger start.
logger inspect.

"When done, stop the server"
server stop.

How does it work?

BeaconServer utilizes a JRPC server for capturing Beacon signals from remote clients in JSON format. It also extends Beacon's existing hierarchy of signals with remote equivalents that capture information about the origin of the signal and provide special handling for things like stack traces. This makes it possible to capture arbitrary signals from other, non-Pharo based clients.

About

Beacon server for Pharo utilizes JSON RPC for collecting signals from remote systems.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published