-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(BRIDGE-122): added observability request and types to GPA
feat(BRIDGE-122): added priority
- Loading branch information
1 parent
dd607af
commit 7a0a313
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package proton | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/go-resty/resty/v2" | ||
) | ||
|
||
func (c *Client) SendObservabilityBatch(ctx context.Context, req ObservabilityBatch) error { | ||
return c.do(ctx, func(r *resty.Request) (*resty.Response, error) { | ||
return r.SetHeader("Priority", "u=6").SetBody(req).Post("/data/v1/metrics") | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package proton | ||
|
||
import "time" | ||
|
||
type ObservabilityBatch struct { | ||
Metrics []ObservabilityMetric `json:"Metrics"` | ||
} | ||
|
||
type ObservabilityMetric struct { | ||
Name string `json:"Name"` | ||
Version int `json:"Version"` | ||
Timestamp time.Time `json:"Timestamp"` | ||
Data interface{} `json:"Data"` | ||
} |