Deni Simon
Deni Simon

Reputation: 161

Is there a way to export value stream map in gocd?

In GoCD pipeline, we can export a pipeline metadata as json or xml. Same way, is it possible to export all the pipelines that belongs to a value stream map?

Upvotes: 1

Views: 168

Answers (1)

Ashwanth Kumar
Ashwanth Kumar

Reputation: 677

There's an undocumented API that I use in gocd-janitor.

The API works like this

"/go/pipelines/value_stream_map/" + pipeline + "/" + version + ".json"
  • pipeline is the name of the pipeline
  • version is the pipeline counter for which you need the VSM.

PS: Removing the .json at the end should open the VSM for that pipeline and run in a HTML format.

Upvotes: 0

Related Questions