Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add column hostname #74

Closed
wants to merge 30 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
f0daf24
Add a hacked-together POC session recording page
spbnick Jun 1, 2017
f19b7dd
Refine session recording looks a bit
spbnick Jul 6, 2017
cd55ad3
Fix to month display
Jul 12, 2017
a55f711
Switch to let instead of var
sabbaka Jul 18, 2017
312f64e
Add date range filter
sabbaka Jul 18, 2017
82e958f
Refactor datepicker
sabbaka Jul 19, 2017
9eba192
Add filter by username
sabbaka Jul 19, 2017
291fc76
Add lookup of tlog UID
sabbaka Jul 25, 2017
f2e3275
Change to TLOG_REC
sabbaka Jul 25, 2017
a286554
Use className attr in recording list table
sabbaka Jul 31, 2017
19ce4e3
Restyle datepicker and userpicker
sabbaka Jul 31, 2017
d06fd74
Add styling for single recording
sabbaka Aug 1, 2017
80210bd
Add restart playback button
sabbaka Aug 2, 2017
c8bca49
Copy cockpit terminal component for expanding
sabbaka Aug 15, 2017
cc2340f
Make terminal resizable
sabbaka Aug 10, 2017
b831514
Improve design
sabbaka Aug 14, 2017
0877af6
Add URL response for filters
sabbaka Aug 18, 2017
9a8be61
Add buttons and hotkeys for playback control
sabbaka Aug 29, 2017
3c22866
Fix console error for ended session
sabbaka Aug 31, 2017
27e3d4a
Fix "if" code style
sabbaka Aug 31, 2017
b5a7d90
Add reason error code to close channels
sabbaka Sep 12, 2017
aff898d
Add recording list sorting
sabbaka Sep 4, 2017
6578d7d
Replace tlog-play with browser-based player
spbnick Sep 13, 2017
2f1bf04
Change datepicker to datetimepicker
sabbaka Sep 7, 2017
231899f
Fix sign output in number padding
spbnick Sep 13, 2017
1dfcce7
Fix terminal width
sabbaka Oct 17, 2017
8579db4
Add playback scaling
sabbaka Nov 27, 2017
cfb2121
Add column hostname
sabbaka Jan 9, 2018
984d344
Add hostname conditional display
sabbaka Jan 10, 2018
fd4fb07
Add hostname filter
sabbaka Jan 10, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ WEBPACK_PACKAGES = \
playground \
realmd \
selinux \
session_recording \
shell \
sosreport \
ssh \
Expand Down
6,456 changes: 6,456 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@
"angular-route": "1.3.20",
"bootstrap": "3.3.7",
"bootstrap-datepicker": "1.4.1",
"bootstrap-datetime-picker": "2.4.4",
"c3": "0.4.18",
"d3": "3.5.17",
"jquery": "2.2.4",
"jquery-flot": "0.8.3",
"jquery-resizable": "1.0.6",
"kubernetes-container-terminal": "1.0.3",
"kubernetes-object-describer": "1.1.4",
"kubernetes-topology-graph": "0.0.23",
Expand Down
37 changes: 37 additions & 0 deletions pkg/session_recording/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!DOCTYPE html>
<!--
This file is part of Cockpit.

Copyright (C) 2017 Red Hat, Inc.

Cockpit is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.

Cockpit is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License
along with Cockpit; If not, see <http://www.gnu.org/licenses/>.
-->
<html>

<head>
<title translate>Journal</title>
<meta charset="utf-8">
<link href="../base1/patternfly.css" rel="stylesheet">
<link href="recordings.css" rel="stylesheet">
<script type="text/javascript" src="../base1/jquery.js"></script>
<script type="text/javascript" src="../base1/cockpit.js"></script>
<script src="../*/po.js"></script>
</head>

<body>
<div id="view"/>
<script type="text/javascript" src="recordings.js"></script>
</body>

</html>
15 changes: 15 additions & 0 deletions pkg/session_recording/manifest.json.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": "@VERSION@",
"name": "session_recording",

"requires": {
"cockpit": "122"
},

"menu": {
"index": {
"label": "Session Recording",
"order": 100
}
}
}
Loading