|
| 1 | +// Copyright 2025 The Prometheus Authors |
| 2 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | +// you may not use this file except in compliance with the License. |
| 4 | +// You may obtain a copy of the License at |
| 5 | +// |
| 6 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | +// |
| 8 | +// Unless required by applicable law or agreed to in writing, software |
| 9 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | +// See the License for the specific language governing permissions and |
| 12 | +// limitations under the License. |
| 13 | + |
| 14 | +package probe |
| 15 | + |
| 16 | +import ( |
| 17 | + "log" |
| 18 | + |
| 19 | + "github.com/prometheus/client_golang/prometheus" |
| 20 | + |
| 21 | + "github.com/prometheus-community/fortigate_exporter/pkg/http" |
| 22 | +) |
| 23 | + |
| 24 | +func probeNetworkDNSLatency(c http.FortiHTTP, _ *TargetMetadata) ([]prometheus.Metric, bool) { |
| 25 | + dnsLatency := prometheus.NewDesc( |
| 26 | + "fortigate_network_dns_latency_seconds", |
| 27 | + "Network dns latency", |
| 28 | + []string{"service", "ip"}, nil, |
| 29 | + ) |
| 30 | + |
| 31 | + type DNSLatencty struct { |
| 32 | + Service string `json:"service"` |
| 33 | + Latency float64 `json:"latency"` |
| 34 | + LastUpdate float64 `json:"last_update"` |
| 35 | + IP string `json:"ip"` |
| 36 | + } |
| 37 | + |
| 38 | + type DNSLatencyResult struct { |
| 39 | + Results []DNSLatencty `json:"results"` |
| 40 | + } |
| 41 | + |
| 42 | + var res DNSLatencyResult |
| 43 | + if err := c.Get("api/v2/monitor/network/dns/latency", "", &res); err != nil { |
| 44 | + log.Printf("Warning: %v", err) |
| 45 | + return nil, false |
| 46 | + } |
| 47 | + m := []prometheus.Metric{} |
| 48 | + for _, r := range res.Results { |
| 49 | + m = append(m, prometheus.MustNewConstMetric(dnsLatency, prometheus.GaugeValue, r.Latency*0.001, r.Service, r.IP)) |
| 50 | + } |
| 51 | + |
| 52 | + return m, true |
| 53 | +} |
0 commit comments