Skip to content

Commit 7437b0c

Browse files
TimHessbart-vmware
andcommitted
V4 Updates for Metrics, Tracing and Security (#336)
* Update Cloud Foundry actuator/integration --------- Co-authored-by: Bart Koelman <104792814+bart-vmware@users.noreply.github.com>
1 parent 4cf2a9c commit 7437b0c

25 files changed

+945
-809
lines changed

api/v4/bootstrap/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ To improve the Steeltoe developer experience, this feature allows the configurat
44

55
Get started by adding a reference to the AutoConfiguration package (you may want to add other Steeltoe references at this point too, see [the table below](#supported-steeltoe-packages) for the full list of what's supported):
66

7-
```
7+
```shell
88
dotnet add package Steeltoe.Bootstrap.AutoConfiguration
99
```
1010

@@ -36,7 +36,7 @@ builder.AddSteeltoe();
3636
| [Dynamic Console Logging](../logging/dynamic-console-logging.md) | `Steeltoe.Logging.DynamicConsole` | N/A |
3737
| [Dynamic Serilog Logging](../logging/dynamic-serilog-logging.md) | `Steeltoe.Logging.DynamicSerilog` | N/A |
3838
| [Actuators](../management/index.md) | `Steeltoe.Management.Endpoint` | N/A |
39-
| [Distributed Tracing](../tracing/index.md) | `Steeltoe.Management.Tracing` | Required: OpenTelemetry Exporter (Zipkin, OTLP) |
39+
| [Distributed Tracing](../tracing/index.md) | `Steeltoe.Management.Tracing` | N/A |
4040

4141
[^1]: Individual connector clients will only be configured if a corresponding supported driver NuGet package reference is also included.
4242

api/v4/configuration/config-server-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The Spring Cloud Config Server is an application configuration service that give
66

77
To gain a better understanding of the Spring Cloud Config Server, you should read the [Spring Cloud Config documentation](https://spring.io/projects/spring-cloud-config).
88

9-
In addition to the Quick Start provided later, you can refer to the [Steeltoe ConfigurationProviders](https://github.com/SteeltoeOSS/Samples/tree/latest/Configuration/src/ConfigurationProviders) sample application when you need to understand how to use this provider.
9+
In addition to the Quick Start provided later, you can refer to the [Steeltoe ConfigurationProviders](https://github.com/SteeltoeOSS/Samples/tree/main/Configuration/src/ConfigurationProviders) sample application when you need to understand how to use this provider.
1010

1111
## Usage
1212

api/v4/connectors/cosmosdb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public class HomeController : Controller
118118
}
119119
```
120120

121-
A complete sample app that uses `CosmosClient` is provided at https://github.com/SteeltoeOSS/Samples/tree/latest/Connectors/src/CosmosDb.
121+
A complete sample app that uses `CosmosClient` is provided at https://github.com/SteeltoeOSS/Samples/tree/main/Connectors/src/CosmosDb.
122122

123123
## Cloud Foundry
124124

api/v4/connectors/microsoft-sql-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public class HomeController : Controller
135135
}
136136
```
137137

138-
A complete sample app that uses Entity Framework Core with SQL Server is provided at https://github.com/SteeltoeOSS/Samples/tree/latest/Connectors/src/SqlServerEFCore.
138+
A complete sample app that uses Entity Framework Core with SQL Server is provided at https://github.com/SteeltoeOSS/Samples/tree/main/Connectors/src/SqlServerEFCore.
139139

140140
## Cloud Foundry
141141

api/v4/connectors/mongodb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public class HomeController : Controller
9696
}
9797
```
9898

99-
A complete sample app that uses `IMongoClient` is provided at https://github.com/SteeltoeOSS/Samples/tree/latest/Connectors/src/MongoDb.
99+
A complete sample app that uses `IMongoClient` is provided at https://github.com/SteeltoeOSS/Samples/tree/main/Connectors/src/MongoDb.
100100

101101
## Cloud Foundry
102102

@@ -121,4 +121,4 @@ cf restage myApp
121121
This Connector supports the [Service Binding Specification for Kubernetes](https://github.com/servicebinding/spec).
122122
It can be used through the Bitnami [Services Toolkit](https://docs.vmware.com/en/VMware-Tanzu-Application-Platform/1.5/tap/services-toolkit-install-services-toolkit.html).
123123

124-
For details on how to use this, see the instructions at https://github.com/SteeltoeOSS/Samples/tree/latest/Connectors/src/MongoDb#running-on-tanzu-application-platform-tap.
124+
For details on how to use this, see the instructions at https://github.com/SteeltoeOSS/Samples/tree/main/Connectors/src/MongoDb#running-on-tanzu-application-platform-tap.

api/v4/connectors/mysql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public class HomeController : Controller
8686
}
8787
```
8888

89-
A complete sample app that uses `MySqlConnection` is provided at https://github.com/SteeltoeOSS/Samples/tree/latest/Connectors/src/MySql.
89+
A complete sample app that uses `MySqlConnection` is provided at https://github.com/SteeltoeOSS/Samples/tree/main/Connectors/src/MySql.
9090

9191
### Use Entity Framework Core
9292

@@ -139,7 +139,7 @@ public class HomeController : Controller
139139
}
140140
```
141141

142-
A complete sample app that uses Entity Framework Core with MySQL is provided at https://github.com/SteeltoeOSS/Samples/tree/latest/Connectors/src/MySqlEFCore.
142+
A complete sample app that uses Entity Framework Core with MySQL is provided at https://github.com/SteeltoeOSS/Samples/tree/main/Connectors/src/MySqlEFCore.
143143

144144
## Cloud Foundry
145145

@@ -166,4 +166,4 @@ cf restage myApp
166166
This Connector supports the [Service Binding Specification for Kubernetes](https://github.com/servicebinding/spec).
167167
It can be used through the Bitnami [Services Toolkit](https://docs.vmware.com/en/VMware-Tanzu-Application-Platform/1.5/tap/services-toolkit-install-services-toolkit.html).
168168

169-
For details on how to use this, see the instructions at https://github.com/SteeltoeOSS/Samples/tree/latest/Connectors/src/MySql#running-on-tanzu-application-platform-tap.
169+
For details on how to use this, see the instructions at https://github.com/SteeltoeOSS/Samples/tree/main/Connectors/src/MySql#running-on-tanzu-application-platform-tap.

api/v4/connectors/postgresql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public class HomeController : Controller
8484
}
8585
```
8686

87-
A complete sample app that uses `NpgsqlConnection` is provided at https://github.com/SteeltoeOSS/Samples/tree/latest/Connectors/src/PostgreSql.
87+
A complete sample app that uses `NpgsqlConnection` is provided at https://github.com/SteeltoeOSS/Samples/tree/main/Connectors/src/PostgreSql.
8888

8989
### Use Entity Framework Core
9090

@@ -137,7 +137,7 @@ public class HomeController : Controller
137137
}
138138
```
139139

140-
A complete sample app that uses Entity Framework Core with PostgreSQL is provided at https://github.com/SteeltoeOSS/Samples/tree/latest/Connectors/src/PostgreSqlEFCore.
140+
A complete sample app that uses Entity Framework Core with PostgreSQL is provided at https://github.com/SteeltoeOSS/Samples/tree/main/Connectors/src/PostgreSqlEFCore.
141141

142142
## Cloud Foundry
143143

@@ -163,4 +163,4 @@ cf restage myApp
163163
This Connector supports the [Service Binding Specification for Kubernetes](https://github.com/servicebinding/spec).
164164
It can be used through the Bitnami [Services Toolkit](https://docs.vmware.com/en/VMware-Tanzu-Application-Platform/1.5/tap/services-toolkit-install-services-toolkit.html).
165165

166-
For details on how to use this, see the instructions at https://github.com/SteeltoeOSS/Samples/tree/latest/Connectors/src/PostgreSql#running-on-tanzu-application-platform-tap.
166+
For details on how to use this, see the instructions at https://github.com/SteeltoeOSS/Samples/tree/main/Connectors/src/PostgreSql#running-on-tanzu-application-platform-tap.

api/v4/connectors/rabbitmq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public class HomeController : Controller
8282
}
8383
```
8484

85-
A complete sample app that uses `IConnection` is provided at https://github.com/SteeltoeOSS/Samples/tree/latest/Connectors/src/RabbitMQ.
85+
A complete sample app that uses `IConnection` is provided at https://github.com/SteeltoeOSS/Samples/tree/main/Connectors/src/RabbitMQ.
8686

8787
## Cloud Foundry
8888

@@ -107,4 +107,4 @@ cf restage myApp
107107
This Connector supports the [Service Binding Specification for Kubernetes](https://github.com/servicebinding/spec).
108108
It can be used through the Bitnami [Services Toolkit](https://docs.vmware.com/en/VMware-Tanzu-Application-Platform/1.5/tap/services-toolkit-install-services-toolkit.html).
109109

110-
For details on how to use this, see the instructions at https://github.com/SteeltoeOSS/Samples/tree/latest/Connectors/src/RabbitMQ#running-on-tanzu-application-platform-tap.
110+
For details on how to use this, see the instructions at https://github.com/SteeltoeOSS/Samples/tree/main/Connectors/src/RabbitMQ#running-on-tanzu-application-platform-tap.

api/v4/connectors/redis.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public class HomeController : Controller
8181
}
8282
```
8383

84-
A complete sample app that uses `IConnectionMultiplexer` is provided at https://github.com/SteeltoeOSS/Samples/tree/latest/Connectors/src/Redis.
84+
A complete sample app that uses `IConnectionMultiplexer` is provided at https://github.com/SteeltoeOSS/Samples/tree/main/Connectors/src/Redis.
8585

8686
### Use IDistributedCache
8787

@@ -109,7 +109,7 @@ public class HomeController : Controller
109109
}
110110
```
111111

112-
A complete sample app that uses `IDistributedCache` is provided at https://github.com/SteeltoeOSS/Samples/tree/latest/Connectors/src/Redis.
112+
A complete sample app that uses `IDistributedCache` is provided at https://github.com/SteeltoeOSS/Samples/tree/main/Connectors/src/Redis.
113113

114114
## Cloud Foundry
115115

@@ -136,4 +136,4 @@ cf restage myApp
136136
This Connector supports the [Service Binding Specification for Kubernetes](https://github.com/servicebinding/spec).
137137
It can be used through the Bitnami [Services Toolkit](https://docs.vmware.com/en/VMware-Tanzu-Application-Platform/1.5/tap/services-toolkit-install-services-toolkit.html).
138138

139-
For details on how to use this, see the instructions at https://github.com/SteeltoeOSS/Samples/tree/latest/Connectors/src/Redis#running-on-tanzu-application-platform-tap.
139+
For details on how to use this, see the instructions at https://github.com/SteeltoeOSS/Samples/tree/main/Connectors/src/Redis#running-on-tanzu-application-platform-tap.

api/v4/fileshares/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Credentials are generally required for interacting with SMB shares. `WindowsNetw
4040

4141
When used in conjunction with the Cloud Foundry Configuration Provider, you can access the values as follows:
4242

43-
```
43+
```shell
4444
dotnet add package Steeltoe.Configuration.CloudFoundry
4545
dotnet add package Steeltoe.Common.Net
4646
```

0 commit comments

Comments
 (0)