tom redfern
tom redfern

Reputation: 31760

How to query raven db for nservicebus subscriptions

We are upgrading all our NSB 2.6 endpoints to use 3.0. I am upgrading our publisher and am assuming that subscriptions are now stored in raven DB? If so what is the easiest way to see this information?

(complete raven newbie)

When I run http://localhost:8080 I can see the Raven management studio. In the default database there's a document for my endpoint. The contents of this document are

{
  "Settings": {
    "Raven/DataDir": "~\\Tenants\\MyEndpointName"
  }
}

Is this where I would be able to see subscriptions?

Thanks

Upvotes: 1

Views: 714

Answers (1)

Andreas Öhlund
Andreas Öhlund

Reputation: 5273

They are stored in a separate database named after your endpoint. Click the Databases dropdown and select the appropriate db. In this case "MyEndpointName"

Upvotes: 2

Related Questions