Skip to content

Commit

Permalink
handle servicebus createapplcationlogbroadcast
Browse files Browse the repository at this point in the history
Release v1.0.7
  • Loading branch information
Danny Logsdon committed May 18, 2024
1 parent 5ae095f commit fa224b1
Show file tree
Hide file tree
Showing 107 changed files with 816 additions and 1,437 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.0.6</Version>
<Version>1.0.7</Version>
<Description>ServiceBricks is the cornerstone for building a microservices foundation. Visit http://ServiceBricks.com to learn more.</Description>
<AssemblyTitle>ServiceBricks.Logging.AzureDataTables</AssemblyTitle>
<Authors>holomodular</Authors>
Expand Down Expand Up @@ -40,7 +40,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="ServiceBricks.Storage.AzureDataTables" Version="1.0.6" />
<PackageReference Include="ServiceBricks.Storage.AzureDataTables" Version="1.0.7" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ServiceBricks.Logging.Debug\ServiceBricks.Logging.Debug.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,12 @@ public class LoggingAzureDataTablesModule : IModule
{
public LoggingAzureDataTablesModule()
{
AdminHtml = string.Empty;
Name = "Logging AzureDataTables Brick";
Description = @"The Logging AzureDataTables Brick implements the Azure Data Tables provider.";
AutomapperAssemblies = new List<Assembly>()
{
typeof(LoggingAzureDataTablesModule).Assembly
};
}

public string Name { get; }
public string Description { get; }
public string AdminHtml { get; }
public List<IModule> DependentModules { get; }
public List<Assembly> AutomapperAssemblies { get; }
public List<Assembly> ViewAssemblies { get; }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.0.6</Version>
<Version>1.0.7</Version>
<Description>ServiceBricks is the cornerstone for building a microservices foundation. Visit http://ServiceBricks.com to learn more.</Description>
<AssemblyTitle>ServiceBricks.Logging.AzureDataTables</AssemblyTitle>
<Authors>holomodular</Authors>
Expand All @@ -28,7 +28,7 @@
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ServiceBricks.Logging" Version="1.0.6" />
<PackageReference Include="ServiceBricks.Storage.AzureDataTables" Version="1.0.6" />
<PackageReference Include="ServiceBricks.Logging" Version="1.0.7" />
<PackageReference Include="ServiceBricks.Storage.AzureDataTables" Version="1.0.7" />
</ItemGroup>
</Project>
62 changes: 50 additions & 12 deletions src/V1/ServiceBricks.Logging.AzureDataTables/docs/readme.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,58 @@
# Welcome to SERVICE BRICKS
![ServiceBricks Logo](https://github.com/holomodular/ServiceBricks/blob/main/Logo.png)

Service Bricks is the cornerstone for building a microservice foundation.
Visit http://ServiceBricks.com to learn more.
[![NuGet version](https://badge.fury.io/nu/ServiceBricks.svg)](https://badge.fury.io/nu/ServiceBricks)
![badge](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/holomodular-support/bdb5c7c570a7a88ffb3efb3505273e34/raw/servicebricks-codecoverage.json)
[![License: MIT](https://img.shields.io/badge/License-MIT-389DA0.svg)](https://opensource.org/licenses/MIT)

# ServiceBricks: The Foundation for Microservices

## Overview

Service Bricks is a modular, service-oriented architecture (SOA) for building microservices using .NET.
It provides a templated design that exposes a standardized API that works the same, regardless of the backend storage provider.
Welcome to [ServiceBricks](https://ServiceBricks.com), your cornerstone for building a robust microservices foundation.
ServiceBricks is a powerful platform designed to streamline the development, deployment, and maintenance of distributed systems.
Leveraging Domain-Driven Design (DDD), Event-Driven Architecture (EDA), and a host of advanced features, ServiceBricks empowers teams to create scalable, customizable services tailored to specific business domains.

## Why ServiceBricks?

* **Architectural Excellence:** Provides the core architectural patterns, implementation, standardization, and governance for your microservices.
* **Storage Agnostic:** Exposes a storage platform-agnostic model and repository-based API, supporting both relational (SQL) and document (NoSQL) databases.
* **Seamless Integration:** Switch storage providers without impacting microservice operations.


## Major Features

* **Generics:** Extensive use of generics, allowing the compiler to generate most of the required code.
* **REST API Services:** Templated, repository-based services for quickly exposing standard CRUD methods or custom methods.
* **[ServiceQuery Integration](https://github.com/holomodular/ServiceQuery):** Supports standardized, polyglot data querying for SQL and NoSQL databases.
* **[Business Rule Engine](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/BusinessRuleEngine.md):** Polymorphic techniques to build reusable business logic.
* **[Domain-Driven Design (DDD)](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/FlowOfData.md) & [Event-Driven Architecture (EDA)](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/EventDrivenArchitecture.md):** Customize business logic for any supported object and method.
* **[Background Processing](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/BackgroundTasks.md):** Supports asynchronous processes, tasks, and rules.
* **[SQL and NoSQL Database Support](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/SupportedDatabaseEngines.md):** Works standard with Azure Data Tables, Cosmos DB, InMemory, MongoDB, Postgres, SQLite, SQL Server or other providers.
* **[Service Bus Engine](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/BroadcastsAndServiceBus.md):** Supports broadcasts of system data with InMemory and Azure Service Bus.
* **[Classic or Modern REST API Design](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/ClassicVsModernRestApi.md):** Choose between Classic or Modern modes, with various response formats.
* **[NuGet Packages](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/NuGet.md):** Quickly build new services and applications.
* **Testing Framework:** Comprehensive Xunit test framework for robust unit and integration testing.
* **Open Source:** Only three dependencies (AutoMapper, Newtonsoft.Json, and ServiceQuery), all MIT licensed.
* **AI Integration:** Training AI to build new ServiceBricks microservices. Updates coming soon!


## Getting Started with Examples

Explore our [ServiceBricks-Examples](https://github.com/holomodular/ServiceBricks-Examples) repository for practical examples on hosting and deploying your ServiceBricks foundation. From single, monolithic web applications to containerized web applications, these examples provide the building blocks to create and scale your foundations quickly.

## Documentation

Check out our [ServiceBricks-Documentation](https://github.com/holomodular/ServiceBricks-Documentation) repository for comprehensive documentation on the platform, including guides on using all components and developing your own microservices.

## Official Pre-Built Microservices

Service Bricks is scalable and can grow with your ogranization.
Run all of your bricks in a single web application or a fully distributed containerized network.
We offer many pre-built services, examples and provide source code so you can build your own bricks quickly.
Get started quickly with our pre-built microservices:

The platform utilizes Service Query to provide dynamic querying of data over service boundaries.
Visit http://ServiceQuery.com to learn more.
* [ServiceBricks-Cache](https://github.com/holomodular/ServiceBricks-Cache): Generic data storage with expiration microservice.
* [ServiceBricks-Logging](https://github.com/holomodular/ServiceBricks-Logging): Service-scoped or centralized application and web request logging microservice.
* [ServiceBricks-Notification](https://github.com/holomodular/ServiceBricks-Notification): Notification and delivery of emails and SMS messages.
* [ServiceBricks-Security](https://github.com/holomodular/ServiceBricks-Security): Authentication, authorization, and application security with JWT bearer token support for multi-application deployments.

## Legal
## About

Copyright 2023 HoloModular LLC. All Rights Reserved. Visit our website at http://HoloModular.com.
I am a business executive and software architect with 25+ years professional experience. You can reach me via www.linkedin.com/in/danlogsdon or https://HoloModular.com
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.0.6</Version>
<Version>1.0.7</Version>
<Description>ServiceBricks is the cornerstone for building a microservices foundation. Visit http://ServiceBricks.com to learn more.</Description>
<AssemblyTitle>ServiceBricks.Logging.Cosmos</AssemblyTitle>
<Authors>holomodular</Authors>
Expand Down Expand Up @@ -41,14 +41,14 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="7.0.18" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="7.0.19" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="7.0.18" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="7.0.19" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="8.0.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="8.0.5" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.0.6</Version>
<Version>1.0.7</Version>
<Description>ServiceBricks is the cornerstone for building a microservices foundation. Visit http://ServiceBricks.com to learn more.</Description>
<AssemblyTitle>ServiceBricks.Logging.Cosmos</AssemblyTitle>
<Authors>holomodular</Authors>
Expand All @@ -28,18 +28,18 @@
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ServiceBricks.Logging.EntityFrameworkCore" Version="1.0.6" />
<PackageReference Include="ServiceBricks.Logging.EntityFrameworkCore" Version="1.0.7" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="7.0.18" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="7.0.19" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="7.0.18" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="7.0.19" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="8.0.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="8.0.5" />
</ItemGroup>
</Project>
62 changes: 50 additions & 12 deletions src/V1/ServiceBricks.Logging.Cosmos/docs/readme.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,58 @@
# Welcome to SERVICE BRICKS
![ServiceBricks Logo](https://github.com/holomodular/ServiceBricks/blob/main/Logo.png)

Service Bricks is the cornerstone for building a microservice foundation.
Visit http://ServiceBricks.com to learn more.
[![NuGet version](https://badge.fury.io/nu/ServiceBricks.svg)](https://badge.fury.io/nu/ServiceBricks)
![badge](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/holomodular-support/bdb5c7c570a7a88ffb3efb3505273e34/raw/servicebricks-codecoverage.json)
[![License: MIT](https://img.shields.io/badge/License-MIT-389DA0.svg)](https://opensource.org/licenses/MIT)

# ServiceBricks: The Foundation for Microservices

## Overview

Service Bricks is a modular, service-oriented architecture (SOA) for building microservices using .NET.
It provides a templated design that exposes a standardized API that works the same, regardless of the backend storage provider.
Welcome to [ServiceBricks](https://ServiceBricks.com), your cornerstone for building a robust microservices foundation.
ServiceBricks is a powerful platform designed to streamline the development, deployment, and maintenance of distributed systems.
Leveraging Domain-Driven Design (DDD), Event-Driven Architecture (EDA), and a host of advanced features, ServiceBricks empowers teams to create scalable, customizable services tailored to specific business domains.

## Why ServiceBricks?

* **Architectural Excellence:** Provides the core architectural patterns, implementation, standardization, and governance for your microservices.
* **Storage Agnostic:** Exposes a storage platform-agnostic model and repository-based API, supporting both relational (SQL) and document (NoSQL) databases.
* **Seamless Integration:** Switch storage providers without impacting microservice operations.


## Major Features

* **Generics:** Extensive use of generics, allowing the compiler to generate most of the required code.
* **REST API Services:** Templated, repository-based services for quickly exposing standard CRUD methods or custom methods.
* **[ServiceQuery Integration](https://github.com/holomodular/ServiceQuery):** Supports standardized, polyglot data querying for SQL and NoSQL databases.
* **[Business Rule Engine](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/BusinessRuleEngine.md):** Polymorphic techniques to build reusable business logic.
* **[Domain-Driven Design (DDD)](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/FlowOfData.md) & [Event-Driven Architecture (EDA)](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/EventDrivenArchitecture.md):** Customize business logic for any supported object and method.
* **[Background Processing](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/BackgroundTasks.md):** Supports asynchronous processes, tasks, and rules.
* **[SQL and NoSQL Database Support](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/SupportedDatabaseEngines.md):** Works standard with Azure Data Tables, Cosmos DB, InMemory, MongoDB, Postgres, SQLite, SQL Server or other providers.
* **[Service Bus Engine](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/BroadcastsAndServiceBus.md):** Supports broadcasts of system data with InMemory and Azure Service Bus.
* **[Classic or Modern REST API Design](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/ClassicVsModernRestApi.md):** Choose between Classic or Modern modes, with various response formats.
* **[NuGet Packages](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/NuGet.md):** Quickly build new services and applications.
* **Testing Framework:** Comprehensive Xunit test framework for robust unit and integration testing.
* **Open Source:** Only three dependencies (AutoMapper, Newtonsoft.Json, and ServiceQuery), all MIT licensed.
* **AI Integration:** Training AI to build new ServiceBricks microservices. Updates coming soon!


## Getting Started with Examples

Explore our [ServiceBricks-Examples](https://github.com/holomodular/ServiceBricks-Examples) repository for practical examples on hosting and deploying your ServiceBricks foundation. From single, monolithic web applications to containerized web applications, these examples provide the building blocks to create and scale your foundations quickly.

## Documentation

Check out our [ServiceBricks-Documentation](https://github.com/holomodular/ServiceBricks-Documentation) repository for comprehensive documentation on the platform, including guides on using all components and developing your own microservices.

## Official Pre-Built Microservices

Service Bricks is scalable and can grow with your ogranization.
Run all of your bricks in a single web application or a fully distributed containerized network.
We offer many pre-built services, examples and provide source code so you can build your own bricks quickly.
Get started quickly with our pre-built microservices:

The platform utilizes Service Query to provide dynamic querying of data over service boundaries.
Visit http://ServiceQuery.com to learn more.
* [ServiceBricks-Cache](https://github.com/holomodular/ServiceBricks-Cache): Generic data storage with expiration microservice.
* [ServiceBricks-Logging](https://github.com/holomodular/ServiceBricks-Logging): Service-scoped or centralized application and web request logging microservice.
* [ServiceBricks-Notification](https://github.com/holomodular/ServiceBricks-Notification): Notification and delivery of emails and SMS messages.
* [ServiceBricks-Security](https://github.com/holomodular/ServiceBricks-Security): Authentication, authorization, and application security with JWT bearer token support for multi-application deployments.

## Legal
## About

Copyright 2023 HoloModular LLC. All Rights Reserved. Visit our website at http://HoloModular.com.
I am a business executive and software architect with 25+ years professional experience. You can reach me via www.linkedin.com/in/danlogsdon or https://HoloModular.com
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.0.6</Version>
<Version>1.0.7</Version>
<Description>ServiceBricks is the cornerstone for building a microservices foundation. Visit http://ServiceBricks.com to learn more.</Description>
<AssemblyTitle>ServiceBricks.Logging</AssemblyTitle>
<Authors>holomodular</Authors>
Expand Down Expand Up @@ -39,6 +39,7 @@
<Compile Include="..\ServiceBricks.Logging\Interface\IWebRequestMessageApiClient.cs" Link="IWebRequestMessageApiClient.cs" />
<Compile Include="..\ServiceBricks.Logging\Interface\IWebRequestMessageApiController.cs" Link="IWebRequestMessageApiController.cs" />
<Compile Include="..\ServiceBricks.Logging\Interface\IWebRequestMessageApiService.cs" Link="IWebRequestMessageApiService.cs" />
<Compile Include="..\ServiceBricks.Logging\Mapping\LogMessageDtoMappingProfile.cs" Link="LogMessageDtoMappingProfile.cs" />
<Compile Include="..\ServiceBricks.Logging\Middleware\CustomLoggerMiddleware.cs" Link="CustomLoggerMiddleware.cs" />
<Compile Include="..\ServiceBricks.Logging\Middleware\WebRequestMessageMiddleware.cs" Link="WebRequestMessageMiddleware.cs" />
<Compile Include="..\ServiceBricks.Logging\Model\CustomLogger.cs" Link="CustomLogger.cs" />
Expand All @@ -47,10 +48,11 @@
<Compile Include="..\ServiceBricks.Logging\Model\LoggingConstants.cs" Link="LoggingConstants.cs" />
<Compile Include="..\ServiceBricks.Logging\Model\LoggingModule.cs" Link="LoggingModule.cs" />
<Compile Include="..\ServiceBricks.Logging\Model\WebRequestMessageOptions.cs" Link="WebRequestMessageOptions.cs" />
<Compile Include="..\ServiceBricks.Logging\Rule\CreateApplicationLogRule.cs" Link="CreateApplicationLogRule.cs" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="ServiceBricks" Version="1.0.6" />
<PackageReference Include="ServiceBricks" Version="1.0.7" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.0.6</Version>
<Version>1.0.7</Version>
<Description>ServiceBricks is the cornerstone for building a microservices foundation. Visit http://ServiceBricks.com to learn more.</Description>
<AssemblyTitle>ServiceBricks.Logging.EntityFrameworkCore</AssemblyTitle>
<Authors>holomodular</Authors>
Expand Down Expand Up @@ -38,7 +38,7 @@
<ProjectReference Include="..\ServiceBricks.Logging.Debug\ServiceBricks.Logging.Debug.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ServiceBricks.Storage.EntityFrameworkCore" Version="1.0.6" />
<PackageReference Include="ServiceBricks.Storage.EntityFrameworkCore" Version="1.0.7" />
</ItemGroup>

</Project>
Loading

0 comments on commit fa224b1

Please sign in to comment.