mirror of
https://github.com/portainer/portainer.git
synced 2025-08-02 12:25:22 +02:00
Add more information to the settings page
Now shows all information we can get from the info object. Exceptions: Name and NEventsListener, those don't seem to work.
This commit is contained in:
parent
b00b61ce25
commit
f32aadedfb
3 changed files with 180 additions and 24 deletions
68
dist/dockerui.js
vendored
68
dist/dockerui.js
vendored
|
@ -1512,26 +1512,78 @@ angular.module("app/components/settings/settings.html", []).run(["$templateCache
|
|||
" <td>Debug:</td>\n" +
|
||||
" <td>{{ info.Debug }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>CPUs:</td>\n" +
|
||||
" <td>{{ info.NCPU }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>Total Memory:</td>\n" +
|
||||
" <td>{{ info.MemTotal }}MB</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>Operating System:</td>\n" +
|
||||
" <td>{{ info.OperatingSystem }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>Kernel Version:</td>\n" +
|
||||
" <td>{{ info.KernelVersion }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>ID:</td>\n" +
|
||||
" <td>{{ info.ID }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>Init SHA1</td>\n" +
|
||||
" <td>{{ info.InitSha1 }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>Labels:</td>\n" +
|
||||
" <td>{{ info.Labels }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>NFd:</td>\n" +
|
||||
" <td>File Descriptors:</td>\n" +
|
||||
" <td>{{ info.NFd }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>NGoroutines:</td>\n" +
|
||||
" <td>Goroutines:</td>\n" +
|
||||
" <td>{{ info.NGoroutines }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>Storage Driver:</td>\n" +
|
||||
" <td>{{ info.Driver }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>Storage Driver Status:</td>\n" +
|
||||
" <td>{{ info.DriverStatus }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>Execution Driver:</td>\n" +
|
||||
" <td>{{ info.ExecutionDriver }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>IPv4 Forwarding:</td>\n" +
|
||||
" <td>{{ info.IPv4Forwarding }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>Index Server Address:</td>\n" +
|
||||
" <td>{{ info.IndexServerAddress }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>Init Path:</td>\n" +
|
||||
" <td>{{ info.InitPath }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>Docker Root Directory:</td>\n" +
|
||||
" <td>{{ info.DockerRootDir }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>MemoryLimit:</td>\n" +
|
||||
" <td>Memory Limit:</td>\n" +
|
||||
" <td>{{ info.MemoryLimit }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>SwapLimit:</td>\n" +
|
||||
" <td>Swap Limit:</td>\n" +
|
||||
" <td>{{ info.SwapLimit }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" <tr>\n" +
|
||||
" <td>NFd:</td>\n" +
|
||||
" <td>{{ info.NFd }}</td>\n" +
|
||||
" </tr>\n" +
|
||||
" </tbody>\n" +
|
||||
" </table>\n" +
|
||||
"</div>\n" +
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue