-
Notifications
You must be signed in to change notification settings - Fork 0
/
Startup.cs
53 lines (48 loc) · 1.67 KB
/
Startup.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
using HealthChecks.UI.Client;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Diagnostics.HealthChecks;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using NetCoreClient.Elk.Extensions;
using NetCoreClient.Elk.Tasks;
namespace NetCoreClient.Elk
{
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
public virtual void ConfigureServices(IServiceCollection services)
{
// Adds all custom configurations for this service.
services
.Configure<Settings>(Configuration)
.AddOptions()
.AddLogging()
.AddCustomHealthCheck(Configuration)
.AddHostedService<DataService>();
}
/// <summary>
/// Configures the HTTP request pipeline. Automatically called by the runtime.
/// </summary>
/// <param name="app">The application builder.</param>
public void Configure(IApplicationBuilder app)
{
app.UseRouting();
app.UseEndpoints(endpoints =>
{
endpoints.MapHealthChecks("/hc", new HealthCheckOptions()
{
Predicate = _ => true,
ResponseWriter = UIResponseWriter.WriteHealthCheckUIResponse
});
endpoints.MapHealthChecks("/liveness", new HealthCheckOptions
{
Predicate = r => r.Name.Contains("self")
});
});
}
}
}