-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from PearsonEducation/1.6
1.6
- Loading branch information
Showing
569 changed files
with
166,769 additions
and
23,934 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 |
---|---|---|
@@ -1,5 +1,13 @@ | ||
/target/ | ||
derby.log | ||
StatsAgg.iml | ||
.idea | ||
nb-configuration.xml | ||
StatsAgg.iml | ||
nbactions.xml | ||
*.log | ||
/logs/*.log | ||
/conf/application-dev.ini | ||
/conf/application-dev.properties | ||
/conf/database-dev.ini | ||
/conf/database-dev.properties | ||
/conf/flyway-dev.properties | ||
/conf/logback-config-dev.xml | ||
/nbproject/ | ||
/target/ |
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
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 |
---|---|---|
|
@@ -6,6 +6,11 @@ | |
flush_time_agg = 10000 | ||
debug_mode_enabled = false | ||
|
||
### UI & API HTTP Interface configuration options | ||
ui_and_api_http_enabled = true | ||
ui_and_api_http_port = 8080 | ||
ui_and_api_http_context = StatsAgg | ||
|
||
### 'Sending data to Graphite' configuration options | ||
graphite_output_module_1 = false,graphite.someDomain.com,2003,2,1000,true,true | ||
|
||
|
@@ -16,7 +21,7 @@ opentsdb_http_output_module_1 = false,http://opentsdb.some-domain.com:4242/api/p | |
### 'Sending data to InfluxDB' configuration options | ||
influxdb_v1_output_module_1 = false,http://influxdb.some-domain.com:8086/,2,10 | ||
|
||
### 'Listener' configuration options | ||
### 'Metric collector listener' configuration options | ||
statsd_tcp_listener_enabled = true | ||
statsd_tcp_listener_port = 8125 | ||
statsd_udp_listener_enabled = true | ||
|
@@ -97,6 +102,9 @@ alert_smtp_use_starttls = false | |
alert_smtp_from_address = [email protected] | ||
alert_smtp_from_name = StatsAgg | ||
|
||
### PagerDuty integration options | ||
pagerduty_integration_enabled = false | ||
|
||
### 'Website GUI' configuration options | ||
custom_action_url_1 = http://google.com,Goto Google | ||
|
||
|
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
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
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
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 @@ | ||
### Advanced Flyway configuration options | ||
# | ||
# These configuration options control aspects of Flyway that don't normally need adjusting. | ||
# This file is only exposed for troubleshooting/debugging, and possibly to make life easier for some advanced StatsAgg users. Regular users should not modify this file. | ||
# That said, most of the modifyable Flyway options are listed here: https://flywaydb.org/documentation/configuration/configfile.html | ||
flyway.outOfOrder = true | ||
flyway.validateOnMigrate = true |
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 @@ | ||
### Advanced Flyway configuration options | ||
# | ||
# Theses configuration options control aspects of Flyway that don't normally need adjusting. | ||
# This file is only exposed for troubleshooting/debugging, and possibly to make life easier for some advanced StatsAgg users. Regular users should not modify this file. | ||
# That said, most of the modifyable Flyway options are listed here: https://flywaydb.org/documentation/configuration/configfile.html | ||
flyway.outOfOrder = true | ||
flyway.validateOnMigrate = true |
82 changes: 40 additions & 42 deletions
82
.../webapp/WEB-INF/config/logback_config.xml → conf/logback-config.xml
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 |
---|---|---|
@@ -1,42 +1,40 @@ | ||
<?xml version="1.0" encoding="iso-8859-1"?> | ||
|
||
<configuration> | ||
|
||
<contextName>StatsAgg</contextName> | ||
|
||
<jmxConfigurator /> | ||
|
||
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender"> | ||
|
||
<file>${catalina.base}${file.separator}logs${file.separator}statsagg.log</file> | ||
|
||
<rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy"> | ||
<fileNamePattern>${catalina.base}${file.separator}logs${file.separator}statsagg.%i.log</fileNamePattern> | ||
<minIndex>1</minIndex> | ||
<maxIndex>10</maxIndex> | ||
</rollingPolicy> | ||
|
||
<triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy"> | ||
<maxFileSize>100MB</maxFileSize> | ||
</triggeringPolicy> | ||
|
||
<encoder> | ||
<pattern>%date{"yyyy-MM-dd' 'HH:mm:ss.SSSZ"} : %level : %logger{100}:%line : %message%n</pattern> | ||
</encoder> | ||
|
||
</appender> | ||
|
||
<!-- | ||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
<encoder> | ||
<pattern>%date{"yyyy-MM-dd' 'HH:mm:ss.SSSZ"} : %level : %logger{100}:%line : %message%n</pattern> | ||
</encoder> | ||
</appender> | ||
--> | ||
|
||
<root level="INFO"> | ||
<appender-ref ref="FILE" /> | ||
<!-- <appender-ref ref="STDOUT" /> --> | ||
</root> | ||
|
||
</configuration> | ||
<?xml version="1.0" encoding="iso-8859-1"?> | ||
|
||
<configuration> | ||
|
||
<contextName>StatAagg</contextName> | ||
|
||
<jmxConfigurator /> | ||
|
||
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender"> | ||
|
||
<file>logs${file.separator}statsagg.log</file> | ||
|
||
<rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy"> | ||
<fileNamePattern>logs${file.separator}statsagg.%i.log</fileNamePattern> | ||
<minIndex>1</minIndex> | ||
<maxIndex>10</maxIndex> | ||
</rollingPolicy> | ||
|
||
<triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy"> | ||
<maxFileSize>10MB</maxFileSize> | ||
</triggeringPolicy> | ||
|
||
<encoder> | ||
<pattern>%date{ISO8601} : %level : %logger{100}:%line : %message%n</pattern> | ||
</encoder> | ||
|
||
</appender> | ||
|
||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
<encoder> | ||
<pattern>%date{ISO8601} : %level : %logger{100}:%line : %message%n</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<root level="INFO"> | ||
<appender-ref ref="FILE" /> | ||
<appender-ref ref="STDOUT" /> | ||
</root> | ||
|
||
</configuration> |
Oops, something went wrong.