An open API service indexing awesome lists of open source software.

https://github.com/salesforce/refocus-collector


https://github.com/salesforce/refocus-collector

refocus

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

[![Coverage Status](https://coveralls.io/repos/github/salesforce/refocus-collector/badge.svg?branch=master)](https://coveralls.io/github/salesforce/refocus-collector?branch=master)

# refocus-collector

Note: this repository is infrequently maintained.

### Installation

Prerequisite: NPM and Node.js

* Install via Git Clone
* ```git clone https://github.com/salesforce/refocus-collector.git```
* ```cd refocus-collector```
* ```npm install```
* ```npm link```
* try command ```refocus-collector``` or ```refocus-collector --help```

Usage: ```refocus-collector [command] [options]```

### Commands

Start collector for name, refocus url, API token, proxy for refocus and proxy for data source. refocusProxy and dataSourceProxy are optional arguments
start --collectorName --refocusUrl --accessToken --refocusProxy --dataSourceProxy

Stop given collector
stop --collectorName --refocusProxy

Show status of collector
status --collectorName --refocusProxy

Deregister given collector
deregister --collectorName --refocusProxy

Reregister given collector. refocusProxy is an optional argument
reregister --collectorName --refocusUrl --accessToken --refocusProxy

Display help for [cmd]
help [cmd]

Options:

-n, --collectorName specify the name of the collector
-h, --help output usage information
-V, --version output the version number

Examples:

$ refocus-collector --help
$ refocus-collector start --collectorName=PRD_Collector_12345 --refocusUrl=https://refocus.foo.com --accessToken=eygduyguygijfdhkfjhkfdhg --refocusProxy=http://abcproxy.com --dataSourceProxy=http://xyzproxy.com
$ refocus-collector stop --collectorName=PRD_Collector_12345
$ refocus-collector status --collectorName=PRD_Collector_12345
$ refocus-collector deregister --collectorName=PRD_Collector_12345
$ refocus-collector reregister --collectorName=PRD_Collector_12345 --refocusUrl=https://refocus.foo.com --accessToken=eygduyguygijfdhkfjhkfdhg --refocusProxy=http://abcproxy.com

-----

- [Introduction to Collectors](docs/pages/collectorintro.md)
- [Introduction to Sample Generators](docs/pages/samplegenintro.md)

-----

# Version History
- 1.1.1
- Simplify the heartbeat payload - send up all the process info, not just delta from last heartbeat
- 1.2.0
- Reuse authentication token among generator clones until it expires.