» alicloud_log_store

The log store is a unit in Log Service to collect, store, and query the log data. Each log store belongs to a project, and each project can create multiple Logstores. Refer to details

» Example Usage

Basic Usage

resource "alicloud_log_project" "example" {
  name        = "tf-log"
  description = "created by terraform"
}

resource "alicloud_log_store" "example" {
  project               = "${alicloud_log_project.example.name}"
  name                  = "tf-log-store"
  shard_count           = 3
  auto_split            = true
  max_split_shard_count = 60
  append_meta           = true
}

» Argument Reference

The following arguments are supported:

  • project - (Required, ForceNew) The project name to the log store belongs.
  • name - (Required, ForceNew) The log store, which is unique in the same project.
  • retention_period - The data retention time (in days). Valid values: [1-3650]. Default to 30. Log store data will be stored permanently when the value is "3650".
  • shard_count - The number of shards in this log store. Default to 2. You can modify it by "Split" or "Merge" operations. Refer to details
  • auto_split - Determines whether to automatically split a shard. Default to true.
  • max_split_shard_count - The maximum number of shards for automatic split, which is in the range of 1 to 64. You must specify this parameter when autoSplit is true.
  • append_meta - Determines whether to append log meta automatically. The meta includes log receive time and client IP address. Default to true.
  • enable_web_tracking - Determines whether to enable Web Tracking. Default false.

» Attributes Reference

The following attributes are exported:

» Import

Log store can be imported using the id, e.g.

$ terraform import alicloud_log_store.example tf-log:tf-log-store