Skip to content

Commit a598977

Browse files
author
iprever
committed
Naming changed.
1 parent 592b079 commit a598977

File tree

9 files changed

+29
-29
lines changed

9 files changed

+29
-29
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 Preversoft,Inc.
3+
Copyright (c) 2015 Preversoft, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# prever-apps-monitor-mysqlmariadb
1+
# pang-apps-monitor-mysqlmariadb
22
Mysql and Mariadb monitoring application for Traffic, Queries per second, Reads/Writes per second and more.
3-
You can monitor and access your database using prever.io cloud web service on mobile, tablet and Laptop anywhere.
3+
You can monitor and access your database using pangdata.com cloud web service on mobile, tablet and Laptop anywhere.
44

55
## Screen shot
66
###### Realtime monitoring ######
@@ -10,9 +10,9 @@ You can monitor and access your database using prever.io cloud web service on mo
1010
![Mobile](https://github.com/pang-apps/pang-apps-monitor-mysqlmariadb/blob/master/screen-shot-2.png "Realtime monitoring")
1111

1212
## Getting Started
13-
#### Sign up for Prever.io ####
14-
Before you begin, you need an Prever.io account.
15-
Please visit <a href="http://prever.io" target="_blank">http://prever.io</a> and create an account and retrieve your user key in user profile.
13+
#### Sign up for Pangdata.com ####
14+
Before you begin, you need an Pangdata.com account.
15+
Please visit <a href="http://pangdata.com" target="_blank">http://pangdata.com</a> and create an account and retrieve your user key in user profile.
1616

1717
#### Minimum requirements ####
1818
To run the application you will need **Java 1.5+**.
@@ -23,20 +23,20 @@ Very easy to install ^^.
2323
##### Step 1 #####
2424

2525
###### Windows ######
26-
Download a <a href="https://github.com/pang-apps/pang-apps-monitor-mysqlmariadb/releases/download/1.0/prever-apps-monitor-mysqlmariadb.zip">Prever mysql/mariadb monitoring application</a> file and unzip it.
26+
Download a <a href="https://github.com/pang-apps/pang-apps-monitor-mysqlmariadb/releases/download/1.0/pang-apps-monitor-mysqlmariadb.zip">Pang Data mysql/mariadb monitoring application</a> file and unzip it.
2727

2828
###### Linux ######
2929
```
30-
wget https://github.com/pang-apps/pang-apps-monitor-mysqlmariadb/releases/download/1.0/prever-apps-monitor-mysqlmariadb.tar
31-
tar -xvf prever-apps-monitor-mysqlmariadb.tar
30+
wget https://github.com/pang-apps/pang-apps-monitor-mysqlmariadb/releases/download/1.0/pang-apps-monitor-mysqlmariadb.tar
31+
tar -xvf pang-apps-monitor-mysqlmariadb.tar
3232
```
33-
##### Step 2: Configure prever.properties file #####
34-
cd prever-apps-monitor-mysqlmariadb/conf
33+
##### Step 2: Configure pang.properties file #####
34+
cd pang-apps-monitor-mysqlmariadb/conf
3535

36-
Confgiure your account and user key in prever.properties.
36+
Confgiure your account and user key in pang.properties.
3737
```bash
38-
prever.username=your username in prever.io
39-
prever.userkey=your user key in prever.io
38+
pang.username=your username in pangdata.com
39+
pang.userkey=your user key in pangdata.com
4040
```
4141

4242
Confgiure database connection properties
@@ -83,18 +83,18 @@ status.writes_per_second = true
8383
status.reads_per_second = true
8484
```
8585

86-
Note: User key can be found in your profile of Prever.io
86+
Note: User key can be found in your profile of Pangdata.com
8787
##### Step 3: Run #####
8888
###### Windows ######
8989
```
90-
prever/prever.bat
90+
pang-apps-monitor-mysqlmariadb/pang.bat
9191
```
9292
###### Linux ######
9393
```
94-
prever/./prever.sh
94+
pang-apps-monitor-mysqlmariadb/pang.sh
9595
```
9696
##### Step 4: Access your devices #####
97-
Register your device in Prever.io
97+
Register your device in Pangdata.com
9898

9999
Login your account.
100100
See main dashborad and you can find unregistered device.

pang-apps-monitor-mysqlmariadb/conf/logback.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<configuration scan="true" scanPeriod="1 minutes">
22
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
3-
<file>./logs/prever.log</file>
3+
<file>./logs/pang.log</file>
44
<rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
5-
<fileNamePattern>./logs/prever.%i.log</fileNamePattern>
5+
<fileNamePattern>./logs/pang.%i.log</fileNamePattern>
66
<minIndex>1</minIndex>
77
<maxIndex>21</maxIndex>
88
</rollingPolicy>

pang-apps-monitor-mysqlmariadb/conf/prever.properties renamed to pang-apps-monitor-mysqlmariadb/conf/pang.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#Prever.io reserved properties
2-
prever.username=your username in prever.io
3-
prever.userkey=your userkey in prever.io
4-
# Search schedule period(seconds)
5-
prever.period = 10
2+
pang.username=your username in prever.io
3+
pang.userkey=your userkey in prever.io
4+
# Data sending schedule period(seconds)
5+
pang.period = 10
66

77
#Don't worry. We do not send any information about connection properties
88
jdbc.driverClassName=com.mysql.jdbc.Driver
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env bash
22

3-
ps -ef | grep java | grep -v grep | grep io.prever.apps.monitor.MysqlMariaDBMonitor | grep -v PID | awk '{print "kill -9 "$2}' | sh -x
3+
ps -ef | grep java | grep -v grep | grep com.pangdata.apps.monitor.MysqlMariaDBMonitor | grep -v PID | awk '{print "kill -9 "$2}' | sh -x
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
tail -f ./logs/prever.log
1+
tail -f ./logs/pang.log
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
java -cp ./libs/*;./conf com.pangdata.apps.monitor.MysqlMariaDBMonitor

pang-apps-monitor-mysqlmariadb/prever.sh renamed to pang-apps-monitor-mysqlmariadb/pang.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ JMX="$JMX -Dcom.sun.management.jmxremote.authenticate=false"
1010
JMX="$JMX -Dcom.sun.management.jmxremote.ssl=false"
1111

1212
#To enable JMX
13-
#nohup $JMX java -cp ./libs/*:./conf io.prever.apps.monitor.MysqlMariaDBMonitor > /dev/null 2>&1&
13+
#nohup $JMX java -cp ./libs/*:./conf com.pangdata.apps.monitor.MysqlMariaDBMonitor > /dev/null 2>&1&
1414

15-
nohup java -cp ./libs/*:./conf io.prever.apps.monitor.MysqlMariaDBMonitor > /dev/null 2>&1&
15+
nohup java -cp ./libs/*:./conf com.pangdata.apps.monitor.MysqlMariaDBMonitor > /dev/null 2>&1&

pang-apps-monitor-mysqlmariadb/prever.bat

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)