6647f95be4
Wire-format and metric overhaul. Both file and UDP ingest now share one
versioned ParseLine that dispatches on the v<N>\t prefix; v1 stays
unchanged, v2 adds $bytes_sent (replacing $body_bytes_sent),
$request_length, $upstream_response_time, and $upstream_status. File
ingest gains the same versioning, and the legacy positional file format
is removed (no live deployments).
Prometheus exposition is rewritten:
- nginx_http_bytes_sent and nginx_http_request_duration_seconds gain
a source_tag label.
- nginx_http_requests_by_source_total gains status_class.
- New v2-only metrics: nginx_http_request_bytes,
nginx_http_upstream_duration_seconds,
nginx_http_upstream_requests_total{status_class}.
- Dropped nginx_http_response_body_bytes_by_source (subsumed by the
dual-labeled bytes_sent metric).
Adds 'make fixstyle' (gofmt -w) and clears all golangci-lint findings
across the repo (errcheck, S1001, ST1005, unused).
Docs in design.md FR-2/FR-8 and user-guide.md are rewritten to present
v2 as the recommended log format.
122 lines
2.7 KiB
Go
122 lines
2.7 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"flag"
|
|
"fmt"
|
|
"os"
|
|
"sync"
|
|
"time"
|
|
|
|
pb "git.ipng.ch/ipng/nginx-logtail/proto/logtailpb"
|
|
)
|
|
|
|
type trendResult struct {
|
|
target string
|
|
resp *pb.TrendResponse
|
|
err error
|
|
}
|
|
|
|
func runTrend(args []string) {
|
|
fs := flag.NewFlagSet("trend", flag.ExitOnError)
|
|
sf, targetFlag := bindShared(fs)
|
|
window := fs.String("window", "5m", "time window: 1m 5m 15m 60m 6h 24h")
|
|
_ = fs.Parse(args) // ExitOnError: only returns nil here
|
|
sf.resolve(*targetFlag)
|
|
|
|
win := parseWindow(*window)
|
|
filter := buildFilter(sf)
|
|
|
|
results := fanOutTrend(sf.targets, filter, win)
|
|
|
|
if sf.jsonOut {
|
|
printTrendJSONArray(results)
|
|
return
|
|
}
|
|
for _, r := range results {
|
|
if hdr := targetHeader(r.target, r.resp.GetSource(), len(sf.targets)); hdr != "" {
|
|
fmt.Println(hdr)
|
|
}
|
|
if r.err != nil {
|
|
fmt.Fprintf(os.Stderr, "error from %s: %v\n", r.target, r.err)
|
|
continue
|
|
}
|
|
printTrendTable(r)
|
|
if len(sf.targets) > 1 {
|
|
fmt.Println()
|
|
}
|
|
}
|
|
}
|
|
|
|
func fanOutTrend(targets []string, filter *pb.Filter, window pb.Window) []trendResult {
|
|
results := make([]trendResult, len(targets))
|
|
var wg sync.WaitGroup
|
|
for i, t := range targets {
|
|
wg.Add(1)
|
|
go func(i int, addr string) {
|
|
defer wg.Done()
|
|
results[i].target = addr
|
|
conn, client, err := dial(addr)
|
|
if err != nil {
|
|
results[i].err = err
|
|
results[i].resp = &pb.TrendResponse{}
|
|
return
|
|
}
|
|
defer func() { _ = conn.Close() }()
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
defer cancel()
|
|
resp, err := client.Trend(ctx, &pb.TrendRequest{
|
|
Filter: filter,
|
|
Window: window,
|
|
})
|
|
results[i].resp = resp
|
|
results[i].err = err
|
|
}(i, t)
|
|
}
|
|
wg.Wait()
|
|
return results
|
|
}
|
|
|
|
func printTrendTable(r trendResult) {
|
|
if len(r.resp.Points) == 0 {
|
|
fmt.Println("(no data)")
|
|
return
|
|
}
|
|
rows := [][]string{{"TIME (UTC)", "COUNT"}}
|
|
for _, p := range r.resp.Points {
|
|
rows = append(rows, []string{fmtTime(p.TimestampUnix), fmtCount(p.Count)})
|
|
}
|
|
printTable(os.Stdout, rows)
|
|
}
|
|
|
|
func printTrendJSONArray(results []trendResult) {
|
|
type point struct {
|
|
Ts int64 `json:"ts"`
|
|
Count int64 `json:"count"`
|
|
}
|
|
type out struct {
|
|
Source string `json:"source"`
|
|
Target string `json:"target"`
|
|
Points []point `json:"points"`
|
|
}
|
|
rows := make([]out, 0, len(results))
|
|
for _, r := range results {
|
|
if r.err != nil {
|
|
fmt.Fprintf(os.Stderr, "error from %s: %v\n", r.target, r.err)
|
|
continue
|
|
}
|
|
o := out{
|
|
Source: r.resp.Source,
|
|
Target: r.target,
|
|
Points: make([]point, len(r.resp.Points)),
|
|
}
|
|
for i, p := range r.resp.Points {
|
|
o.Points[i] = point{Ts: p.TimestampUnix, Count: p.Count}
|
|
}
|
|
rows = append(rows, o)
|
|
}
|
|
b, _ := json.Marshal(rows)
|
|
fmt.Println(string(b))
|
|
}
|