🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

Glimpse.RavenDb

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Glimpse.RavenDb

Adds a RavenDb tab to your Glimpse console that contains profiling information retrieved from RavenDb. Server queries are included in the Glimpse timeline.

3.0.0
NuGet
Version published
Maintainers
1
Created
Source

Glimpse.RavenDb

A RavenDb profiling tool for Glimpse.

There are two ways to configure Glimpse.RavenDb, either directly in code or via the Web.Config file.

Code

Where you create your DocumentStore, usually in Global.asax, pass an instance to the profiler.

protected void Application_Start() { // Do your MVC stuff here...

var store = new DocumentStore();
store.Initialize();
Glimpse.RavenDb.Profiler.AttachTo(store);
Glimpse.RavenDb.Profiler.HideFields("PasswordHash", "PasswordSalt");
Application["MyDocStore"] = store;

}

Web.Config

You can only use web.config if you are storing your instance in the Application dictionary.

Keywords

ravendb

FAQs

Package last updated on 12 Dec 2014

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