Lines
100 %
Functions
#include "source/common/tls/stats.h"
#include "envoy/stats/scope.h"
#include "envoy/stats/stats_macros.h"
namespace Envoy {
namespace Extensions {
namespace TransportSockets {
namespace Tls {
SslStats generateSslStats(Stats::Scope& store) {
std::string prefix("ssl.");
return {ALL_SSL_STATS(POOL_COUNTER_PREFIX(store, prefix), POOL_GAUGE_PREFIX(store, prefix),
POOL_HISTOGRAM_PREFIX(store, prefix))};
}
Stats::Gauge& createCertificateExpirationGauge(Stats::Scope& scope, const std::string& cert_name) {
const std::string full_stat_name =
absl::StrCat("ssl.certificate.", cert_name, ".expiration_unix_time_seconds");
return Stats::Utility::gaugeFromElements(scope, {Stats::DynamicName(full_stat_name)},
Stats::Gauge::ImportMode::NeverImport);
} // namespace Tls
} // namespace TransportSockets
} // namespace Extensions
} // namespace Envoy