Skip to content

Commit

Permalink
v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshinorin committed Jul 8, 2018
1 parent 811b149 commit 7bb817c
Show file tree
Hide file tree
Showing 12 changed files with 9 additions and 9 deletions.
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# Features

This plugin provides monitoring page which contains machine information, resources, processes, Java information and GitBucket's log for [GitBucket](//github.com/gitbucket/gitbucket) Administrator.
This plugin provides monitoring page which contains machine information, resources, processes, and Java information for [GitBucket](//github.com/gitbucket/gitbucket) Administrator.

All viewable informations are below.

Expand All @@ -16,18 +16,16 @@ All viewable informations are below.
* Machine's Load average
* Machine's Tasks (Running, Sleeping, Stopped, Zombie)
* Java system properties and memory
* **(Deprecated)** LogBack settings
* Will be deleted in the next version. Please use [gitbucket-logs-plugin](https://github.com/YoshinoriN/gitbucket-logs-plugin).
* **(Deprecated)** GitBucket's log
* Will be deleted in the next version. Please use [gitbucket-logs-plugin](https://github.com/YoshinoriN/gitbucket-logs-plugin).
* **(Obsolete)** ~~LogBack settings~~ Please use [gitbucket-logs-plugin](https://github.com/YoshinoriN/gitbucket-logs-plugin).
* **(Obsolete)** ~~GitBucket's log~~ Please use [gitbucket-logs-plugin](https://github.com/YoshinoriN/gitbucket-logs-plugin).

# Images

||||
|:-------:|:-------:|:-------:|
|![menu](https://raw.githubusercontent.com/YoshinoriN/gitbucket-monitoring-plugin/master/doc/images/menu.png)|![system](https://raw.githubusercontent.com/YoshinoriN/gitbucket-monitoring-plugin/master/doc/images/system.png)|![envval](https://raw.githubusercontent.com/YoshinoriN/gitbucket-monitoring-plugin/master/doc/images/envval.png)|
|![resources](https://raw.githubusercontent.com/YoshinoriN/gitbucket-monitoring-plugin/master//doc/images/resources.png)|![process](https://raw.githubusercontent.com/YoshinoriN/gitbucket-monitoring-plugin/master/doc/images/process.png)|![java-p](https://raw.githubusercontent.com/YoshinoriN/gitbucket-monitoring-plugin/master/doc/images/java-p.png)|
|![java-m](https://raw.githubusercontent.com/YoshinoriN/gitbucket-monitoring-plugin/master/doc/images/java-m.png)|![logback](https://raw.githubusercontent.com/YoshinoriN/gitbucket-monitoring-plugin/master/doc/images/logback.png)|![gitbucketlog](https://raw.githubusercontent.com/YoshinoriN/gitbucket-monitoring-plugin/master/doc/images/gitbucketlog.png)|
|![java-m](https://raw.githubusercontent.com/YoshinoriN/gitbucket-monitoring-plugin/master/doc/images/java-m.png)|||

# Download & Installation

Expand All @@ -42,6 +40,7 @@ Goto the `System Administration` menu, you can see `Monitoring` section.

|Plugin version|GitBucket version|
|:-------------:|:-------:|
|3.0.0|4.25.0 - |
|2.0.0|4.23 - 4.25.0|
|1.2.0|4.10 - 4.22.0|
|1.1.0|4.10 - 4.21.x|
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
val Name = "gitbucket-monitorting-plugin"
val Organization = "net.yoshinorin"
val Version = "2.0.0"
val Version = "3.0.0"

lazy val root = project in file(".")

Expand Down
Binary file modified doc/images/envval.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed doc/images/gitbucketlog.png
Binary file not shown.
Binary file modified doc/images/java-m.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified doc/images/java-p.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed doc/images/logback-error.png
Binary file not shown.
Binary file removed doc/images/logback.png
Binary file not shown.
Binary file modified doc/images/menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified doc/images/resources.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified doc/images/system.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions src/main/scala/Plugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ import io.github.gitbucket.solidbase.model.Version
class Plugin extends gitbucket.core.plugin.Plugin {
override val pluginId: String = "monitoring"
override val pluginName: String = "Monitoring Plugin"
override val description: String = "Display machine information, resources, processes, Java information."
override val description: String = "Display machine information, resources, processes and Java information."
override val versions: List[Version] = List(
new Version("1.0.0"),
new Version("1.1.0"),
new Version("1.2.0"),
new Version("2.0.0")
new Version("2.0.0"),
new Version("3.0.0")
)

override val systemSettingMenus: Seq[(Context) => Option[Link]] = Seq(
Expand Down

0 comments on commit 7bb817c

Please sign in to comment.