From 547b8dae6f1df61622946743069dccfefe7f8518 Mon Sep 17 00:00:00 2001 From: manask322 Date: Sun, 20 Oct 2024 23:02:32 +0530 Subject: [PATCH] test add headers round tripper Signed-off-by: manask322 --- api/prometheus/v1/example_test.go | 39 +++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/api/prometheus/v1/example_test.go b/api/prometheus/v1/example_test.go index 1247587..9cd4286 100644 --- a/api/prometheus/v1/example_test.go +++ b/api/prometheus/v1/example_test.go @@ -199,6 +199,45 @@ func ExampleAPI_queryRangeWithAuthBearerToken() { fmt.Printf("Result:\n%v\n", result) } +func ExampleAPI_queryRangeWithAuthBearerTokenHeadersRoundTripper() { + client, err := api.NewClient(api.Config{ + Address: "http://demo.robustperception.io:9090", + // We can use amazing github.com/prometheus/common/config helper! + RoundTripper: config.NewHeadersRoundTripper( + &config.Headers{ + Headers: map[string]config.Header{ + "Authorization": { + Values: []string{"Bearer secret"}, + }, + }, + }, + api.DefaultRoundTripper, + ), + }) + if err != nil { + fmt.Printf("Error creating client: %v\n", err) + os.Exit(1) + } + + v1api := v1.NewAPI(client) + ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second) + defer cancel() + r := v1.Range{ + Start: time.Now().Add(-time.Hour), + End: time.Now(), + Step: time.Minute, + } + result, warnings, err := v1api.QueryRange(ctx, "rate(prometheus_tsdb_head_samples_appended_total[5m])", r) + if err != nil { + fmt.Printf("Error querying Prometheus: %v\n", err) + os.Exit(1) + } + if len(warnings) > 0 { + fmt.Printf("Warnings: %v\n", warnings) + } + fmt.Printf("Result:\n%v\n", result) +} + func ExampleAPI_series() { client, err := api.NewClient(api.Config{ Address: "http://demo.robustperception.io:9090",