mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
system/innotop: Added (MySQL / InnoDB monitor application)
This commit is contained in:
parent
05bf91800d
commit
389b97623a
5 changed files with 130 additions and 0 deletions
8
system/innotop/README
Normal file
8
system/innotop/README
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
MySQL and InnoDB transaction/status monitor. Like 'top' for MySQL.
|
||||||
|
|
||||||
|
Displays queries, InnoDB transactions, lock waits, deadlocks, foreign key
|
||||||
|
errors, open tables, replication status, buffer information, row
|
||||||
|
operations, logs, I/O operations, load graph, and more.
|
||||||
|
You can monitor many servers at once with innotop.
|
||||||
|
|
||||||
|
This requires perl-TermReadKey.
|
21
system/innotop/innotop-1.8.0-test.patch
Normal file
21
system/innotop/innotop-1.8.0-test.patch
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
diff -Naur innotop-1.8.0-orig/t/InnoDBParser.t innotop-1.8.0/t/InnoDBParser.t
|
||||||
|
--- innotop-1.8.0-orig/t/InnoDBParser.t 2010-11-06 17:32:11.000000000 +0200
|
||||||
|
+++ innotop-1.8.0/t/InnoDBParser.t 2010-12-09 15:22:01.000000000 +0200
|
||||||
|
@@ -5,7 +5,7 @@
|
||||||
|
use Test::More tests => 1;
|
||||||
|
use Data::Dumper;
|
||||||
|
|
||||||
|
-require "../innotop";
|
||||||
|
+require "innotop";
|
||||||
|
my $innodb_parser = new InnoDBParser;
|
||||||
|
|
||||||
|
sub read_file {
|
||||||
|
@@ -18,7 +18,7 @@
|
||||||
|
}
|
||||||
|
|
||||||
|
my %tests = (
|
||||||
|
- 'innodb-status-001' => {
|
||||||
|
+ 't/innodb-status-001' => {
|
||||||
|
IB_bp_add_pool_alloc => '0',
|
||||||
|
IB_bp_awe_mem_alloc => 0,
|
||||||
|
IB_bp_buf_free => '8172',
|
72
system/innotop/innotop.SlackBuild
Normal file
72
system/innotop/innotop.SlackBuild
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Slackware build script for innotop
|
||||||
|
|
||||||
|
# Copyright 2010 Heinz Wiesinger, Amsterdam, The Netherlands
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use of this script, with or without modification, is
|
||||||
|
# permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# 1. Redistributions of this script must retain the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||||
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||||
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||||
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||||
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||||
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
PRGNAM=innotop
|
||||||
|
VERSION=1.8.0
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
ARCH="noarch"
|
||||||
|
|
||||||
|
CWD=$(pwd)
|
||||||
|
TMP=${TMP:-/tmp/SBo}
|
||||||
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
rm -rf $PKG
|
||||||
|
mkdir -p $TMP $PKG $OUTPUT
|
||||||
|
cd $TMP
|
||||||
|
rm -rf $PRGNAM-$VERSION
|
||||||
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||||
|
cd $PRGNAM-$VERSION
|
||||||
|
chown -R root:root .
|
||||||
|
chmod -R u+w,go+r-w,a-s .
|
||||||
|
|
||||||
|
patch -p1 -i $CWD/innotop-1.8.0-test.patch
|
||||||
|
|
||||||
|
perl Makefile.PL INSTALLDIRS=vendor
|
||||||
|
make
|
||||||
|
make test
|
||||||
|
make install DESTDIR=$PKG
|
||||||
|
|
||||||
|
#Move man-pages to appropriate place
|
||||||
|
mv $PKG/usr/share/man $PKG/usr/
|
||||||
|
|
||||||
|
find $PKG -name perllocal.pod -o -name ".packlist" -o -name "*.bs" | xargs rm -f || true
|
||||||
|
find $PKG -depth -type d -empty -exec rm -rf {} \;
|
||||||
|
|
||||||
|
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a Changelog COPYING INSTALL MANIFEST \
|
||||||
|
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
|
||||||
|
mkdir -p $PKG/install
|
||||||
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||||
|
|
||||||
|
cd $PKG
|
||||||
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
system/innotop/innotop.info
Normal file
10
system/innotop/innotop.info
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
PRGNAM="innotop"
|
||||||
|
VERSION="1.8.0"
|
||||||
|
HOMEPAGE="http://code.google.com/p/innotop/"
|
||||||
|
DOWNLOAD="http://innotop.googlecode.com/files/innotop-1.8.0.tar.gz"
|
||||||
|
MD5SUM="703ba1036bc1067650b558eecc3c15cd"
|
||||||
|
DOWNLOAD_x86_64=""
|
||||||
|
MD5SUM_x86_64=""
|
||||||
|
MAINTAINER="Heinz Wiesinger"
|
||||||
|
EMAIL="pprkut@liwjatan.at"
|
||||||
|
APPROVED="Niels Horn"
|
19
system/innotop/slack-desc
Normal file
19
system/innotop/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# HOW TO EDIT THIS FILE:
|
||||||
|
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||||
|
# up the first '|' above the ':' following the base package name, and the '|'
|
||||||
|
# on the right side marks the last column you can put a character in. You must
|
||||||
|
# make exactly 11 lines for the formatting to be correct. It's also
|
||||||
|
# customary to leave one space after the ':'.
|
||||||
|
|
||||||
|
|-----handy-ruler------------------------------------------------------|
|
||||||
|
innotop: innotop (MySQL / InnoDB monitor application)
|
||||||
|
innotop:
|
||||||
|
innotop: MySQL and InnoDB transaction/status monitor. Like 'top' for MySQL.
|
||||||
|
innotop: Displays queries, InnoDB transactions, lock waits, deadlocks, foreign
|
||||||
|
innotop: key errors, open tables, replication status, buffer information, row
|
||||||
|
innotop: operations, logs, I/O operations, load graph, and more.
|
||||||
|
innotop: You can monitor many servers at once with innotop.
|
||||||
|
innotop:
|
||||||
|
innotop: Homepage: http://code.google.com/p/innotop/
|
||||||
|
innotop:
|
||||||
|
innotop:
|
Loading…
Reference in a new issue