Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿš€ Add http verb to TB (#1286)

authored by

Thibault Le Ouay and committed by
GitHub
261628c0 e9f12b81

+3
+3
apps/checker/handlers/checker.go
··· 28 28 WorkspaceID string `json:"workspaceId"` 29 29 MonitorID string `json:"monitorId"` 30 30 URL string `json:"url"` 31 + Method string `json:"method"` 31 32 Region string `json:"region"` 32 33 Message string `json:"message,omitempty"` 33 34 Timing string `json:"timing,omitempty"` ··· 149 150 Timestamp: res.Timestamp, 150 151 CronTimestamp: req.CronTimestamp, 151 152 URL: req.URL, 153 + Method: req.Method, 152 154 Timing: string(timingAsString), 153 155 Headers: string(headersAsString), 154 156 Body: string(res.Body), ··· 293 295 data := PingData{ 294 296 ID: id.String(), 295 297 URL: req.URL, 298 + Method: req.Method, 296 299 Region: h.Region, 297 300 Message: err.Error(), 298 301 CronTimestamp: req.CronTimestamp,