grafana/pkg/services/ngalert/api/tooling
Alexander Weaver 7a171fd14a
Regenerate openapidocs at 1.21.8 to match ci (#84037)
* Regenerate openapidocs at 1.21.8 to match ci

* Adjust trigger to work on the actual outputted files

* Also put go.mod and go.sum in the triggers

* manually fix

* Make an arbitrary change rather than touching the trigger to force a run

* Drop all triggers - run all the time

* Print diff - taken from @papagian's PR

* Manual fixes to swagger doc

---------

Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
2024-03-06 16:08:45 -06:00
..
cmd/clean-swagger Chore: use any rather than interface{} (#74066) 2023-08-30 18:46:47 +03:00
definitions Alerting: Use Alertmanager types extracted into grafana/alerting (#83824) 2024-03-06 20:48:32 +00:00
swagger-codegen/templates ngalert openapi: Use same basePath as rest of Grafana (#79025) 2024-01-17 11:53:16 -05:00
.gitignore Alerting: Add support for documenting which alerting APIs are stable (#49018) 2022-05-23 14:08:27 -05:00
api.json Regenerate openapidocs at 1.21.8 to match ci (#84037) 2024-03-06 16:08:45 -06:00
index.html Swagger: Add integrity attributes (#48396) 2022-05-02 09:49:49 +02:00
Makefile ngalert make: Support GNU install on Darwin (#78482) 2023-12-04 10:11:39 -05:00
post.json Regenerate openapidocs at 1.21.8 to match ci (#84037) 2024-03-06 16:08:45 -06:00
README.md fix typos (#83414) 2024-02-26 10:52:44 -07:00
spec.json Regenerate openapidocs at 1.21.8 to match ci (#84037) 2024-03-06 16:08:45 -06:00

What

This aims to define the unified alerting API as code. It generates OpenAPI definitions from go structs. It also generates server/route stubs based on our documentation.

Running

make - regenerate everything - documentation and server stubs. make serve - regenerate the Swagger document, and host rendered docs on port 80. view api

Requires

Why

The current state of Swagger extraction from golang is relatively limited. It's easier to generate server stubs from an existing Swagger doc, as there are limitations with producing a Swagger doc from a hand-written API stub. The current extractor instead relies on comments describing the routes, but the comments and actual implementation may drift, which we don't want to allow.

Instead, we use a hybrid approach - we define the types in Golang, with comments describing the routes, in a standalone package with minimal dependencies. From this, we produce a Swagger doc, and then turn the Swagger doc back into a full-blown server stub.

Stability

We have some endpoints that we document publicly as being stable, and others that we consider unstable. The stable endpoints are documented in api.json, where all endpoints are available in post.json.

To stabilize an endpoint, add the stable tag to its route comment:

// swagger:route GET /provisioning/contact-points provisioning stable RouteGetContactpoints