- actually include the modified files in the commit this time - each edex environment will now receive its own instance of pypies - a httpd-pypies port and a pypies logging port must now be specified when creating an edex environment - the location of the pypies configuration file is no longer hard-coded; specified as an environment variable - made the pypies tcp logging port configurable - add source headers - the configuration will now update the ServerRoot Change-Id: Ie4130caad91f027c9ab547806fb014c0e708596d Former-commit-id:792c03d5f4
[formerlyb4964c0a19
] [formerly792c03d5f4
[formerlyb4964c0a19
] [formerly9e33969536
[formerly c96d7532679555f3ccf8a0d7bc07866e63ac177f]]] Former-commit-id:9e33969536
Former-commit-id:bc757e5bc1
[formerlyb47d484e70
] Former-commit-id:75d8250852
92 lines
2.3 KiB
INI
92 lines
2.3 KiB
INI
##
|
|
# This software was developed and / or modified by Raytheon Company,
|
|
# pursuant to Contract DG133W-05-CQ-1067 with the US Government.
|
|
#
|
|
# U.S. EXPORT CONTROLLED TECHNICAL DATA
|
|
# This software product contains export-restricted data whose
|
|
# export/transfer/disclosure is restricted by U.S. law. Dissemination
|
|
# to non-U.S. persons whether in the United States or abroad requires
|
|
# an export license or other authorization.
|
|
#
|
|
# Contractor Name: Raytheon Company
|
|
# Contractor Address: 6825 Pine Street, Suite 340
|
|
# Mail Stop B8
|
|
# Omaha, NE 68106
|
|
# 402.291.0100
|
|
#
|
|
# See the AWIPS II Master Rights File ("Master Rights File.pdf") for
|
|
# further licensing information.
|
|
##
|
|
|
|
|
|
#
|
|
# config file for pypies
|
|
#
|
|
#
|
|
# SOFTWARE HISTORY
|
|
#
|
|
# Date Ticket# Engineer Description
|
|
# ------------ ---------- ----------- --------------------------
|
|
# 10/07/10 njensen Initial Creation.
|
|
# 01/17/13 1490 bkowal Added tcp_logger configuration
|
|
#
|
|
#
|
|
|
|
[edex_data]
|
|
hdf5dir=/awips2/edex/data/hdf5
|
|
|
|
[loggers]
|
|
keys=root,minutes,hours
|
|
|
|
[tcp_logger]
|
|
# default is based on logging.handlers.DEFAULT_TCP_LOGGING_PORT
|
|
# at the time this change was made.
|
|
logging_port=9020
|
|
|
|
[handlers]
|
|
keys=pypiesHandler,minutesHandler,hoursHandler
|
|
|
|
[formatters]
|
|
keys=pypiesFormatter
|
|
|
|
[logger_root]
|
|
level=INFO
|
|
handlers=pypiesHandler
|
|
|
|
[logger_minutes]
|
|
level=INFO
|
|
handlers=minutesHandler
|
|
propagate=0
|
|
qualname=minute
|
|
|
|
[logger_hours]
|
|
level=INFO
|
|
handlers=hoursHandler
|
|
propagate=0
|
|
qualname=hourly
|
|
|
|
[handler_pypiesHandler]
|
|
logFileDir=/awips2/pypies/logs
|
|
class=handlers.TimedRotatingFileHandler
|
|
level=NOTSET
|
|
formatter=pypiesFormatter
|
|
args=('%(logFileDir)s/pypies.log', 'midnight', 1, 7,)
|
|
|
|
[handler_minutesHandler]
|
|
logFileDir=/awips2/pypies/logs
|
|
class=handlers.TimedRotatingFileHandler
|
|
level=NOTSET
|
|
formatter=pypiesFormatter
|
|
args=('%(logFileDir)s/pypiesMinuteStats.log', 'midnight', 1, 7,)
|
|
|
|
[handler_hoursHandler]
|
|
logFileDir=/awips2/pypies/logs
|
|
class=handlers.TimedRotatingFileHandler
|
|
level=NOTSET
|
|
formatter=pypiesFormatter
|
|
args=('%(logFileDir)s/pypiesHourlyStats.log', 'midnight', 1, 7,)
|
|
|
|
[formatter_pypiesFormatter]
|
|
format=%(levelname)s %(asctime)s %(message)s
|
|
dateFmt=
|
|
class=logging.Formatter
|