aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorLucas, John (jl1315) <jflucas@research.att.com>2017-08-23 18:58:33 +0000
committerJ. F. Lucas <jflucas@research.att.com>2017-08-23 19:05:41 +0000
commit3c1527544df835a831898edbd74a473f027bb855 (patch)
tree2e2cf0c7060b39aec4829dc866fcb2468fa16b77 /etc
parentbacbd4c6349f9de9c597d309a6c23eced2058a15 (diff)
deployment handler initial seed code
Change-Id: I0bfc86d17edead0114ea0012fb469014e978cd15 Issue-Id: DCAEGEN2-43 Signed-off-by: J. F. Lucas <jflucas@research.att.com>
Diffstat (limited to 'etc')
-rw-r--r--etc/log4js.json52
1 files changed, 52 insertions, 0 deletions
diff --git a/etc/log4js.json b/etc/log4js.json
new file mode 100644
index 0000000..5916344
--- /dev/null
+++ b/etc/log4js.json
@@ -0,0 +1,52 @@
+{
+ "appenders":
+ [
+ {
+ "type": "file",
+ "filename": "log/audit.log",
+ "maxLogSize": 10240000,
+ "backups": 10,
+ "category": ["audit"],
+ "layout":
+ {
+ "type": "messagePassThrough"
+ }
+ },
+
+ {
+ "type": "file",
+ "filename": "log/metrics.log",
+ "maxLogSize": 10240000,
+ "backups": 10,
+ "category": ["metrics"],
+ "layout":
+ {
+ "type": "messagePassThrough"
+ }
+ },
+
+ {
+ "type": "file",
+ "filename": "log/error.log",
+ "maxLogSize": 10240000,
+ "backups": 10,
+ "category": ["error"],
+ "layout":
+ {
+ "type": "messagePassThrough"
+ }
+ },
+
+ {
+ "type": "file",
+ "filename": "log/debug.log",
+ "maxLogSize": 10240000,
+ "backups": 10,
+ "category": ["debug"],
+ "layout":
+ {
+ "type": "messagePassThrough"
+ }
+ }
+ ]
+}