Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sherlock-log

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sherlock-log

> You see, but you do not observe - **Sherlock Holmes**

  • 3.2.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-42.86%
Maintainers
1
Weekly downloads
 
Created
Source

#Sherlock

You see, but you do not observe - Sherlock Holmes

============

Simple tool to visualize reports from logs using Node.js and D3

###Running tests: vagrant up vagrant ssh sudo passwd root #set passowrd: 5tgbnhy6

###DSL: ####Callbacks:

investigate('#Sherlock SAAS QPS simple investigation', function(){
	ask(questions, function(answers){
		var options = {
			servers: answers.servers,
			commands: answers.commands
		}
		verify(options, function(conclusion){

		});
	});
});

investigate('#Sherlock SAAS QPS enhanced investigation', function(){
	ask(questions, function(answers){
		var questionOptions={
			type: "checkbox",
			name: "servers",
			message: "Select servers",
			choices : function() {
				return answwers.servers;
			}
		}
		var complementaryQuestion=new Question(questionOptions);
		ask(complementaryQuestion, function(){
			var options = {
			servers: answers.servers,
			commands: answers.commands
			}
			verify(options, function(conclusion){

			});
		});
	});
});

####Events:

case('#Sherlock SAAS QPS simple investigation with events', function(){
	var question = new Question(questions);
	question.on('answered', function(answers){
		var options = {
			servers: answers.servers,
			commands: answers.commands
		}

		var investigation = new Investigation(options);
		investigation.on('conclusion', function(conclusion){

		});
		investigation.investigate();
	});
	question.ask();
});

###Questions

FAQs

Package last updated on 06 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc