Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tragiccode/nservicebus.customchecks.sqlserver
https://github.com/tragiccode/nservicebus.customchecks.sqlserver
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tragiccode/nservicebus.customchecks.sqlserver
- Owner: TraGicCode
- License: apache-2.0
- Created: 2021-07-03T03:00:30.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-14T04:09:38.000Z (about 2 years ago)
- Last Synced: 2024-12-04T00:36:35.915Z (22 days ago)
- Language: C#
- Size: 66.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# NServiceBus.CustomChecks.SqlServer
[![Build status](https://img.shields.io/appveyor/build/TraGicCode/NServiceBus-CustomChecks-SqlServer/master)](https://ci.appveyor.com/project/TraGicCode/NServiceBus-CustomChecks-SqlServer)
[![Nuget](https://img.shields.io/nuget/v/NServiceBus.CustomChecks.SqlServer)](https://www.nuget.org/packages/NServiceBus.CustomChecks.SqlServer)
[![Nuget downloads](https://img.shields.io/nuget/dt/NServiceBus.CustomChecks.SqlServer)](https://www.nuget.org/packages/NServiceBus.CustomChecks.SqlServer)
[![License](https://img.shields.io/github/license/TraGicCode/NServiceBus.CustomChecks.SqlServer.svg)](https://github.com/TraGicCode/NServiceBus.CustomChecks.SqlServer/blob/master/LICENSE)#### Table of Contents
1. [Description](#description)
1. [How to use it](#how-to-use-it)
1. [How it works](#how-it-works)
1. [Development - Guide for contributing](#contributing)## Description
A Reusable NServiceBus CustomCheck to check the availability and connectivity of Sql Server.
## How to use it
In order to begin using this custom check simply create a child class for each instance you would like to perform a healthcheck on.
```c#
namespace Ordering.Endpoint.CustomChecks
{
public class OrderingSqlServerCustomCheck : SqlServerCustomCheck
{
private const string ConnectionString =
"Data Source=(local);Initial Catalog=Ordering;Integrated Security=True";public OrderingSqlServerCustomCheck() : base(ConnectionString, TimeSpan.FromSeconds(10))
{
}
}
}
```## Contributing
1. Fork it ( )
1. Create your feature branch (`git checkout -b my-new-feature`)
1. Commit your changes (`git commit -am 'Add some feature'`)
1. Push to the branch (`git push origin my-new-feature`)
1. Create a new Pull Request