Gustavo Bini

Results 10 comments of Gustavo Bini

I might have misunderstood this issue, but is this not what it does right now when doing an `upgrade --dry-run`?

> Anyone with the necessary knowledge and willing to work on the issue is welcome. @klesh I'm new to Devlake but very used to Jenkins and its APIs. I will...

> As to the errors "cannot assign requested address" in your backend log, considering you are using docker, I think it's some limilations in docker, can you have a try...

@d4x1 I fixed this by increasing the resources of the cloud-sql-proxy sidecar container. However, I still think it's valid to improve the way data is fetched.

I had many issues installing it in macOS that I personally gave up. I went the Docker Compose route using the recently added `watch` command. I also added a layer...

I also work with Google Cloud, so I am interested in this too. Based on my knowledge, a customized webhook that understands alerting events from Google Cloud is enough. This...

> Hi @gustavobini, are you currently using that approach? or is it a suggestion? It's a suggestion for the plugin. However, if you wanna solve this problem today, you could...

https://github.com/apache/incubator-devlake/blob/6dca288d5e33bb55a8b98995df97ead71b76a082/backend/plugins/jenkins/tasks/build_collector.go#L143 does not collect data incrementally. It could use `NewStatefulApiCollectorForFinalizableEntity` but that does not support iterators. What about changing `collectMultiBranchJobApiBuilds` to call https://github.com/apache/incubator-devlake/blob/6dca288d5e33bb55a8b98995df97ead71b76a082/backend/plugins/jenkins/tasks/build_collector.go#L72 for each entry in the iterator? This...

> https://github.com/apache/incubator-devlake/blob/6dca288d5e33bb55a8b98995df97ead71b76a082/backend/plugins/jenkins/tasks/build_collector.go#L143 > > does not collect data incrementally. It could use `NewStatefulApiCollectorForFinalizableEntity` but that does not support iterators. What about changing `collectMultiBranchJobApiBuilds` to call > https://github.com/apache/incubator-devlake/blob/6dca288d5e33bb55a8b98995df97ead71b76a082/backend/plugins/jenkins/tasks/build_collector.go#L72 > > for...