Steeltoe is an application framework that provides libraries for .NET Framework and .NET Core developers in order to build cloud-native applications and microservices. Steeltoe provides libraries for service discovery, circuit breaker, external configuration servers, connectors for connecting to services, security, logging, application management, application health monitoring, distributed tracing, and more.
Questions tagged [steeltoe]
54 questions
3
votes
1 answer
How to use Steeltoe without Pivotal Cloud Foundry
We want to use Steeltoe for developing our Microservices. However we don't want to use Pivotal Cloud Foundry.
Can we use Steeltoe with Azure App Services? or what is the best solution to use Steeltoe on Azure without using Pivotal Cloud Foundry?…

user217648
- 3,338
- 9
- 37
- 61
3
votes
4 answers
How to set Steeltoe Dynamic Logging works with 3rd party loggers as Serilog?
I have ASP.NET Core 2.1 app in Pivotal Cloud Foundry where we want to be able to configure logging levels on fly. As logger provider we are using Serilog. Is it possible that Steeltoe Dynamic Logging works properly with 3rd party loggers and…

TCO
- 33
- 5
2
votes
1 answer
The type or namespace name 'SteeltoeWebApplication' could not be found
Following the examples in Steeltoe Workshop:
https://docs.steeltoe.io/guides/get-to-know-steeltoe/index.html
Everything works fine until I get to the part about "Adding a cloud connector with…

Kris
- 363
- 3
- 11
2
votes
1 answer
"Please ensure OpenTelemetry is configured via Steeltoe extension methods" error?
I'm getting this error every time that the endpoint /actuator/prometheus is being call.
I don't have any idea what could be the problem?
This is the initialization code (I'm sure that openTelemetryEndpoint variable has a value):
…

Marcelo Mosquera
- 21
- 1
2
votes
2 answers
.Net Core Dockerized WebAPI failing to register with Eureka server
I have a .Net Core 3.1 WebAPI running as a Docker container + Eureka server running as Docker also. When I run the API from Visual Studio it registers successfully with the Eureka Docker instance and I can see the service in Eureka console. But…

Golide
- 835
- 3
- 13
- 36
2
votes
2 answers
FeignClient configuration in ASP.Net
I am trying to create microservices using Spring-boot Java and SteelToe ASP.NET
Step-1: I created a full service using Java (A service with UI and API. It is hosted on PCF). The API has ClassesControler defined inside.
Step-2: Create a microservice…

Jop.pop
- 335
- 4
- 18
2
votes
2 answers
Using Steeltoe Discovery Client on .NET Core console application (Spring Cloud Config)
In this thread I was able to setup my simple console application using ASP.NET CORE's configuration system.
The code is as simple as:
static void Main(string[] args)
{
string environment =…

Rafael
- 727
- 13
- 30
2
votes
1 answer
Unable to read property key value from GIT repository using Config Server Services in Steeltoe
I am not able read property value from git in steeltoe for dot net core 2.1 application.
From my client application, I want to read properties file which is present in Git repository for different environment properties files like…

Sumit Manna
- 541
- 1
- 5
- 16
1
vote
1 answer
How to register multiple Consumers using Steeltoe and RabbitMQ?
I am trying to register multiple RabbitMQ's consumers using Steeltoe, but only one is "processing" the messages. For the other consumer I get:
"Dispatcher has no subscribers for channel 'myConsumer'"
Say below are my two consumers:
Consumer…

DanielCCR
- 11
- 3
1
vote
2 answers
Steeltoe Serilog Dynamic Logging not working with .NET 7
I am trying to setup Serilog Dynamic Logging with Steeltoe. I am using .NET 7. I am using the Host Builder to add the functionality. Code example below using Host builder:
.AddDynamicSerilog((cfg, log) =>…

Ben Pierce
- 11
- 2
1
vote
1 answer
How to add steeltoe configserver configuration in .net 6.0
Recently we migrated .net3.1 to .net6.0 with minmal hosting model. Steeltoe configuration is not loading after migration, but the same is working in .netcore 3.1.
code:
builder.ConfigureAppConfiguration((hostContext, configApp) => {…

ren
- 21
- 3
1
vote
1 answer
Why is endpoints.MapAllActuators() failing?
I have an application generated from a Steeltoe Initialzr, using Steeltoe 3.1.2.
For some reason, when compiling I am getting:
dotnet/Extract/Startup.cs(53,27): error CS1501: No overload for method 'MapAllActuators' takes 0 arguments…

Onun Oãtiel
- 11
- 1
1
vote
1 answer
Configure ClientCredential of IdentityModel using values retrieved from Cloud Foundry CredHub
Short Problem Statement:
How to get value from Cloud Foundry CredHub to be used inside ConfigureServices(IServiceCollection services)?
Existing Condition:
Let's say that I have a class called SystemConfig for holding configuration values. I use a…

Keith
- 361
- 1
- 3
- 17
1
vote
1 answer
How to bind c# dotnet core 3.1 microservice stream to turbine server stream
I have a turbine server running on openshift 3 and deployed a donet core 3.1 c# microservice using steeltoe 3.0.2 circuit breaker libraries. I can monitor the microservice stream on hystrix dashboard through service stream url…

iperezmel78
- 415
- 5
- 20
1
vote
1 answer
Using Steeltoe DiscoveryHttpMessageHandler with FlurlClient
I am looking to switch our HttpClients to use Flurl. However, our HttpClient is currently configured to use Service Discovery via Steeltoe. Basically it's doing this in ConfigureServices:
services.AddHttpClient

BrianM
- 836
- 9
- 17