コード例 #1
0
        public static void Write(Stream stream, string[] urls, string[] metricUrls, bool metrics, string diagnosticPort, bool noAuth, bool tempApiKey, ConfigDisplayLevel level)
        {
            IHost          host          = HostBuilderHelper.CreateHostBuilder(urls, metricUrls, metrics, diagnosticPort, noAuth, tempApiKey).Build();
            IConfiguration configuration = host.Services.GetRequiredService <IConfiguration>();

            using ConfigurationJsonWriter jsonWriter = new ConfigurationJsonWriter(stream);
            jsonWriter.Write(configuration, full: level == ConfigDisplayLevel.Full, skipNotPresent: false);
        }
コード例 #2
0
 // Although the "noHttpEgress" parameter is unused, it keeps the entire command parameter set a superset
 // of the "collect" command so that users can take the same arguments from "collect" and use it on "config show"
 // to get the same configuration without telling them to drop specific command line arguments.
 public static void Invoke(string[] urls, string[] metricUrls, bool metrics, string diagnosticPort, bool noAuth, bool tempApiKey, bool noHttpEgress, ConfigDisplayLevel level)
 {
     Write(Console.OpenStandardOutput(), urls, metricUrls, metrics, diagnosticPort, noAuth, tempApiKey, level);
 }