コード例 #1
0
        public async void ExecuteDebugCommandAndWaitForResult()
        {
            var debugCommandResponse = await PortalClient.ExecuteDebugCommandAndWaitForResultAsync(18, "!ping 8.8.8.8", 20000, 100).ConfigureAwait(false);

            // Check for valid response
            Assert.NotNull(debugCommandResponse);
            Assert.NotEmpty(debugCommandResponse.Output);
            Logger.LogInformation(debugCommandResponse.Output);
        }
コード例 #2
0
        public static async Task Main(string[] args)
        {
            try
            {
                string account;
                string accessId;
                string accessKey;
                int    collectorId;
                string commandText;

                switch (args.Length)
                {
                case 3:
                    var logicMonitorCredentials = LoadLogicMonitorCredentialsFromJsonFileInfo(new FileInfo(args[0]));
                    account     = logicMonitorCredentials.Account;
                    accessId    = logicMonitorCredentials.AccessId;
                    accessKey   = logicMonitorCredentials.AccessKey;
                    collectorId = int.Parse(args[1]);
                    commandText = args[2];
                    break;

                case 5:
                    account     = args[0];
                    accessId    = args[1];
                    accessKey   = args[2];
                    collectorId = int.Parse(args[3]);
                    commandText = args[4];
                    break;

                default:
                    Console.WriteLine("Usage:");
                    Console.WriteLine("There are two modes of operation.");
                    Console.WriteLine("1. provide the credentials at the command line:");
                    Console.WriteLine("   dotnet run \"<accountName>\" \"<accessId>\" \"<accessKey\" <collectorId> \"<command>\"");
                    Console.WriteLine("2. provide the credentials in a JSON file (see example.json):");
                    Console.WriteLine("   dotnet run \"<credenitalFilename.json>\" <collectorId> \"<command>\"");
                    return;
                }

                // Get input params

                var portalClient = new PortalClient(account, accessId, accessKey);

                var response = await portalClient
                               .ExecuteDebugCommandAndWaitForResultAsync(collectorId, commandText)
                               .ConfigureAwait(false);

                Console.WriteLine(response.Output);
            }
            catch (Exception e)
            {
                Console.WriteLine($"Error: {e}");
            }
        }
コード例 #3
0
        public async void RunDebugCommand()
        {
            var collectors = await PortalClient.GetAllAsync <Collector>().ConfigureAwait(false);

            var testCollector = collectors.Find(c => !c.IsDown);

            Assert.NotNull(testCollector);
            var response = await PortalClient.ExecuteDebugCommandAndWaitForResultAsync(testCollector.Id, "!ping 8.8.8.8").ConfigureAwait(false);

            Assert.NotNull(response);
            Logger.LogInformation(response.Output);
        }