Skip to content

Commit

Permalink
change default period to 30 seconds
Browse files Browse the repository at this point in the history
remove queries from default
  • Loading branch information
derek-bh committed Nov 7, 2016
1 parent a01d813 commit 263befa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions pang-apps-monitor-mysqlmariadb/conf/pang.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pang.username=your username in pangdata
pang.userkey=your userkey in pangdata
# Data sending schedule period(seconds)
pang.period = 10
pang.period = 30
pang.prefix =

#Don't worry. We do not send any information about connection properties
Expand All @@ -25,7 +25,7 @@ status.Threads_connected = true
#This value provides a benchmark to help you decide the maximum number of connections your server should support. It can also help in traffic analysis.
status.Max_used_connections = true
status.Cpu_time = false
status.Queries = true
status.Queries = false
status.Memory_used = false
status.Innodb_deadlocks = false
# Performing filesystem reads for database indexes slows query performance. If this variable is high, it indicates that MySQL's key cache is overloaded and should be reconfigured.
Expand Down
14 changes: 7 additions & 7 deletions src/test/resources/pang.properties
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#Prever.io reserved properties
pang.username=your username in pangdata.com
pang.userkey=your user key in pangdata.com
#pangdata reserved properties
pang.username=your username in pangdata
pang.userkey=your userkey in pangdata
# Data sending schedule period(seconds)
pang.period = 10
pang.period = 30
pang.prefix =

#Don't worry. We do not send any information about connection properties
jdbc.driverClassName=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost
jdbc.username=user
jdbc.url=jdbc:mysql://127.0.0.1:3306
jdbc.username=username
jdbc.password=password

######################################################################
Expand All @@ -25,7 +25,7 @@ status.Threads_connected = true
#This value provides a benchmark to help you decide the maximum number of connections your server should support. It can also help in traffic analysis.
status.Max_used_connections = true
status.Cpu_time = false
status.Queries = true
status.Queries = false
status.Memory_used = false
status.Innodb_deadlocks = false
# Performing filesystem reads for database indexes slows query performance. If this variable is high, it indicates that MySQL's key cache is overloaded and should be reconfigured.
Expand Down

0 comments on commit 263befa

Please sign in to comment.