Management Endpoints used to allow insight into your applications
Перейти к файлу
Jason Konicki 11e6e2222b Add moved notice to the readme 2019-05-15 09:53:29 -04:00
config follow style rules 2019-03-28 11:38:22 -05:00
src Fix bad merge 2019-04-18 00:29:29 -04:00
test Fix GetPropertySourceDescriptor() - get value from provider instead of root (#59) 2019-04-18 00:25:59 -04:00
.appveyor.yml Updates for latest OpenCensus packages (Unit tests passing) 2019-03-01 11:10:25 -07:00
.gitattributes Initial checkin 2017-08-07 06:33:32 -06:00
.gitignore Initial checkin 2017-08-07 06:33:32 -06:00
.travis.yml build 2.2.0, don't build tags, update sdk used in Travis 2018-10-12 11:49:41 -05:00
CONTRIBUTING.md Create CONTRIBUTING.md 2017-09-15 14:38:12 -04:00
LICENSE URL Cleanup (#47) 2019-03-28 11:21:04 -05:00
LICENSE.md URL Cleanup (#47) 2019-03-28 11:21:04 -05:00
Management.sln Runner for launching Cloud Foundry tasks bundled with the app (#58) 2019-03-27 06:56:54 -05:00
README.md Add moved notice to the readme 2019-05-15 09:53:29 -04:00
nuget.config Updates for latest OpenCensus packages (Unit tests passing) 2019-03-01 11:10:25 -07:00
open_source_licenses.txt URL Cleanup (#47) 2019-03-28 11:21:04 -05:00
stylecop.json update stylecop to use https for apache license in file headers 2019-03-28 11:37:49 -05:00
targetframework.props Enable cross platform compilation of the solution. (#31) 2019-01-02 16:19:22 -05:00
versions.props Initial Support for ASP.NET 2.1.0-rc1 [#157514780] 2018-05-14 13:57:57 -05:00

README.md

.NET Application Management Endpoints

NOTICE: This repository has been relocated as a sub-directory under the Steeltoe repository. All issues and future development will be done under that repository.

This repository contains several management endpoints which can be used to help monitor and manage your applications.

Windows Master (Stable): AppVeyor Master

Windows Dev (Less Stable): AppVeyor Dev

Linux/OS X Master (Stable): Travis Master

Linux/OS X Dev (Less Stable): Travis Dev

.NET Runtime & Framework Support

Like ASP.NET Core, the these endpoint packages are intended to support both .NET 4.6+ and .NET Core (CoreCLR/CoreFX) runtimes.

Where supported the management endpoints are built and unit tested on Windows, Linux and OSX.

Depending on their level of support, the endpoints and samples have been tested on .NET Core 2.0, .NET 4.6.x, and on ASP.NET Core 2.0.0.

Usage

For more information on how to use these components see the online Steeltoe documentation.

Nuget Feeds

All new endpoint development is done on the dev branch. More stable versions of the endpoints can be found on the master branch. The latest prebuilt packages from each branch can be found on one of two MyGet feeds. Released version can be found on nuget.org.

Building Pre-requisites

To build and run the unit tests:

  1. .NET Core SDK 2.0.3+
  2. .NET Core Runtime 2.0.3

Building Packages & Running Tests - Windows

To build the packages on windows:

  1. git clone ...
  2. cd <clone directory>
  3. cd src/<project> (e.g. cd src/Steeltoe.Management.EndpointBase)
  4. dotnet restore
  5. dotnet pack --configuration <Release or Debug>

The resulting artifacts can be found in the bin folder under the corresponding project. (e.g. src/Steeltoe.Management.EndpointBase/bin)

To run the unit tests:

  1. git clone ...
  2. cd <clone directory>
  3. cd test/<test project> (e.g. cd test/Steeltoe.Management.EndpointBase.Test)
  4. dotnet restore
  5. dotnet xunit -verbose

Building Packages & Running Tests - Linux/OSX

To build the packages on Linux/OSX:

  1. git clone ...
  2. cd <clone directory>
  3. cd src/<project> (e.g.. cd src/Steeltoe.Management.EndpointBase)
  4. dotnet restore
  5. dotnet pack --configuration <Release or Debug>

The resulting artifacts can be found in the bin folder under the corresponding project. (e.g. src/Steeltoe.Management.EndpointBase/bin

To run the unit tests:

  1. git clone ...
  2. cd <clone directory>
  3. cd test/<test project> (e.g. cd test/Steeltoe.Management.EndpointBase.Test)
  4. dotnet restore
  5. dotnet xunit -verbose -framework netcoreapp2.0

Sample Applications

See the Samples repository for examples of how to use these packages.