we've got a large number of repos and I would like to get an overview of the sizes of each of these repos. Is there a way to get the repository size available under settings/repository details via REST API call?
Hi Robbin,
Unfortunately that information isn't directly accessible via any Stash REST API:
It would be trivial to add this to a plugin - you just need to expose this method:
https://developer.atlassian.com/static/javadoc/stash/latest/api/reference/com/atlassian/stash/repository/RepositoryService.html#getSize%28com.atlassian.stash.repository.Repository%29
Let me know if you're interesting, I'm happy to show you how this could be done.
Cheers,
Charles
hi, I tried last time to write plugins, and currently I simply don't have the time right now to learn java, eclipse, maven etc all things that are needed to write plugins. If you can show me to to get the repository size count from stash that would be appreciated.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Robbin,
Try this:
https://bitbucket.org/cofarrell/stash-repo-size-plugin/downloads#download-318851
Instructions here:
https://bitbucket.org/cofarrell/stash-repo-size-plugin/overview
Charles
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
that was exactly what I needed! Could be nice if the rawSize and size were parameters for /rest/reposize/latest/projects/$proj/repos/$repo, but this absolutely works! thank you, it's very much appreciated.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Robbin, what do you mean parameters sorrry?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
what I mean was that it would be nice it sizeRaw and size were part of the json parameters returned by /rest/api/1.0/projects/$prj/repos/$repo, but your solution works excellent. And I do appreciate the example source code, I'll have a look at it when time allows and see if I can pick up writing plugins.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
might be my vault, my brain hurts from trying to juggle to many tasks at the same time.
My first thought was to look for repository sizes when doing for example: "curl https://stash.silabs.com/rest/api/1.0/projects/cad/repos/gitbm". I was hoping that sizeRaw and size would have been part of the json string returned.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My apologies Robbin, I'm a little slow this morning, I'm still not sure what you mean (and would like to). Could you show me an example of the JSON output you were thinking of?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ohhh. Now I see.
Yeah that's not really possible in a plugin - I would have to update core Stash (and then you would have to wait for the next release). Given that getting the size of the repository is not cheap/free I suspect that's not likely to happen. Sorry. :(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ok, perhaps it might become available as /rest/api/1.0/projects/{}/repos/{}/size or /rest/api/1.0/projects/{}/repos/{}/settings one day. Until then I'm good with this plugin.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Does this plugin still work with the newer 5.x versions of Bitbucket?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Looks like bit bucket makes following simple AJAX call (http get) when it tries to get the aprox size on it's UI:
https://<Git URL>/projects/<project name>/repos/<repo name>/sizes
It can easily be converted to a curl and can work as an API...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes this is do-able gives back the following json
{u'attachments': 0, u'repository': 642}
Thanks for the answer, i guess this can change at any time but it's better than nothing.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have a small python script that will get you this info:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.