csainty / Glimpse.RavenDb

RavenDb Profiling plugin for Glimpse

Home Page:http://csainty.github.com/Glimpse.RavenDb

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Glimpse.RavenDb is a RavenDb profiling plugin for Glimpse.

###Status As I don't currently use RavenDB in production, this plug-in is largely abandoned. I'll make occasional updates when it is interesting to me, but I encourage you to fork it if it is critical for your team.

###Install There are two ways to hook your RavenDb DocumentStore into the plugin.

  1. Explicitly via Glimpse.RavenDb.Profiler.AttachTo()
  2. Web.Config via the Glimpse.RavenDb.DocumentStoreApplicationKey AppSetting.

You can also filter senstive data out of your documents by either

  1. Calling Glimpse.RavenDb.Profiler.HideFields()
  2. Adding a Glimpse.RavenDb.HiddenFields AppSetting.

###Example DocumentStore Creation

var store = new DocumentStore();
store.Initialize();
Application["MyDocStore"]= store;

###Explicit

Glimpse.RavenDb.Profiler.AttachTo(store);
Glimpse.RavenDb.Profiler.HideFields("PasswordHash", "PasswordSalt");

###Web.Config

<appSettings>
	<add key="Glimpse.RavenDb.DocumentStoreApplicationKey" value="MyDocStore" />
	<add key="Glimpse.RavenDb.HiddenFields" value="PasswordHash,PasswordSalt" />
</appSettings>

###Learn More

RavenDb - http://www.ravendb.net
Glimpse - http://www.getglimpse.com
Chris Sainty - http://blog.csainty.com | @csainty

About

RavenDb Profiling plugin for Glimpse

http://csainty.github.com/Glimpse.RavenDb

License:MIT License


Languages

Language:C# 99.8%Language:Shell 0.2%