Le traduzioni sono generate tramite traduzione automatica. In caso di conflitto tra il contenuto di una traduzione e la versione originale in Inglese, quest'ultima prevarrà.
Da utilizzare CreateLogStream
con un AWS SDK o CLI
I seguenti esempi di codice mostrano come utilizzareCreateLogStream
.
- .NET
-
- AWS SDK for .NET
-
using System;
using System.Threading.Tasks;
using Amazon.CloudWatchLogs;
using Amazon.CloudWatchLogs.Model;
/// <summary>
/// Shows how to create an Amazon CloudWatch Logs stream for a CloudWatch
/// log group.
/// </summary>
public class CreateLogStream
{
public static async Task Main()
{
// This client object will be associated with the same AWS Region
// as the default user on this system. If you need to use a
// different AWS Region, pass it as a parameter to the client
// constructor.
var client = new AmazonCloudWatchLogsClient();
string logGroupName = "cloudwatchlogs-example-loggroup";
string logStreamName = "cloudwatchlogs-example-logstream";
var request = new CreateLogStreamRequest
{
LogGroupName = logGroupName,
LogStreamName = logStreamName,
};
var response = await client.CreateLogStreamAsync(request);
if (response.HttpStatusCode == System.Net.HttpStatusCode.OK)
{
Console.WriteLine($"{logStreamName} successfully created for {logGroupName}.");
}
else
{
Console.WriteLine("Could not create stream.");
}
}
}
- CLI
-
- AWS CLI
-
Il comando seguente crea un flusso di log denominato 20150601
nel gruppo di logmy-logs
:
aws logs create-log-stream --log-group-name my-logs
--log-stream-name 20150601
Per un elenco completo di guide per AWS SDK sviluppatori ed esempi di codice, consultaUtilizzo dei registri con un CloudWatch AWS SDK. Questo argomento include anche informazioni su come iniziare e dettagli sulle SDK versioni precedenti.