mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-15 01:34:05 +00:00
916ec63af6
This is a new revision of the discovery server. Relevant changes and non-changes: - Protocol towards clients is unchanged. - Recommended large scale design is still to be deployed nehind nginx (I tested, and it's still a lot faster at terminating TLS). - Database backend is leveldb again, only. It scales enough, is easy to setup, and we don't need any backend to take care of. - Server supports replication. This is a simple TCP channel - protect it with a firewall when deploying over the internet. (We deploy this within the same datacenter, and with firewall.) Any incoming client announces are sent over the replication channel(s) to other peer discosrvs. Incoming replication changes are applied to the database as if they came from clients, but without the TLS/certificate overhead. - Metrics are exposed using the prometheus library, when enabled. - The database values and replication protocol is protobuf, because JSON was quite CPU intensive when I tried that and benchmarked it. - The "Retry-After" value for failed lookups gets slowly increased from a default of 120 seconds, by 5 seconds for each failed lookup, independently by each discosrv. This lowers the query load over time for clients that are never seen. The Retry-After maxes out at 3600 after a couple of weeks of this increase. The number of failed lookups is stored in the database, now and then (avoiding making each lookup a database put). All in all this means clients can be pointed towards a cluster using just multiple A / AAAA records to gain both load sharing and redundancy (if one is down, clients will talk to the remaining ones). GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4648
85 lines
2.5 KiB
Go
85 lines
2.5 KiB
Go
// Copyright 2017 The Prometheus 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 bcache provides access to statistics exposed by the bcache (Linux
|
|
// block cache).
|
|
package bcache
|
|
|
|
// Stats contains bcache runtime statistics, parsed from /sys/fs/bcache/.
|
|
//
|
|
// The names and meanings of each statistic were taken from bcache.txt and
|
|
// files in drivers/md/bcache in the Linux kernel source. Counters are uint64
|
|
// (in-kernel counters are mostly unsigned long).
|
|
type Stats struct {
|
|
// The name of the bcache used to source these statistics.
|
|
Name string
|
|
Bcache BcacheStats
|
|
Bdevs []BdevStats
|
|
Caches []CacheStats
|
|
}
|
|
|
|
// BcacheStats contains statistics tied to a bcache ID.
|
|
type BcacheStats struct {
|
|
AverageKeySize uint64
|
|
BtreeCacheSize uint64
|
|
CacheAvailablePercent uint64
|
|
Congested uint64
|
|
RootUsagePercent uint64
|
|
TreeDepth uint64
|
|
Internal InternalStats
|
|
FiveMin PeriodStats
|
|
Total PeriodStats
|
|
}
|
|
|
|
// BdevStats contains statistics for one backing device.
|
|
type BdevStats struct {
|
|
Name string
|
|
DirtyData uint64
|
|
FiveMin PeriodStats
|
|
Total PeriodStats
|
|
}
|
|
|
|
// CacheStats contains statistics for one cache device.
|
|
type CacheStats struct {
|
|
Name string
|
|
IOErrors uint64
|
|
MetadataWritten uint64
|
|
Written uint64
|
|
Priority PriorityStats
|
|
}
|
|
|
|
// PriorityStats contains statistics from the priority_stats file.
|
|
type PriorityStats struct {
|
|
UnusedPercent uint64
|
|
MetadataPercent uint64
|
|
}
|
|
|
|
// InternalStats contains internal bcache statistics.
|
|
type InternalStats struct {
|
|
ActiveJournalEntries uint64
|
|
BtreeNodes uint64
|
|
BtreeReadAverageDurationNanoSeconds uint64
|
|
CacheReadRaces uint64
|
|
}
|
|
|
|
// PeriodStats contains statistics for a time period (5 min or total).
|
|
type PeriodStats struct {
|
|
Bypassed uint64
|
|
CacheBypassHits uint64
|
|
CacheBypassMisses uint64
|
|
CacheHits uint64
|
|
CacheMissCollisions uint64
|
|
CacheMisses uint64
|
|
CacheReadaheads uint64
|
|
}
|