Talaiot icon indicating copy to clipboard operation
Talaiot copied to clipboard

Simple and extensible plugin to track task times in your Gradle Project.

Results 37 Talaiot issues
Sort by recently updated
recently updated
newest added

Hi. In `ExecutionReport` I [found](https://github.com/cdsap/Talaiot/blob/52013d0b8b50d92f42b283246f0ffa8b2acdc9e4/talaiot/src/main/kotlin/com/cdsap/talaiot/entities/ExecutionReport.kt#L56) method that estimates critical path of build. I think that this estimation is working well on builds with high count of workers. But I doubt...

I'm not fluent in gradle as well I'm not fluent with conversion groovy to kotlin gradle. It took me some time to find corresponded groovy code for the configurations.

When there are problems of connectivity with `RethinkDbPublisher` executions hangs with: ``` [RethinkDbPublisher]: ================ [RethinkDbPublisher]: RethinkDbPublisher [RethinkDbPublisher]: publishBuildMetrics: true [RethinkDbPublisher]: publishTaskMetrics: true [RethinkDbPublisher]: ================ [Talaiot]: Shutting down executor. Not yet....

When you run Gradle sync in AndroidStudio you will see a very long line of requested tasks(in our case it is 10k characters). It contains a lot of generateDebugSources tasks...

Abstract the creation of `CustomPublishers` with a configuration like: ``` class CustomPublisherConfiguration : PublisherConfiguration { override var name = "CustomPublisherConfiguration" override var publishBuildMetrics = true override var publishTaskMetrics = true...

I can not exec gradle clean. Folder "build\reports\talaiot\timeline" is lock ![image](https://user-images.githubusercontent.com/15683852/62114371-bde79500-b2e0-11e9-9669-b1242dbb04d6.png)

bug

Add new Dashboard for Prometheus and update the publisher to fit requirements of release 1.0.0

Gradle: 8.6 AGP: 8.2.2 Talaiot: 2.0.3 After running project build with `--scan` option (or with `./gradlew --warning-mode all --stacktrace`) we got 3 deprecations from gradle: ``` The Provider.forUseAtConfigurationTime method has...

👋 hi there, I think I located an issue in the plugin related to configuration cache. #### Actual behavior When setting a new value of Gradle configuration, like `org.gradle.workers.max` or...

I'm aware we can use buildTags and taskTags to filter certain keys but here I can mark all my custom properties either as a tag or field. is there a...