tencent cloud

文档反馈

日志管理

最后更新时间:2024-01-04 15:52:02

    简介

    本文档提供关于日志管理的 API 概览以及 SDK 示例代码。
    API
    操作名
    操作描述
    设置日志管理
    为源存储桶开启日志记录
    查询日志管理
    查询源存储桶的日志配置信息

    SDK API 参考

    SDK 所有接口的具体参数与方法说明,请参考 SDK API 参考

    设置日志管理

    功能说明

    PUT Bucket logging 用于为源存储桶开启日志记录,将源存储桶的访问日志保存到指定的目标存储桶中。

    示例代码

    String srcBucket = "examplebucket-1250000000"; //格式:BucketName-APPID
    String targetBucket = "examplebucket-1250000000"; //格式:BucketName-APPID
    PutBucketLoggingRequest putBucketLoggingRequest =
    new PutBucketLoggingRequest(srcBucket);
    // 目标存储桶
    putBucketLoggingRequest.setTargetBucket(targetBucket);
    // 日志存储的指定位置
    putBucketLoggingRequest.setTargetPrefix("dir/");
    
    cosXmlService.putBucketLoggingAsync(putBucketLoggingRequest,
    new CosXmlResultListener() {
    @Override
    public void onSuccess(CosXmlRequest request, CosXmlResult result) {
    PutBucketLoggingResult putBucketLoggingResult =
    (PutBucketLoggingResult) result;
    }
    
    // 如果您使用 kotlin 语言来调用,请注意回调方法中的异常是可空的,否则不会回调 onFail 方法,即:
    // clientException 的类型为 CosXmlClientException?,serviceException 的类型为 CosXmlServiceException?
    @Override
    public void onFail(CosXmlRequest cosXmlRequest,
    @Nullable CosXmlClientException clientException,
    @Nullable CosXmlServiceException serviceException) {
    if (clientException != null) {
    clientException.printStackTrace();
    } else {
    serviceException.printStackTrace();
    }
    }
    });
    说明
    更多完整示例,请前往 GitHub 查看。

    查询日志管理

    功能说明

    GET Bucket logging 用于查询指定存储桶的日志配置信息。

    示例代码

    // 存储桶名称,由bucketname-appid 组成,appid必须填入,可以在COS控制台查看存储桶名称。 https://console.tencentcloud.com/cos5/bucket
    String bucket = "examplebucket-1250000000";
    GetBucketLoggingRequest getBucketLoggingRequest =
    new GetBucketLoggingRequest(bucket);
    
    cosXmlService.getBucketLoggingAsync(getBucketLoggingRequest,
    new CosXmlResultListener() {
    @Override
    public void onSuccess(CosXmlRequest request, CosXmlResult result) {
    GetBucketLoggingResult getBucketLoggingResult =
    (GetBucketLoggingResult) result;
    }
    
    // 如果您使用 kotlin 语言来调用,请注意回调方法中的异常是可空的,否则不会回调 onFail 方法,即:
    // clientException 的类型为 CosXmlClientException?,serviceException 的类型为 CosXmlServiceException?
    @Override
    public void onFail(CosXmlRequest cosXmlRequest,
    @Nullable CosXmlClientException clientException,
    @Nullable CosXmlServiceException serviceException) {
    if (clientException != null) {
    clientException.printStackTrace();
    } else {
    serviceException.printStackTrace();
    }
    }
    });
    说明
    更多完整示例,请前往 GitHub 查看。
    联系我们

    联系我们,为您的业务提供专属服务。

    技术支持

    如果你想寻求进一步的帮助,通过工单与我们进行联络。我们提供7x24的工单服务。

    7x24 电话支持