Skip to main content
Solved

Cribl Upgrade Path Settings Lacking Direct Download URL For Past Release Versions

  • March 28, 2026
  • 4 replies
  • 5 views

This message originated from Cribl Community Slack.
Click here to view the original link.

Is there an easy way to get the download URL for past Cribl release versions? For example, we are upgrading to 4.16.1 and I want to figure out where I can find this: https[:]//cdn.cribl.io/dl/4.16.1/cribl-4.16.1-20904e45-linux-x64.tgz so I can configure it in the path settings in the upgrade section of the UI. My solution now is to download the version I want, copy the file name, and reconstruct the URL. I would like to simplify this if possible.

Best answer by Jon Rust

https://cdn.cribl.io/dl/cribl_version_urls.json

4 replies

Jon Rust
Forum|alt.badge.img
  • Employee
  • Answer
  • March 28, 2026

  • Employee
  • March 28, 2026
Well I will be damned @user I didn't know we had a json output of the downloads....

Jon Rust
Forum|alt.badge.img
  • Employee
  • March 28, 2026
my little fish shell function to pretty-fy it
function cdload
    set url "https://cdn.cribl.io/dl/cribl_version_urls.json"
    echo "URL: $url"
    if test "$argv" = "latest"
        echo "retrieving latest only, | jq '.[(length - 1)]'"
        curl -s $url | jq '.[(length - 1)]'
    else
        echo "retrieving all"
        curl -s $url
    end
echo "use | jq .win_msi to zero in on a release"
end

  • Author
  • Inspiring
  • March 28, 2026
Thank you!