mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-21 22:46:54 +02:00
* add header-only prometheus lib to ext
* rename folder
* Undo rename directory
* prometheus simpleapi included on mac & linux
* wip
* wire up some controller stats
* Get windows building with prometheus
* bsd build flags for prometheus
* Fix multiple network join from environment entrypoint.sh.release (#1961)
* _bond_m guards _bond, not _paths_m (#1965)
* Fix: warning: mutex '_aqm_m' is not held on every path through here [-Wthread-safety-analysis] (#1964)
* Serve prom metrics from /metrics endpoint
* Add prom metrics for Central controller specific things
* reorganize metric initialization
* testing out a labled gauge on Networks
* increment error counter on throw
* Consolidate metrics definitions
Put all metric definitions into node/Metrics.hpp. Accessed as needed
from there.
* Revert "testing out a labled gauge on Networks"
This reverts commit
|
||
---|---|---|
.. | ||
Address.hpp | ||
AES.cpp | ||
AES.hpp | ||
AES_aesni.cpp | ||
AES_armcrypto.cpp | ||
AtomicCounter.hpp | ||
Bond.cpp | ||
Bond.hpp | ||
Buffer.hpp | ||
C25519.cpp | ||
C25519.hpp | ||
Capability.cpp | ||
Capability.hpp | ||
CertificateOfMembership.cpp | ||
CertificateOfMembership.hpp | ||
CertificateOfOwnership.cpp | ||
CertificateOfOwnership.hpp | ||
Constants.hpp | ||
Credential.hpp | ||
Dictionary.hpp | ||
DNS.hpp | ||
Hashtable.hpp | ||
Identity.cpp | ||
Identity.hpp | ||
IncomingPacket.cpp | ||
IncomingPacket.hpp | ||
InetAddress.cpp | ||
InetAddress.hpp | ||
MAC.hpp | ||
Membership.cpp | ||
Membership.hpp | ||
Metrics.cpp | ||
Metrics.hpp | ||
Multicaster.cpp | ||
Multicaster.hpp | ||
MulticastGroup.hpp | ||
Mutex.hpp | ||
Network.cpp | ||
Network.hpp | ||
NetworkConfig.cpp | ||
NetworkConfig.hpp | ||
NetworkController.hpp | ||
Node.cpp | ||
Node.hpp | ||
OutboundMulticast.cpp | ||
OutboundMulticast.hpp | ||
Packet.cpp | ||
Packet.hpp | ||
Path.cpp | ||
Path.hpp | ||
Peer.cpp | ||
Peer.hpp | ||
Poly1305.cpp | ||
Poly1305.hpp | ||
README.md | ||
Revocation.cpp | ||
Revocation.hpp | ||
RingBuffer.hpp | ||
RuntimeEnvironment.hpp | ||
Salsa20.cpp | ||
Salsa20.hpp | ||
SelfAwareness.cpp | ||
SelfAwareness.hpp | ||
SHA512.cpp | ||
SHA512.hpp | ||
SharedPtr.hpp | ||
Switch.cpp | ||
Switch.hpp | ||
Tag.cpp | ||
Tag.hpp | ||
Topology.cpp | ||
Topology.hpp | ||
Trace.cpp | ||
Trace.hpp | ||
Utils.cpp | ||
Utils.hpp | ||
World.hpp |
ZeroTier Network Hypervisor Core
This directory contains the real ZeroTier: a completely OS-independent global virtual Ethernet switch engine. This is where the magic happens.
Give it wire packets and it gives you Ethernet packets, and vice versa. The core contains absolutely no actual I/O, port configuration, or other OS-specific code (except Utils::getSecureRandom()). It provides a simple C API via /include/ZeroTierOne.h. It's designed to be small and maximally portable for future use on small embedded and special purpose systems.
Code in here follows these guidelines:
- Keep it minimal, especially in terms of code footprint and memory use.
- There should be no OS-dependent code here unless absolutely necessary (e.g. getSecureRandom).
- If it's not part of the core virtual Ethernet switch it does not belong here.
- No C++11 or C++14 since older and embedded compilers don't support it yet and this should be maximally portable.
- Minimize the use of complex C++ features since at some point we might end up "minus-minus'ing" this code if doing so proves necessary to port to tiny embedded systems.