├── .gitignore ├── Dockerfile ├── LICENSE ├── NOTICE ├── README.md ├── babel.cfg ├── control ├── entrypoint.sh ├── gunicorn.conf ├── i18n.md ├── pip_requirements.txt ├── rrd ├── __init__.py ├── config.py ├── consts.py ├── corelib │ └── __init__.py ├── model │ ├── __init__.py │ ├── endpoint.py │ ├── graph.py │ ├── group.py │ ├── portal │ │ ├── __init__.py │ │ ├── action.py │ │ ├── alarm.py │ │ ├── alert_link.py │ │ ├── bean.py │ │ ├── cluster.py │ │ ├── expression.py │ │ ├── group_host.py │ │ ├── grp_tpl.py │ │ ├── host.py │ │ ├── host_group.py │ │ ├── nodata.py │ │ ├── plugin_dir.py │ │ ├── strategy.py │ │ └── template.py │ ├── screen.py │ ├── team.py │ ├── tmpgraph.py │ └── user.py ├── service │ ├── __init__.py │ └── group_service.py ├── static │ ├── 500.html │ ├── angular-bootstrap-datetimepicker │ │ ├── css │ │ │ └── datetimepicker.css │ │ └── js │ │ │ └── datetimepicker.js │ ├── bootstrap-datetimepicker │ │ ├── css │ │ │ └── bootstrap-datetimepicker.min.css │ │ └── js │ │ │ └── bootstrap-datetimepicker.min.js │ ├── bootstrap-tokenfield │ │ ├── bootstrap-tokenfield.min.js │ │ └── css │ │ │ ├── bootstrap-tokenfield.min.css │ │ │ └── tokenfield-typeahead.min.css │ ├── bootstrap3 │ │ ├── css │ │ │ ├── bootstrap-theme.min.css │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ └── bootstrap.min.js │ ├── css │ │ ├── base.css │ │ ├── bootstrap-datetimepicker.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── g.css │ │ └── select2-bootstrap.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── highcharts │ │ ├── graphics │ │ │ ├── skies.jpg │ │ │ ├── snow.png │ │ │ └── sun.png │ │ └── js │ │ │ ├── adapters │ │ │ ├── mootools-adapter.js │ │ │ ├── mootools-adapter.src.js │ │ │ ├── prototype-adapter.js │ │ │ └── prototype-adapter.src.js │ │ │ ├── highcharts-more.js │ │ │ ├── highcharts.js │ │ │ ├── modules │ │ │ ├── annotations.js │ │ │ ├── annotations.src.js │ │ │ ├── canvas-tools.js │ │ │ ├── canvas-tools.src.js │ │ │ ├── data.js │ │ │ ├── data.src.js │ │ │ ├── exporting.js │ │ │ ├── exporting.src.js │ │ │ ├── funnel.js │ │ │ ├── funnel.src.js │ │ │ ├── heatmap.js │ │ │ ├── heatmap.src.js │ │ │ ├── map.js │ │ │ └── map.src.js │ │ │ └── themes │ │ │ ├── dark-blue.js │ │ │ ├── dark-green.js │ │ │ ├── gray.js │ │ │ ├── grid.js │ │ │ └── skies.js │ ├── img │ │ ├── graph404.png │ │ ├── loading.gif │ │ ├── loading2.gif │ │ └── logo.png │ ├── js │ │ ├── angular-multi-check.js │ │ ├── angular.min.js │ │ ├── big_ng.js │ │ ├── bootstrap-datetimepicker.js │ │ ├── bootstrap.js │ │ ├── dashboard.js │ │ ├── g.js │ │ ├── iframeResizer.contentWindow.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.spline.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.time.js │ │ ├── jquery.min.js │ │ ├── jquery.query.js │ │ ├── jquery.shiftcheckbox.js │ │ ├── md5.js │ │ ├── moment-with-locales.js │ │ ├── moment.min.js │ │ ├── multi_ng.js │ │ ├── portal.js │ │ ├── screen-edit.js │ │ ├── screen.js │ │ ├── uic.js │ │ ├── underscore.js │ │ └── util_ng.js │ ├── layer │ │ ├── extend │ │ │ └── layer.ext.js │ │ ├── layer.min.js │ │ └── skin │ │ │ ├── default │ │ │ ├── icon_ext.png │ │ │ ├── textbg.png │ │ │ ├── xubox_ico0.png │ │ │ ├── xubox_loading0.gif │ │ │ ├── xubox_loading1.gif │ │ │ ├── xubox_loading2.gif │ │ │ ├── xubox_loading3.gif │ │ │ └── xubox_title0.png │ │ │ ├── layer.css │ │ │ └── layer.ext.css │ └── select2 │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.min.js │ │ ├── select2.png │ │ └── select2x2.png ├── store.py ├── templates │ ├── auth │ │ ├── base.html │ │ ├── login.html │ │ └── register.html │ ├── base.html │ ├── base_ng.html │ ├── chart │ │ ├── big_ng.html │ │ ├── chart_base.html │ │ ├── embed.html │ │ ├── multi_ng.html │ │ └── multi_pic.html │ ├── index.html │ ├── navbar.html │ ├── portal │ │ ├── alarm │ │ │ ├── case.html │ │ │ └── case_events.html │ │ ├── alert_link │ │ │ └── index.html │ │ ├── blank.html │ │ ├── blocks.html │ │ ├── cluster │ │ │ ├── creator.html │ │ │ ├── edit.html │ │ │ └── list.html │ │ ├── error │ │ │ └── msg.html │ │ ├── expression │ │ │ ├── add.html │ │ │ ├── list.html │ │ │ └── view.html │ │ ├── group │ │ │ ├── advanced.html │ │ │ ├── index.html │ │ │ └── templates.html │ │ ├── host │ │ │ ├── add.html │ │ │ ├── groups.html │ │ │ ├── index.html │ │ │ └── templates.html │ │ ├── layout.html │ │ ├── nodata │ │ │ ├── add.html │ │ │ └── list.html │ │ ├── plugin │ │ │ └── list.html │ │ └── template │ │ │ ├── groups.html │ │ │ ├── help.html │ │ │ ├── list.html │ │ │ ├── update.html │ │ │ └── view.html │ ├── screen │ │ ├── add.html │ │ ├── base.html │ │ ├── clone.html │ │ ├── edit.html │ │ ├── graph_add.html │ │ ├── graph_edit.html │ │ ├── index.html │ │ ├── screen.html │ │ ├── screen_embed.html │ │ ├── screen_layout.html │ │ └── top_screen.html │ ├── team │ │ ├── base.html │ │ ├── create.html │ │ ├── edit.html │ │ └── list.html │ └── user │ │ ├── about.html │ │ ├── base.html │ │ ├── create.html │ │ ├── edit.html │ │ ├── list.html │ │ └── profile.html ├── translations │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── messages.mo │ │ │ └── messages.po │ └── zh │ │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── utils │ ├── __init__.py │ ├── empty.py │ ├── format.py │ ├── graph_urls.py │ ├── logger.py │ ├── params.py │ └── rrdgraph.py └── view │ ├── __init__.py │ ├── auth │ ├── __init__.py │ └── auth.py │ ├── dashboard │ ├── __init__.py │ ├── chart.py │ └── screen.py │ ├── index.py │ ├── portal │ ├── __init__.py │ ├── alarm.py │ ├── alert_link.py │ ├── api.py │ ├── cluster.py │ ├── expression.py │ ├── group.py │ ├── home.py │ ├── host.py │ ├── nodata.py │ ├── plugin.py │ ├── strategy.py │ └── template.py │ ├── team │ ├── __init__.py │ └── team.py │ ├── user │ ├── __init__.py │ └── user.py │ └── utils.py ├── screenshots ├── alarm-dashboard-case-events.jpeg ├── alarm-dashboard-case.jpeg └── dashboard.jpeg ├── scripts ├── tr_compile.py ├── tr_init.py └── tr_update.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/README.md -------------------------------------------------------------------------------- /babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/babel.cfg -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/control -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /gunicorn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/gunicorn.conf -------------------------------------------------------------------------------- /i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/i18n.md -------------------------------------------------------------------------------- /pip_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/pip_requirements.txt -------------------------------------------------------------------------------- /rrd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/__init__.py -------------------------------------------------------------------------------- /rrd/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/config.py -------------------------------------------------------------------------------- /rrd/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/consts.py -------------------------------------------------------------------------------- /rrd/corelib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/corelib/__init__.py -------------------------------------------------------------------------------- /rrd/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rrd/model/endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/endpoint.py -------------------------------------------------------------------------------- /rrd/model/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/graph.py -------------------------------------------------------------------------------- /rrd/model/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/group.py -------------------------------------------------------------------------------- /rrd/model/portal/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Ulric Qin' 2 | -------------------------------------------------------------------------------- /rrd/model/portal/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/portal/action.py -------------------------------------------------------------------------------- /rrd/model/portal/alarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/portal/alarm.py -------------------------------------------------------------------------------- /rrd/model/portal/alert_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/portal/alert_link.py -------------------------------------------------------------------------------- /rrd/model/portal/bean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/portal/bean.py -------------------------------------------------------------------------------- /rrd/model/portal/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/portal/cluster.py -------------------------------------------------------------------------------- /rrd/model/portal/expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/portal/expression.py -------------------------------------------------------------------------------- /rrd/model/portal/group_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/portal/group_host.py -------------------------------------------------------------------------------- /rrd/model/portal/grp_tpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/portal/grp_tpl.py -------------------------------------------------------------------------------- /rrd/model/portal/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/portal/host.py -------------------------------------------------------------------------------- /rrd/model/portal/host_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/portal/host_group.py -------------------------------------------------------------------------------- /rrd/model/portal/nodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/portal/nodata.py -------------------------------------------------------------------------------- /rrd/model/portal/plugin_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/portal/plugin_dir.py -------------------------------------------------------------------------------- /rrd/model/portal/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/portal/strategy.py -------------------------------------------------------------------------------- /rrd/model/portal/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/portal/template.py -------------------------------------------------------------------------------- /rrd/model/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/screen.py -------------------------------------------------------------------------------- /rrd/model/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/team.py -------------------------------------------------------------------------------- /rrd/model/tmpgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/tmpgraph.py -------------------------------------------------------------------------------- /rrd/model/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/model/user.py -------------------------------------------------------------------------------- /rrd/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rrd/service/group_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/service/group_service.py -------------------------------------------------------------------------------- /rrd/static/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/500.html -------------------------------------------------------------------------------- /rrd/static/angular-bootstrap-datetimepicker/css/datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/angular-bootstrap-datetimepicker/css/datetimepicker.css -------------------------------------------------------------------------------- /rrd/static/angular-bootstrap-datetimepicker/js/datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/angular-bootstrap-datetimepicker/js/datetimepicker.js -------------------------------------------------------------------------------- /rrd/static/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css -------------------------------------------------------------------------------- /rrd/static/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js -------------------------------------------------------------------------------- /rrd/static/bootstrap-tokenfield/bootstrap-tokenfield.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/bootstrap-tokenfield/bootstrap-tokenfield.min.js -------------------------------------------------------------------------------- /rrd/static/bootstrap-tokenfield/css/bootstrap-tokenfield.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/bootstrap-tokenfield/css/bootstrap-tokenfield.min.css -------------------------------------------------------------------------------- /rrd/static/bootstrap-tokenfield/css/tokenfield-typeahead.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/bootstrap-tokenfield/css/tokenfield-typeahead.min.css -------------------------------------------------------------------------------- /rrd/static/bootstrap3/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/bootstrap3/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /rrd/static/bootstrap3/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/bootstrap3/css/bootstrap.min.css -------------------------------------------------------------------------------- /rrd/static/bootstrap3/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/bootstrap3/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /rrd/static/bootstrap3/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/bootstrap3/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /rrd/static/bootstrap3/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/bootstrap3/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /rrd/static/bootstrap3/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/bootstrap3/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /rrd/static/bootstrap3/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/bootstrap3/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /rrd/static/bootstrap3/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/bootstrap3/js/bootstrap.min.js -------------------------------------------------------------------------------- /rrd/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/css/base.css -------------------------------------------------------------------------------- /rrd/static/css/bootstrap-datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/css/bootstrap-datetimepicker.css -------------------------------------------------------------------------------- /rrd/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /rrd/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /rrd/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/css/bootstrap.css -------------------------------------------------------------------------------- /rrd/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /rrd/static/css/g.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/css/g.css -------------------------------------------------------------------------------- /rrd/static/css/select2-bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/css/select2-bootstrap.css -------------------------------------------------------------------------------- /rrd/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /rrd/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /rrd/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /rrd/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /rrd/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /rrd/static/highcharts/graphics/skies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/graphics/skies.jpg -------------------------------------------------------------------------------- /rrd/static/highcharts/graphics/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/graphics/snow.png -------------------------------------------------------------------------------- /rrd/static/highcharts/graphics/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/graphics/sun.png -------------------------------------------------------------------------------- /rrd/static/highcharts/js/adapters/mootools-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/adapters/mootools-adapter.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/adapters/mootools-adapter.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/adapters/mootools-adapter.src.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/adapters/prototype-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/adapters/prototype-adapter.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/adapters/prototype-adapter.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/adapters/prototype-adapter.src.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/highcharts-more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/highcharts-more.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/highcharts.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/modules/annotations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/modules/annotations.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/modules/annotations.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/modules/annotations.src.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/modules/canvas-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/modules/canvas-tools.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/modules/canvas-tools.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/modules/canvas-tools.src.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/modules/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/modules/data.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/modules/data.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/modules/data.src.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/modules/exporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/modules/exporting.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/modules/exporting.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/modules/exporting.src.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/modules/funnel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/modules/funnel.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/modules/funnel.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/modules/funnel.src.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/modules/heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/modules/heatmap.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/modules/heatmap.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/modules/heatmap.src.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/modules/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/modules/map.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/modules/map.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/modules/map.src.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/themes/dark-blue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/themes/dark-blue.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/themes/dark-green.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/themes/dark-green.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/themes/gray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/themes/gray.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/themes/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/themes/grid.js -------------------------------------------------------------------------------- /rrd/static/highcharts/js/themes/skies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/highcharts/js/themes/skies.js -------------------------------------------------------------------------------- /rrd/static/img/graph404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/img/graph404.png -------------------------------------------------------------------------------- /rrd/static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/img/loading.gif -------------------------------------------------------------------------------- /rrd/static/img/loading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/img/loading2.gif -------------------------------------------------------------------------------- /rrd/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/img/logo.png -------------------------------------------------------------------------------- /rrd/static/js/angular-multi-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/angular-multi-check.js -------------------------------------------------------------------------------- /rrd/static/js/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/angular.min.js -------------------------------------------------------------------------------- /rrd/static/js/big_ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/big_ng.js -------------------------------------------------------------------------------- /rrd/static/js/bootstrap-datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/bootstrap-datetimepicker.js -------------------------------------------------------------------------------- /rrd/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/bootstrap.js -------------------------------------------------------------------------------- /rrd/static/js/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/dashboard.js -------------------------------------------------------------------------------- /rrd/static/js/g.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/g.js -------------------------------------------------------------------------------- /rrd/static/js/iframeResizer.contentWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/iframeResizer.contentWindow.js -------------------------------------------------------------------------------- /rrd/static/js/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/jquery.flot.js -------------------------------------------------------------------------------- /rrd/static/js/jquery.flot.selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/jquery.flot.selection.js -------------------------------------------------------------------------------- /rrd/static/js/jquery.flot.spline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/jquery.flot.spline.js -------------------------------------------------------------------------------- /rrd/static/js/jquery.flot.stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/jquery.flot.stack.js -------------------------------------------------------------------------------- /rrd/static/js/jquery.flot.time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/jquery.flot.time.js -------------------------------------------------------------------------------- /rrd/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/jquery.min.js -------------------------------------------------------------------------------- /rrd/static/js/jquery.query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/jquery.query.js -------------------------------------------------------------------------------- /rrd/static/js/jquery.shiftcheckbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/jquery.shiftcheckbox.js -------------------------------------------------------------------------------- /rrd/static/js/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/md5.js -------------------------------------------------------------------------------- /rrd/static/js/moment-with-locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/moment-with-locales.js -------------------------------------------------------------------------------- /rrd/static/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/moment.min.js -------------------------------------------------------------------------------- /rrd/static/js/multi_ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/multi_ng.js -------------------------------------------------------------------------------- /rrd/static/js/portal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/portal.js -------------------------------------------------------------------------------- /rrd/static/js/screen-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/screen-edit.js -------------------------------------------------------------------------------- /rrd/static/js/screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/screen.js -------------------------------------------------------------------------------- /rrd/static/js/uic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/uic.js -------------------------------------------------------------------------------- /rrd/static/js/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/underscore.js -------------------------------------------------------------------------------- /rrd/static/js/util_ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/js/util_ng.js -------------------------------------------------------------------------------- /rrd/static/layer/extend/layer.ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/layer/extend/layer.ext.js -------------------------------------------------------------------------------- /rrd/static/layer/layer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/layer/layer.min.js -------------------------------------------------------------------------------- /rrd/static/layer/skin/default/icon_ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/layer/skin/default/icon_ext.png -------------------------------------------------------------------------------- /rrd/static/layer/skin/default/textbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/layer/skin/default/textbg.png -------------------------------------------------------------------------------- /rrd/static/layer/skin/default/xubox_ico0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/layer/skin/default/xubox_ico0.png -------------------------------------------------------------------------------- /rrd/static/layer/skin/default/xubox_loading0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/layer/skin/default/xubox_loading0.gif -------------------------------------------------------------------------------- /rrd/static/layer/skin/default/xubox_loading1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/layer/skin/default/xubox_loading1.gif -------------------------------------------------------------------------------- /rrd/static/layer/skin/default/xubox_loading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/layer/skin/default/xubox_loading2.gif -------------------------------------------------------------------------------- /rrd/static/layer/skin/default/xubox_loading3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/layer/skin/default/xubox_loading3.gif -------------------------------------------------------------------------------- /rrd/static/layer/skin/default/xubox_title0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/layer/skin/default/xubox_title0.png -------------------------------------------------------------------------------- /rrd/static/layer/skin/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/layer/skin/layer.css -------------------------------------------------------------------------------- /rrd/static/layer/skin/layer.ext.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/layer/skin/layer.ext.css -------------------------------------------------------------------------------- /rrd/static/select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/select2/select2-spinner.gif -------------------------------------------------------------------------------- /rrd/static/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/select2/select2.css -------------------------------------------------------------------------------- /rrd/static/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/select2/select2.min.js -------------------------------------------------------------------------------- /rrd/static/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/select2/select2.png -------------------------------------------------------------------------------- /rrd/static/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/static/select2/select2x2.png -------------------------------------------------------------------------------- /rrd/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/store.py -------------------------------------------------------------------------------- /rrd/templates/auth/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/auth/base.html -------------------------------------------------------------------------------- /rrd/templates/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/auth/login.html -------------------------------------------------------------------------------- /rrd/templates/auth/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/auth/register.html -------------------------------------------------------------------------------- /rrd/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/base.html -------------------------------------------------------------------------------- /rrd/templates/base_ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/base_ng.html -------------------------------------------------------------------------------- /rrd/templates/chart/big_ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/chart/big_ng.html -------------------------------------------------------------------------------- /rrd/templates/chart/chart_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/chart/chart_base.html -------------------------------------------------------------------------------- /rrd/templates/chart/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/chart/embed.html -------------------------------------------------------------------------------- /rrd/templates/chart/multi_ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/chart/multi_ng.html -------------------------------------------------------------------------------- /rrd/templates/chart/multi_pic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/chart/multi_pic.html -------------------------------------------------------------------------------- /rrd/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/index.html -------------------------------------------------------------------------------- /rrd/templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/navbar.html -------------------------------------------------------------------------------- /rrd/templates/portal/alarm/case.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/alarm/case.html -------------------------------------------------------------------------------- /rrd/templates/portal/alarm/case_events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/alarm/case_events.html -------------------------------------------------------------------------------- /rrd/templates/portal/alert_link/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/alert_link/index.html -------------------------------------------------------------------------------- /rrd/templates/portal/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/blank.html -------------------------------------------------------------------------------- /rrd/templates/portal/blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/blocks.html -------------------------------------------------------------------------------- /rrd/templates/portal/cluster/creator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/cluster/creator.html -------------------------------------------------------------------------------- /rrd/templates/portal/cluster/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/cluster/edit.html -------------------------------------------------------------------------------- /rrd/templates/portal/cluster/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/cluster/list.html -------------------------------------------------------------------------------- /rrd/templates/portal/error/msg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/error/msg.html -------------------------------------------------------------------------------- /rrd/templates/portal/expression/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/expression/add.html -------------------------------------------------------------------------------- /rrd/templates/portal/expression/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/expression/list.html -------------------------------------------------------------------------------- /rrd/templates/portal/expression/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/expression/view.html -------------------------------------------------------------------------------- /rrd/templates/portal/group/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/group/advanced.html -------------------------------------------------------------------------------- /rrd/templates/portal/group/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/group/index.html -------------------------------------------------------------------------------- /rrd/templates/portal/group/templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/group/templates.html -------------------------------------------------------------------------------- /rrd/templates/portal/host/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/host/add.html -------------------------------------------------------------------------------- /rrd/templates/portal/host/groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/host/groups.html -------------------------------------------------------------------------------- /rrd/templates/portal/host/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/host/index.html -------------------------------------------------------------------------------- /rrd/templates/portal/host/templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/host/templates.html -------------------------------------------------------------------------------- /rrd/templates/portal/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/layout.html -------------------------------------------------------------------------------- /rrd/templates/portal/nodata/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/nodata/add.html -------------------------------------------------------------------------------- /rrd/templates/portal/nodata/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/nodata/list.html -------------------------------------------------------------------------------- /rrd/templates/portal/plugin/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/plugin/list.html -------------------------------------------------------------------------------- /rrd/templates/portal/template/groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/template/groups.html -------------------------------------------------------------------------------- /rrd/templates/portal/template/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/template/help.html -------------------------------------------------------------------------------- /rrd/templates/portal/template/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/template/list.html -------------------------------------------------------------------------------- /rrd/templates/portal/template/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/template/update.html -------------------------------------------------------------------------------- /rrd/templates/portal/template/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/portal/template/view.html -------------------------------------------------------------------------------- /rrd/templates/screen/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/screen/add.html -------------------------------------------------------------------------------- /rrd/templates/screen/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/screen/base.html -------------------------------------------------------------------------------- /rrd/templates/screen/clone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/screen/clone.html -------------------------------------------------------------------------------- /rrd/templates/screen/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/screen/edit.html -------------------------------------------------------------------------------- /rrd/templates/screen/graph_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/screen/graph_add.html -------------------------------------------------------------------------------- /rrd/templates/screen/graph_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/screen/graph_edit.html -------------------------------------------------------------------------------- /rrd/templates/screen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/screen/index.html -------------------------------------------------------------------------------- /rrd/templates/screen/screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/screen/screen.html -------------------------------------------------------------------------------- /rrd/templates/screen/screen_embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/screen/screen_embed.html -------------------------------------------------------------------------------- /rrd/templates/screen/screen_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/screen/screen_layout.html -------------------------------------------------------------------------------- /rrd/templates/screen/top_screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/screen/top_screen.html -------------------------------------------------------------------------------- /rrd/templates/team/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/team/base.html -------------------------------------------------------------------------------- /rrd/templates/team/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/team/create.html -------------------------------------------------------------------------------- /rrd/templates/team/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/team/edit.html -------------------------------------------------------------------------------- /rrd/templates/team/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/team/list.html -------------------------------------------------------------------------------- /rrd/templates/user/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/user/about.html -------------------------------------------------------------------------------- /rrd/templates/user/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/user/base.html -------------------------------------------------------------------------------- /rrd/templates/user/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/user/create.html -------------------------------------------------------------------------------- /rrd/templates/user/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/user/edit.html -------------------------------------------------------------------------------- /rrd/templates/user/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/user/list.html -------------------------------------------------------------------------------- /rrd/templates/user/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/templates/user/profile.html -------------------------------------------------------------------------------- /rrd/translations/en/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/translations/en/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /rrd/translations/en/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/translations/en/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /rrd/translations/zh/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/translations/zh/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /rrd/translations/zh/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/translations/zh/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /rrd/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/utils/__init__.py -------------------------------------------------------------------------------- /rrd/utils/empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/utils/empty.py -------------------------------------------------------------------------------- /rrd/utils/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/utils/format.py -------------------------------------------------------------------------------- /rrd/utils/graph_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/utils/graph_urls.py -------------------------------------------------------------------------------- /rrd/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/utils/logger.py -------------------------------------------------------------------------------- /rrd/utils/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/utils/params.py -------------------------------------------------------------------------------- /rrd/utils/rrdgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/utils/rrdgraph.py -------------------------------------------------------------------------------- /rrd/view/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/__init__.py -------------------------------------------------------------------------------- /rrd/view/auth/__init__.py: -------------------------------------------------------------------------------- 1 | #-*- coding:utf-8 -*- 2 | -------------------------------------------------------------------------------- /rrd/view/auth/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/auth/auth.py -------------------------------------------------------------------------------- /rrd/view/dashboard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/dashboard/__init__.py -------------------------------------------------------------------------------- /rrd/view/dashboard/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/dashboard/chart.py -------------------------------------------------------------------------------- /rrd/view/dashboard/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/dashboard/screen.py -------------------------------------------------------------------------------- /rrd/view/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/index.py -------------------------------------------------------------------------------- /rrd/view/portal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/portal/__init__.py -------------------------------------------------------------------------------- /rrd/view/portal/alarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/portal/alarm.py -------------------------------------------------------------------------------- /rrd/view/portal/alert_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/portal/alert_link.py -------------------------------------------------------------------------------- /rrd/view/portal/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/portal/api.py -------------------------------------------------------------------------------- /rrd/view/portal/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/portal/cluster.py -------------------------------------------------------------------------------- /rrd/view/portal/expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/portal/expression.py -------------------------------------------------------------------------------- /rrd/view/portal/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/portal/group.py -------------------------------------------------------------------------------- /rrd/view/portal/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/portal/home.py -------------------------------------------------------------------------------- /rrd/view/portal/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/portal/host.py -------------------------------------------------------------------------------- /rrd/view/portal/nodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/portal/nodata.py -------------------------------------------------------------------------------- /rrd/view/portal/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/portal/plugin.py -------------------------------------------------------------------------------- /rrd/view/portal/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/portal/strategy.py -------------------------------------------------------------------------------- /rrd/view/portal/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/portal/template.py -------------------------------------------------------------------------------- /rrd/view/team/__init__.py: -------------------------------------------------------------------------------- 1 | #-*- coding:utf-8 -*- 2 | -------------------------------------------------------------------------------- /rrd/view/team/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/team/team.py -------------------------------------------------------------------------------- /rrd/view/user/__init__.py: -------------------------------------------------------------------------------- 1 | #-*- coding:utf-8 -*- 2 | -------------------------------------------------------------------------------- /rrd/view/user/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/user/user.py -------------------------------------------------------------------------------- /rrd/view/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/rrd/view/utils.py -------------------------------------------------------------------------------- /screenshots/alarm-dashboard-case-events.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/screenshots/alarm-dashboard-case-events.jpeg -------------------------------------------------------------------------------- /screenshots/alarm-dashboard-case.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/screenshots/alarm-dashboard-case.jpeg -------------------------------------------------------------------------------- /screenshots/dashboard.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/screenshots/dashboard.jpeg -------------------------------------------------------------------------------- /scripts/tr_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/scripts/tr_compile.py -------------------------------------------------------------------------------- /scripts/tr_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/scripts/tr_init.py -------------------------------------------------------------------------------- /scripts/tr_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/scripts/tr_update.py -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/dashboard/HEAD/wsgi.py --------------------------------------------------------------------------------