Package logadmin
Overview ▹
Index ▹
type Client ¶
Client is a Logging client. A Client is associated with a single Cloud project.
type Client struct {
// contains filtered or unexported fields
}
func NewClient ¶
func NewClient(ctx context.Context, projectID string, opts ...option.ClientOption) (*Client, error)
NewClient returns a new logging client associated with the provided project ID.
By default NewClient uses AdminScope. To use a different scope, call NewClient using a WithScopes option (see https://godoc.org/google.golang.org/api/option#WithScopes).
▹ Example
func (*Client) Close ¶
func (c *Client) Close() error
Close closes the client.
func (*Client) CreateMetric ¶
func (c *Client) CreateMetric(ctx context.Context, m *Metric) error
CreateMetric creates a logs-based metric.
▹ Example
func (*Client) CreateSink ¶
func (c *Client) CreateSink(ctx context.Context, sink *Sink) (*Sink, error)
CreateSink creates a Sink. It returns an error if the Sink already exists. Requires AdminScope.
▹ Example
func (*Client) DeleteLog ¶
func (c *Client) DeleteLog(ctx context.Context, logID string) error
DeleteLog deletes a log and all its log entries. The log will reappear if it receives new entries. logID identifies the log within the project. An example log ID is "syslog". Requires AdminScope.
▹ Example
func (*Client) DeleteMetric ¶
func (c *Client) DeleteMetric(ctx context.Context, metricID string) error
DeleteMetric deletes a log-based metric. The provided metric ID is the metric identifier. For example, "severe_errors".
▹ Example
func (*Client) DeleteSink ¶
func (c *Client) DeleteSink(ctx context.Context, sinkID string) error
DeleteSink deletes a sink. The provided sinkID is the sink's identifier, such as "my-severe-errors-to-pubsub". Requires AdminScope.
▹ Example
func (*Client) Entries ¶
func (c *Client) Entries(ctx context.Context, opts ...EntriesOption) *EntryIterator
Entries returns an EntryIterator for iterating over log entries. By default, the log entries will be restricted to those from the project passed to NewClient. This may be overridden by passing a ProjectIDs option. Requires ReadScope or AdminScope.
▹ Example
▹ Example (Pagination)
func (*Client) Logs ¶
func (c *Client) Logs(ctx context.Context) *LogIterator
Logs lists the logs owned by the parent resource of the client.
func (*Client) Metric ¶
func (c *Client) Metric(ctx context.Context, metricID string) (*Metric, error)
Metric gets a logs-based metric. The provided metric ID is the metric identifier. For example, "severe_errors". Requires ReadScope or AdminScope.
▹ Example
func (*Client) Metrics ¶
func (c *Client) Metrics(ctx context.Context) *MetricIterator
Metrics returns a MetricIterator for iterating over all Metrics in the Client's project. Requires ReadScope or AdminScope.
▹ Example
func (*Client) ResourceDescriptors ¶
func (c *Client) ResourceDescriptors(ctx context.Context) *ResourceDescriptorIterator
ResourceDescriptors returns a ResourceDescriptorIterator for iterating over MonitoredResourceDescriptors. Requires ReadScope or AdminScope. See https://cloud.google.com/logging/docs/api/v2/#monitored-resources for an explanation of monitored resources. See https://cloud.google.com/logging/docs/api/v2/resource-list for a list of monitored resources.
▹ Example
func (*Client) Sink ¶
func (c *Client) Sink(ctx context.Context, sinkID string) (*Sink, error)
Sink gets a sink. The provided sinkID is the sink's identifier, such as "my-severe-errors-to-pubsub". Requires ReadScope or AdminScope.
▹ Example
func (*Client) Sinks ¶
func (c *Client) Sinks(ctx context.Context) *SinkIterator
Sinks returns a SinkIterator for iterating over all Sinks in the Client's project. Requires ReadScope or AdminScope.
▹ Example
func (*Client) UpdateMetric ¶
func (c *Client) UpdateMetric(ctx context.Context, m *Metric) error
UpdateMetric creates a logs-based metric if it does not exist, or updates an existing one.
▹ Example
func (*Client) UpdateSink ¶
func (c *Client) UpdateSink(ctx context.Context, sink *Sink) (*Sink, error)
UpdateSink updates an existing Sink, or creates a new one if the Sink doesn't exist. Requires AdminScope.
▹ Example
type EntriesOption ¶
An EntriesOption is an option for listing log entries.
type EntriesOption interface {
// contains filtered or unexported methods
}
func Filter ¶
func Filter(f string) EntriesOption
Filter sets an advanced logs filter for listing log entries (see https://cloud.google.com/logging/docs/view/advanced_filters). The filter is compared against all log entries in the projects specified by ProjectIDs. Only entries that match the filter are retrieved. An empty filter (the default) matches all log entries.
In the filter string, log names must be written in their full form, as "projects/PROJECT-ID/logs/LOG-ID". Forward slashes in LOG-ID must be replaced by %2F before calling Filter.
Timestamps in the filter string must be written in RFC 3339 format. See the timestamp example.
▹ Example (Timestamp)
func NewestFirst ¶
func NewestFirst() EntriesOption
NewestFirst causes log entries to be listed from most recent (newest) to least recent (oldest). By default, they are listed from oldest to newest.
func ProjectIDs ¶
func ProjectIDs(pids []string) EntriesOption
ProjectIDs sets the project IDs or project numbers from which to retrieve log entries. Examples of a project ID: "my-project-1A", "1234567890".
type EntryIterator ¶
An EntryIterator iterates over log entries.
type EntryIterator struct {
// contains filtered or unexported fields
}
func (*EntryIterator) Next ¶
func (it *EntryIterator) Next() (*logging.Entry, error)
Next returns the next result. Its second return value is iterator.Done (https://godoc.org/google.golang.org/api/iterator) if there are no more results. Once Next returns Done, all subsequent calls will return Done.
▹ Example
func (*EntryIterator) PageInfo ¶
func (it *EntryIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See https://godoc.org/google.golang.org/api/iterator package for details.
type LogIterator ¶
A LogIterator iterates over logs.
type LogIterator struct {
// contains filtered or unexported fields
}
func (*LogIterator) Next ¶
func (it *LogIterator) Next() (string, error)
Next returns the next result. Its second return value is iterator.Done (https://godoc.org/google.golang.org/api/iterator) if there are no more results. Once Next returns Done, all subsequent calls will return Done.
func (*LogIterator) PageInfo ¶
func (it *LogIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See https://godoc.org/google.golang.org/api/iterator package for details.
type Metric ¶
Metric describes a logs-based metric. The value of the metric is the number of log entries that match a logs filter.
Metrics are a feature of Stackdriver Monitoring. See https://cloud.google.com/monitoring/api/v3/metrics for more about them.
type Metric struct { // ID is a client-assigned metric identifier. Example: // "severe_errors". Metric identifiers are limited to 1000 // characters and can include only the following characters: A-Z, // a-z, 0-9, and the special characters _-.,+!*',()%/\. The // forward-slash character (/) denotes a hierarchy of name pieces, // and it cannot be the first character of the name. ID string // Description describes this metric. It is used in documentation. Description string // Filter is an advanced logs filter (see // https://cloud.google.com/logging/docs/view/advanced_filters). // Example: "logName:syslog AND severity>=ERROR". Filter string }
type MetricIterator ¶
A MetricIterator iterates over Metrics.
type MetricIterator struct {
// contains filtered or unexported fields
}
func (*MetricIterator) Next ¶
func (it *MetricIterator) Next() (*Metric, error)
Next returns the next result. Its second return value is Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.
▹ Example
func (*MetricIterator) PageInfo ¶
func (it *MetricIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type ResourceDescriptorIterator ¶
ResourceDescriptorIterator is an iterator over MonitoredResourceDescriptors.
type ResourceDescriptorIterator struct {
// contains filtered or unexported fields
}
func (*ResourceDescriptorIterator) Next ¶
func (it *ResourceDescriptorIterator) Next() (*mrpb.MonitoredResourceDescriptor, error)
Next returns the next result. Its second return value is Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.
▹ Example
func (*ResourceDescriptorIterator) PageInfo ¶
func (it *ResourceDescriptorIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type Sink ¶
Sink describes a sink used to export log entries outside Stackdriver Logging. Incoming log entries matching a filter are exported to a destination (a Cloud Storage bucket, BigQuery dataset or Cloud Pub/Sub topic).
For more information, see https://cloud.google.com/logging/docs/export/using_exported_logs. (The Sinks in this package are what the documentation refers to as "project sinks".)
type Sink struct { // ID is a client-assigned sink identifier. Example: // "my-severe-errors-to-pubsub". // Sink identifiers are limited to 1000 characters // and can include only the following characters: A-Z, a-z, // 0-9, and the special characters "_-.". ID string // Destination is the export destination. See // https://cloud.google.com/logging/docs/api/tasks/exporting-logs. // Examples: "storage.googleapis.com/a-bucket", // "bigquery.googleapis.com/projects/a-project-id/datasets/a-dataset". Destination string // Filter optionally specifies an advanced logs filter (see // https://cloud.google.com/logging/docs/view/advanced_filters) that // defines the log entries to be exported. Example: "logName:syslog AND // severity>=ERROR". If omitted, all entries are returned. Filter string }
type SinkIterator ¶
A SinkIterator iterates over Sinks.
type SinkIterator struct {
// contains filtered or unexported fields
}
func (*SinkIterator) Next ¶
func (it *SinkIterator) Next() (*Sink, error)
Next returns the next result. Its second return value is Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.
▹ Example
func (*SinkIterator) PageInfo ¶
func (it *SinkIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.