mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

* etcdserver/api/rafthttp: remove capnslog * etcdserver/api/membership: remove capnslog * etcdserver/api/v2auth: remove capnslog * etcdserver/api/v2discovery: remove capnslog * etdserver/api/v2stats: remove capnslog * etcdserver/api/v2http: remove capnslog * etcdserver/api/v3rpc: remove capnslog * etcdserver/api: remove capnslog Remove capnslog from etcdserver/api. Note that capnslog was already removed in some packages under etcdserver/api in previous commits.
27 lines
1.0 KiB
Go
27 lines
1.0 KiB
Go
// Copyright 2015 The etcd Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
// Package v2stats defines a standard interface for etcd cluster statistics.
|
|
package v2stats
|
|
|
|
type Stats interface {
|
|
// SelfStats returns the struct representing statistics of this server
|
|
SelfStats() []byte
|
|
// LeaderStats returns the statistics of all followers in the cluster
|
|
// if this server is leader. Otherwise, nil is returned.
|
|
LeaderStats() []byte
|
|
// StoreStats returns statistics of the store backing this EtcdServer
|
|
StoreStats() []byte
|
|
}
|