2022-01-02 06:24:11 +00:00
|
|
|
//go:build windows
|
|
|
|
|
2023-11-04 19:51:35 +00:00
|
|
|
package adcs
|
2022-01-02 06:24:11 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"strings"
|
2023-04-22 10:17:51 +00:00
|
|
|
|
2023-11-04 19:51:35 +00:00
|
|
|
"github.com/alecthomas/kingpin/v2"
|
2023-04-22 10:17:51 +00:00
|
|
|
"github.com/go-kit/log"
|
|
|
|
"github.com/go-kit/log/level"
|
2023-11-04 19:51:35 +00:00
|
|
|
"github.com/prometheus-community/windows_exporter/pkg/perflib"
|
|
|
|
"github.com/prometheus-community/windows_exporter/pkg/types"
|
|
|
|
"github.com/prometheus-community/windows_exporter/pkg/utils"
|
2023-04-22 10:17:51 +00:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2022-01-02 06:24:11 +00:00
|
|
|
)
|
|
|
|
|
2023-11-04 19:51:35 +00:00
|
|
|
const Name = "adcs"
|
|
|
|
|
|
|
|
type Config struct{}
|
|
|
|
|
|
|
|
var ConfigDefaults = Config{}
|
|
|
|
|
|
|
|
type collector struct {
|
2023-04-22 10:17:51 +00:00
|
|
|
logger log.Logger
|
|
|
|
|
2022-01-02 06:24:11 +00:00
|
|
|
RequestsPerSecond *prometheus.Desc
|
|
|
|
RequestProcessingTime *prometheus.Desc
|
|
|
|
RetrievalsPerSecond *prometheus.Desc
|
|
|
|
RetrievalProcessingTime *prometheus.Desc
|
|
|
|
FailedRequestsPerSecond *prometheus.Desc
|
|
|
|
IssuedRequestsPerSecond *prometheus.Desc
|
|
|
|
PendingRequestsPerSecond *prometheus.Desc
|
|
|
|
RequestCryptographicSigningTime *prometheus.Desc
|
|
|
|
RequestPolicyModuleProcessingTime *prometheus.Desc
|
|
|
|
ChallengeResponsesPerSecond *prometheus.Desc
|
|
|
|
ChallengeResponseProcessingTime *prometheus.Desc
|
|
|
|
SignedCertificateTimestampListsPerSecond *prometheus.Desc
|
|
|
|
SignedCertificateTimestampListProcessingTime *prometheus.Desc
|
|
|
|
}
|
|
|
|
|
2023-11-04 19:51:35 +00:00
|
|
|
func New(logger log.Logger, _ *Config) types.Collector {
|
|
|
|
c := &collector{}
|
|
|
|
c.SetLogger(logger)
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewWithFlags(_ *kingpin.Application) types.Collector {
|
|
|
|
return &collector{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *collector) GetName() string {
|
|
|
|
return Name
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *collector) SetLogger(logger log.Logger) {
|
|
|
|
c.logger = log.With(logger, "collector", Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *collector) GetPerfCounter() ([]string, error) {
|
|
|
|
return []string{"Certification Authority"}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *collector) Build() error {
|
|
|
|
c.RequestsPerSecond = prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(types.Namespace, Name, "requests_total"),
|
|
|
|
"Total certificate requests processed",
|
|
|
|
[]string{"cert_template"},
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
c.RequestProcessingTime = prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(types.Namespace, Name, "request_processing_time_seconds"),
|
|
|
|
"Last time elapsed for certificate requests",
|
|
|
|
[]string{"cert_template"},
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
c.RetrievalsPerSecond = prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(types.Namespace, Name, "retrievals_total"),
|
|
|
|
"Total certificate retrieval requests processed",
|
|
|
|
[]string{"cert_template"},
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
c.RetrievalProcessingTime = prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(types.Namespace, Name, "retrievals_processing_time_seconds"),
|
|
|
|
"Last time elapsed for certificate retrieval request",
|
|
|
|
[]string{"cert_template"},
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
c.FailedRequestsPerSecond = prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(types.Namespace, Name, "failed_requests_total"),
|
|
|
|
"Total failed certificate requests processed",
|
|
|
|
[]string{"cert_template"},
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
c.IssuedRequestsPerSecond = prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(types.Namespace, Name, "issued_requests_total"),
|
|
|
|
"Total issued certificate requests processed",
|
|
|
|
[]string{"cert_template"},
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
c.PendingRequestsPerSecond = prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(types.Namespace, Name, "pending_requests_total"),
|
|
|
|
"Total pending certificate requests processed",
|
|
|
|
[]string{"cert_template"},
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
c.RequestCryptographicSigningTime = prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(types.Namespace, Name, "request_cryptographic_signing_time_seconds"),
|
|
|
|
"Last time elapsed for signing operation request",
|
|
|
|
[]string{"cert_template"},
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
c.RequestPolicyModuleProcessingTime = prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(types.Namespace, Name, "request_policy_module_processing_time_seconds"),
|
|
|
|
"Last time elapsed for policy module processing request",
|
|
|
|
[]string{"cert_template"},
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
c.ChallengeResponsesPerSecond = prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(types.Namespace, Name, "challenge_responses_total"),
|
|
|
|
"Total certificate challenge responses processed",
|
|
|
|
[]string{"cert_template"},
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
c.ChallengeResponseProcessingTime = prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(types.Namespace, Name, "challenge_response_processing_time_seconds"),
|
|
|
|
"Last time elapsed for challenge response",
|
|
|
|
[]string{"cert_template"},
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
c.SignedCertificateTimestampListsPerSecond = prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(types.Namespace, Name, "signed_certificate_timestamp_lists_total"),
|
|
|
|
"Total Signed Certificate Timestamp Lists processed",
|
|
|
|
[]string{"cert_template"},
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
c.SignedCertificateTimestampListProcessingTime = prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(types.Namespace, Name, "signed_certificate_timestamp_list_processing_time_seconds"),
|
|
|
|
"Last time elapsed for Signed Certificate Timestamp List",
|
|
|
|
[]string{"cert_template"},
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
|
|
|
|
return nil
|
2022-01-02 06:24:11 +00:00
|
|
|
}
|
|
|
|
|
2023-11-04 19:51:35 +00:00
|
|
|
func (c *collector) Collect(ctx *types.ScrapeContext, ch chan<- prometheus.Metric) error {
|
2024-05-11 10:05:45 +00:00
|
|
|
if err := c.collectADCSCounters(ctx, ch); err != nil {
|
|
|
|
_ = level.Error(c.logger).Log("msg", "failed collecting ADCS metrics", "err", err)
|
2022-01-02 06:24:11 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type perflibADCS struct {
|
|
|
|
Name string
|
|
|
|
RequestsPerSecond float64 `perflib:"Requests/sec"`
|
|
|
|
RequestProcessingTime float64 `perflib:"Request processing time (ms)"`
|
|
|
|
RetrievalsPerSecond float64 `perflib:"Retrievals/sec"`
|
|
|
|
RetrievalProcessingTime float64 `perflib:"Retrieval processing time (ms)"`
|
|
|
|
FailedRequestsPerSecond float64 `perflib:"Failed Requests/sec"`
|
|
|
|
IssuedRequestsPerSecond float64 `perflib:"Issued Requests/sec"`
|
|
|
|
PendingRequestsPerSecond float64 `perflib:"Pending Requests/sec"`
|
|
|
|
RequestCryptographicSigningTime float64 `perflib:"Request cryptographic signing time (ms)"`
|
|
|
|
RequestPolicyModuleProcessingTime float64 `perflib:"Request policy module processing time (ms)"`
|
|
|
|
ChallengeResponsesPerSecond float64 `perflib:"Challenge Responses/sec"`
|
|
|
|
ChallengeResponseProcessingTime float64 `perflib:"Challenge Response processing time (ms)"`
|
|
|
|
SignedCertificateTimestampListsPerSecond float64 `perflib:"Signed Certificate Timestamp Lists/sec"`
|
|
|
|
SignedCertificateTimestampListProcessingTime float64 `perflib:"Signed Certificate Timestamp List processing time (ms)"`
|
|
|
|
}
|
|
|
|
|
2024-05-11 10:05:45 +00:00
|
|
|
func (c *collector) collectADCSCounters(ctx *types.ScrapeContext, ch chan<- prometheus.Metric) error {
|
2022-01-02 06:24:11 +00:00
|
|
|
dst := make([]perflibADCS, 0)
|
2023-11-04 19:51:35 +00:00
|
|
|
if _, ok := ctx.PerfObjects["Certification Authority"]; !ok {
|
2024-05-11 10:05:45 +00:00
|
|
|
return errors.New("perflib did not contain an entry for Certification Authority")
|
2022-01-02 06:24:11 +00:00
|
|
|
}
|
2023-11-04 19:51:35 +00:00
|
|
|
err := perflib.UnmarshalObject(ctx.PerfObjects["Certification Authority"], &dst, c.logger)
|
2022-01-02 06:24:11 +00:00
|
|
|
if err != nil {
|
2024-05-11 10:05:45 +00:00
|
|
|
return err
|
2022-01-02 06:24:11 +00:00
|
|
|
}
|
|
|
|
if len(dst) == 0 {
|
2024-05-11 10:05:45 +00:00
|
|
|
return errors.New("perflib query for Certification Authority (ADCS) returned empty result set")
|
2022-01-02 06:24:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, d := range dst {
|
|
|
|
n := strings.ToLower(d.Name)
|
|
|
|
if n == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.RequestsPerSecond,
|
|
|
|
prometheus.CounterValue,
|
|
|
|
d.RequestsPerSecond,
|
|
|
|
d.Name,
|
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.RequestProcessingTime,
|
|
|
|
prometheus.GaugeValue,
|
2023-11-04 19:51:35 +00:00
|
|
|
utils.MilliSecToSec(d.RequestProcessingTime),
|
2022-01-02 06:24:11 +00:00
|
|
|
d.Name,
|
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.RetrievalsPerSecond,
|
|
|
|
prometheus.CounterValue,
|
|
|
|
d.RetrievalsPerSecond,
|
|
|
|
d.Name,
|
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.RetrievalProcessingTime,
|
|
|
|
prometheus.GaugeValue,
|
2023-11-04 19:51:35 +00:00
|
|
|
utils.MilliSecToSec(d.RetrievalProcessingTime),
|
2022-01-02 06:24:11 +00:00
|
|
|
d.Name,
|
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.FailedRequestsPerSecond,
|
|
|
|
prometheus.CounterValue,
|
|
|
|
d.FailedRequestsPerSecond,
|
|
|
|
d.Name,
|
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.IssuedRequestsPerSecond,
|
|
|
|
prometheus.CounterValue,
|
|
|
|
d.IssuedRequestsPerSecond,
|
|
|
|
d.Name,
|
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.PendingRequestsPerSecond,
|
|
|
|
prometheus.CounterValue,
|
|
|
|
d.PendingRequestsPerSecond,
|
|
|
|
d.Name,
|
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.RequestCryptographicSigningTime,
|
|
|
|
prometheus.GaugeValue,
|
2023-11-04 19:51:35 +00:00
|
|
|
utils.MilliSecToSec(d.RequestCryptographicSigningTime),
|
2022-01-02 06:24:11 +00:00
|
|
|
d.Name,
|
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.RequestPolicyModuleProcessingTime,
|
|
|
|
prometheus.GaugeValue,
|
2023-11-04 19:51:35 +00:00
|
|
|
utils.MilliSecToSec(d.RequestPolicyModuleProcessingTime),
|
2022-01-02 06:24:11 +00:00
|
|
|
d.Name,
|
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.ChallengeResponsesPerSecond,
|
|
|
|
prometheus.CounterValue,
|
|
|
|
d.ChallengeResponsesPerSecond,
|
|
|
|
d.Name,
|
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.ChallengeResponseProcessingTime,
|
|
|
|
prometheus.GaugeValue,
|
2023-11-04 19:51:35 +00:00
|
|
|
utils.MilliSecToSec(d.ChallengeResponseProcessingTime),
|
2022-01-02 06:24:11 +00:00
|
|
|
d.Name,
|
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.SignedCertificateTimestampListsPerSecond,
|
|
|
|
prometheus.CounterValue,
|
|
|
|
d.SignedCertificateTimestampListsPerSecond,
|
|
|
|
d.Name,
|
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.SignedCertificateTimestampListProcessingTime,
|
|
|
|
prometheus.GaugeValue,
|
2023-11-04 19:51:35 +00:00
|
|
|
utils.MilliSecToSec(d.SignedCertificateTimestampListProcessingTime),
|
2022-01-02 06:24:11 +00:00
|
|
|
d.Name,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2024-05-11 10:05:45 +00:00
|
|
|
return nil
|
2022-01-02 06:24:11 +00:00
|
|
|
}
|