
Translation stats are retrieved from Zanata service. List of projects and versions is taken from Zanata API. List of users is configured in openstack/i18n repo and referred by URI. Processor reads stats for every project-version-user-week and yields records of new type 'tr'. UI is extended to show breakdown by languages. Zanata module is based on https://review.openstack.org/#/c/275145/ Co-Authored-By: daisy-ycguo <guoyingc@cn.ibm.com> Co-Authored-By: Akihiro Motoki <amotoki@gmail.com> Change-Id: Ic1b44f09f7eb592d75d435f66a71d3110a2f49a5
85 lines
3.6 KiB
Python
85 lines
3.6 KiB
Python
# Copyright (c) 2013 Mirantis Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import copy
|
|
|
|
from oslo_config import cfg
|
|
|
|
|
|
CONNECTION_OPTS = [
|
|
cfg.StrOpt('runtime-storage-uri', default='memcached://127.0.0.1:11211',
|
|
help='Storage URI'),
|
|
]
|
|
|
|
PROCESSOR_OPTS = [
|
|
cfg.StrOpt('default-data-uri',
|
|
default='https://git.openstack.org/cgit/'
|
|
'openstack/stackalytics/plain/etc/default_data.json',
|
|
help='URI for default data'),
|
|
cfg.StrOpt('sources-root', default='/var/local/stackalytics',
|
|
help='The folder that holds all project sources to analyze'),
|
|
cfg.IntOpt('days_to_update_members', default=30,
|
|
help='Number of days to update members'),
|
|
cfg.StrOpt('corrections-uri',
|
|
default=('https://git.openstack.org/cgit/'
|
|
'openstack/stackalytics/plain/etc/corrections.json'),
|
|
help='The address of file with corrections data'),
|
|
cfg.StrOpt('review-uri', default='gerrit://review.openstack.org',
|
|
help='URI of review system'),
|
|
cfg.StrOpt('git-base-uri', default='git://git.openstack.org',
|
|
help='git base location'),
|
|
cfg.StrOpt('ssh-key-filename', default='/home/user/.ssh/id_rsa',
|
|
help='SSH key for gerrit review system access'),
|
|
cfg.StrOpt('ssh-username', default='user',
|
|
help='SSH username for gerrit review system access'),
|
|
cfg.StrOpt('driverlog-data-uri',
|
|
default='https://git.openstack.org/cgit/'
|
|
'openstack/driverlog/plain/etc/default_data.json',
|
|
help='URI for default data'),
|
|
cfg.StrOpt('translation-team-uri',
|
|
default='https://git.openstack.org/cgit/openstack/i18n/'
|
|
'plain/tools/zanata/translation_team.yaml',
|
|
help='URI of translation team data'),
|
|
cfg.IntOpt('members-look-ahead', default=250,
|
|
help='How many member profiles to look ahead after the last'),
|
|
cfg.IntOpt('read-timeout', default=120,
|
|
help='Number of seconds to wait for remote response'),
|
|
]
|
|
|
|
DASHBOARD_OPTS = [
|
|
cfg.StrOpt('listen-host', default='127.0.0.1',
|
|
help='The address dashboard listens on'),
|
|
cfg.IntOpt('listen-port', default=8080,
|
|
help='The port dashboard listens on'),
|
|
cfg.StrOpt('default-metric', default='marks',
|
|
help='Default metric'),
|
|
cfg.StrOpt('default-release',
|
|
help='Default release, the most recent if not set'),
|
|
cfg.StrOpt('default-project-type', default='openstack',
|
|
help='Default project type'),
|
|
cfg.IntOpt('dashboard-update-interval', default=3600,
|
|
help='The interval specifies how frequently dashboard should '
|
|
'check for updates in seconds'),
|
|
cfg.StrOpt('collect-profiler-stats',
|
|
help='Name of file to store python profiler data'),
|
|
cfg.IntOpt('age-warn', default=2 * 24 * 60 * 60,
|
|
help='Warn if the age of data is more than this value, sec'),
|
|
]
|
|
|
|
|
|
def list_opts():
|
|
yield (None, copy.deepcopy(CONNECTION_OPTS + PROCESSOR_OPTS +
|
|
DASHBOARD_OPTS))
|