This repository was archived by the owner on Jan 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathProgram.cs
53 lines (46 loc) · 1.96 KB
/
Program.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 System;
using Microsoft.Extensions.DependencyInjection;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
using System.Text.Json;
namespace MindFlavor.SQLServerExporter
{
public class Program
{
public static CommandLineOptions? CommandLineOptions { get; private set; }
public static void Main(string[] args)
{
var assemblyVersion = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
System.Console.WriteLine($"Prometheus SQL Server Exporter v{assemblyVersion?.ToString() ?? "no version"}");
System.Console.WriteLine($"Licensed under Apache License 2.0\n");
string? configFile = null;
for (int i = 0; (i < args.Length - 1 && configFile == null); i++)
if (args[i].ToLower() == "-c")
configFile = args[i + 1];
if (configFile == null)
{
Console.WriteLine("Syntax error:\nMissing -c <config file> parameter");
return;
}
string? jsonContents = null;
using (System.IO.StreamReader sr = new StreamReader(new System.IO.FileStream(configFile, FileMode.Open, FileAccess.Read, FileShare.Read)))
{
jsonContents = sr.ReadToEnd();
}
CommandLineOptions = JsonSerializer.Deserialize<CommandLineOptions>(jsonContents);
var host = CreateWebHostBuilder(args).Build();
var logger = host.Services.GetRequiredService<ILogger<Program>>();
host.Run();
}
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseUrls($"http://*:{CommandLineOptions!.Port}")
.UseStartup<Startup>();
}
}