forked from ganglia/ganglia-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for overlay events to inspect graphs
- Loading branch information
pcpiela
committed
Aug 27, 2012
1 parent
8b1d366
commit eee0ef5
Showing
6 changed files
with
701 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#event_tooltip { | ||
position: absolute; | ||
display: none; | ||
border: 1px solid #fdd; | ||
padding: 2px; | ||
background-color: #fee; | ||
opacity: 0.80; | ||
font-size: smaller; | ||
cursor:move; | ||
z-index:2000; | ||
} | ||
|
||
#event_tooltip #title { | ||
font-weight: bold; | ||
} | ||
|
||
#event_tooltip #type { | ||
font-style: italic; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
include_once "./functions.php"; | ||
$event_array = ganglia_events_get(intval($_GET['start']), intval($_GET['end'])); | ||
header("Content-type: application/json"); | ||
print json_encode($event_array); | ||
exit(0); | ||
?> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.