├── .dockerignore ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile.module ├── Dockerfile_arm64 ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── VERSION ├── api-standard.md ├── cmd ├── check.go ├── monitor.go ├── reload.go ├── restart.go ├── start.go └── stop.go ├── common ├── .gitignore ├── LICENSE ├── NOTICE ├── backend_pool │ ├── rpc_backends.go │ └── tsdb_backends.go ├── db │ └── db.go ├── model │ ├── agent.go │ ├── event.go │ ├── expression.go │ ├── graph.go │ ├── host.go │ ├── influxdb.go │ ├── judge.go │ ├── metric.go │ ├── nodata.go │ ├── prometheus.go │ ├── rpc.go │ ├── strategy.go │ ├── template.go │ ├── transfer.go │ └── tsdb.go ├── proc │ └── proc.go ├── sdk │ ├── .gitignore │ ├── README.md │ ├── requests │ │ ├── auth_request.go │ │ └── post.go │ └── sender │ │ ├── linkedlist.go │ │ ├── make.go │ │ ├── push.go │ │ └── sender.go └── utils │ ├── counter.go │ ├── date.go │ ├── formatter.go │ ├── func.go │ ├── func_test.go │ ├── map.go │ ├── md5.go │ ├── md5_test.go │ ├── objpool.go │ ├── statistics.go │ ├── tags.go │ └── tags_test.go ├── config ├── agent.json ├── aggregator.json ├── alarm.json ├── api.json ├── confgen.sh ├── falcon2p8s.json ├── gateway.json ├── graph.json ├── hbs.json ├── judge.json ├── nodata.json └── transfer.json ├── docker-compose.yml ├── docker ├── README.md ├── confgen4docker.sh ├── ctrl.sh ├── k8s-cluster │ ├── Dockerfile.tpl │ ├── README.md │ ├── build.sh │ ├── init.sh │ └── modules │ │ ├── falcon-agent.yaml │ │ ├── falcon-aggregator.yaml │ │ ├── falcon-alarm.yaml │ │ ├── falcon-api.yaml │ │ ├── falcon-dashboard.yaml │ │ ├── falcon-graph-01.yaml │ │ ├── falcon-hbs.yaml │ │ ├── falcon-judge.yaml │ │ ├── falcon-nodata.yaml │ │ └── falcon-transfer.yaml ├── k8s-example │ ├── README.md │ ├── init_mysql_data.sh │ ├── mysql.yaml │ ├── openfalcon-dashboard.yaml │ ├── openfalcon-plus.yaml │ └── redis.yaml ├── mysql-init │ ├── Dockerfile │ └── init_mysql_data.sh └── supervisord.conf ├── docker_test.sh ├── docs ├── LICENSE.md ├── Makefile ├── README.md ├── _config.yml ├── _includes │ └── nav.html ├── _layouts │ └── default.html ├── _posts │ ├── 2017-01-01-authentication.md │ ├── 2017-01-01-response-status-codes.md │ ├── Admin │ │ ├── 2017-01-01-admin_change_role.md │ │ ├── 2017-01-01-admin_change_user_passwd.md │ │ ├── 2017-01-01-admin_delete_user.md │ │ └── 2017-12-07-admin_login.md │ ├── Aggregator │ │ ├── 2017-01-01-aggreator_create.md │ │ ├── 2017-01-01-aggreator_delete.md │ │ ├── 2017-01-01-aggreator_of_hostgroup.md │ │ ├── 2017-01-01-aggreator_update.md │ │ └── 2017-01-01-get_aggreator_by_id.md │ ├── Alarm │ │ ├── 2017-01-01-alarm_eventcases_get_by_id.md │ │ ├── 2017-01-01-alarm_eventcases_list.md │ │ ├── 2017-01-01-alarm_eventnote_create.md │ │ ├── 2017-01-01-alarm_eventnote_get.md │ │ └── 2017-01-01-alarm_events_create.md │ ├── DashboardGraph │ │ ├── 2017-01-01-dashboard_graph_create.md │ │ ├── 2017-01-01-dashboard_graph_create_tmpgraph.md │ │ ├── 2017-01-01-dashboard_graph_delete.md │ │ ├── 2017-01-01-dashboard_graph_get.md │ │ ├── 2017-01-01-dashboard_graph_get_tmpgraph_by_id.md │ │ ├── 2017-01-01-dashboard_graph_update.md │ │ └── 2017-01-01-dashboard_graphs_gets_by_screenid.md │ ├── DashboardScreen │ │ ├── 2017-01-01-dashboard_screen_create.md │ │ ├── 2017-01-01-dashboard_screen_delete.md │ │ ├── 2017-01-01-dashboard_screen_get_by_id.md │ │ ├── 2017-01-01-dashboard_screen_gets_all.md │ │ ├── 2017-01-01-dashboard_screen_gets_by_pid.md │ │ └── 2017-01-01-dashboard_screen_update.md │ ├── Expression │ │ ├── 2017-01-01-expression_create.md │ │ ├── 2017-01-01-expression_delete.md │ │ ├── 2017-01-01-expression_info_by_id.md │ │ ├── 2017-01-01-expression_list.md │ │ └── 2017-01-01-expression_update.md │ ├── Graph │ │ ├── 2017-01-01-endpoint_counter.md │ │ ├── 2017-01-01-endpoints.md │ │ ├── 2017-01-01-grafana.md │ │ └── 2017-01-01-graph_histroy.md │ ├── Host │ │ ├── 2017-01-01-host_maintain.md │ │ ├── 2017-01-01-host_related_hostgroup.md │ │ ├── 2017-01-01-host_related_template.md │ │ └── 2017-01-01-host_reset.md │ ├── HostGroup │ │ ├── 2017-01-01-hostgroup_add_host.md │ │ ├── 2017-01-01-hostgroup_create.md │ │ ├── 2017-01-01-hostgroup_delete.md │ │ ├── 2017-01-01-hostgroup_get_info_by_id.md │ │ ├── 2017-01-01-hostgroup_list.md │ │ ├── 2017-01-01-hostgroup_template_bind.md │ │ ├── 2017-01-01-hostgroup_template_list.md │ │ ├── 2017-01-01-hostgroup_template_unbind.md │ │ ├── 2017-01-01-hostgroup_unbind_host.md │ │ ├── 2017-01-01-hostgroup_update.md │ │ └── 2017-08-22-hostgroup_update_partial_hosts.md │ ├── NoData │ │ ├── 2017-01-01-nodata_create.md │ │ ├── 2017-01-01-nodata_delete.md │ │ ├── 2017-01-01-nodata_info_by_id.md │ │ ├── 2017-01-01-nodata_list.md │ │ └── 2017-01-01-nodata_update.md │ ├── Plugin │ │ ├── 2017-01-01-plugin_create.md │ │ ├── 2017-01-01-plugin_delete.md │ │ └── 2017-01-01-plugin_info_by_id.md │ ├── Strategy │ │ ├── 2017-01-01-metric_tmplist.md │ │ ├── 2017-01-01-strategy_create.md │ │ ├── 2017-01-01-strategy_delete.md │ │ ├── 2017-01-01-strategy_info_by_id.md │ │ ├── 2017-01-01-strategy_list.md │ │ └── 2017-01-01-strategy_update.md │ ├── Team │ │ ├── 2017-01-01-team_create.md │ │ ├── 2017-01-01-team_delete_by_id.md │ │ ├── 2017-01-01-team_info_by_id.md │ │ ├── 2017-01-01-team_info_by_name.md │ │ ├── 2017-01-01-team_list.md │ │ ├── 2017-01-01-team_update.md │ │ └── 2018-11-19-add-user-to-team.md │ ├── Template │ │ ├── 2017-01-01-tpl_action_create.md │ │ ├── 2017-01-01-tpl_action_update.md │ │ ├── 2017-01-01-tpl_create.md │ │ ├── 2017-01-01-tpl_delete.md │ │ ├── 2017-01-01-tpl_hgp_list.md │ │ ├── 2017-01-01-tpl_info_by_id.md │ │ ├── 2017-01-01-tpl_list.md │ │ └── 2017-01-01-tpl_update.md │ └── User │ │ ├── 2017-01-01-user_change_password.md │ │ ├── 2017-01-01-user_create.md │ │ ├── 2017-01-01-user_current.md │ │ ├── 2017-01-01-user_get_info_by_id.md │ │ ├── 2017-01-01-user_get_info_by_name.md │ │ ├── 2017-01-01-user_get_teams.md │ │ ├── 2017-01-01-user_is_in_teams.md │ │ ├── 2017-01-01-user_list.md │ │ ├── 2017-01-01-user_login.md │ │ ├── 2017-01-01-user_logout.md │ │ ├── 2017-01-01-user_update.md │ │ └── 2019-04-14-update-specific-user.md ├── assets.css ├── assets.js ├── doc │ ├── admin.html │ ├── admin.html.json │ ├── aggregator.html │ ├── aggregator.html.json │ ├── alarm.html │ ├── alarm.html.json │ ├── expression.html │ ├── expression.html.json │ ├── graph.html │ ├── graph.html.json │ ├── host.html │ ├── host.html.json │ ├── hostgroup.html │ ├── hostgroup.html.json │ ├── nodata.html │ ├── nodata.html.json │ ├── plugin.html │ ├── plugin.html.json │ ├── team.html │ ├── team.html.json │ ├── template.html │ ├── template.html.json │ ├── user.html │ └── user.html.json ├── index.html └── robots.txt ├── g ├── g.go ├── tool.go └── tool_test.go ├── go.mod ├── go.sum ├── logo.png ├── logos ├── open-falcon-logo-with-title.png ├── open-falcon-logo-with-title.svg └── open-falcon_logo.png ├── main.go ├── modules ├── agent │ ├── .gitignore │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── cfg.example.json │ ├── control │ ├── cron │ │ ├── builtin.go │ │ ├── collector.go │ │ ├── ips.go │ │ ├── plugin.go │ │ └── reporter.go │ ├── funcs │ │ ├── agent.go │ │ ├── checker.go │ │ ├── common.go │ │ ├── cpustat.go │ │ ├── dfstat.go │ │ ├── diskstats.go │ │ ├── du.go │ │ ├── du_test.go │ │ ├── funcs.go │ │ ├── gpu.go │ │ ├── ifstat.go │ │ ├── kernel.go │ │ ├── loadavg.go │ │ ├── meminfo.go │ │ ├── netstat.go │ │ ├── portstat.go │ │ ├── procs.go │ │ ├── snmp.go │ │ ├── sockstat.go │ │ └── urlstat.go │ ├── g │ │ ├── cfg.go │ │ ├── const.go │ │ ├── g.go │ │ ├── logger.go │ │ ├── rpc.go │ │ ├── tool.go │ │ ├── transfer.go │ │ ├── var.go │ │ └── var_test.go │ ├── http │ │ ├── admin.go │ │ ├── cpu.go │ │ ├── df.go │ │ ├── health.go │ │ ├── http.go │ │ ├── iostat.go │ │ ├── kernel.go │ │ ├── memory.go │ │ ├── page.go │ │ ├── plugin.go │ │ ├── push.go │ │ ├── run.go │ │ └── system.go │ ├── main.go │ ├── plugins │ │ ├── plugins.go │ │ ├── reader.go │ │ └── scheduler.go │ ├── public │ │ ├── css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.min.css │ │ │ ├── font-awesome │ │ │ │ ├── css │ │ │ │ │ ├── archive │ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ └── font-awesome.css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ └── font │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── font │ │ │ │ ├── OpenSans-Regular-webfont.eot │ │ │ │ ├── OpenSans-Regular-webfont.svg │ │ │ │ ├── OpenSans-Regular-webfont.ttf │ │ │ │ └── OpenSans-Regular-webfont.woff │ │ │ ├── g.css │ │ │ ├── odometer.css │ │ │ ├── pages │ │ │ │ └── dashboard.css │ │ │ └── style.css │ │ ├── img │ │ │ ├── code.png │ │ │ └── favicon.ico │ │ ├── index.html │ │ └── js │ │ │ ├── base.js │ │ │ ├── bootstrap.js │ │ │ ├── dashboard.js │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery.dataTables.min.js │ │ │ ├── jquery.js │ │ │ └── odometer.js │ └── version.go ├── aggregator │ ├── .gitignore │ ├── README.md │ ├── cfg.example.json │ ├── control │ ├── cron │ │ ├── computer.go │ │ ├── query.go │ │ ├── run.go │ │ ├── run_test.go │ │ ├── updater.go │ │ └── worker.go │ ├── db │ │ ├── db.go │ │ └── reader.go │ ├── g │ │ ├── cfg.go │ │ ├── g.go │ │ └── items.go │ ├── http │ │ ├── common.go │ │ ├── http.go │ │ └── proc.go │ ├── main.go │ ├── sdk │ │ ├── sdk.go │ │ └── sdk_test.go │ └── version.go ├── alarm │ ├── .gitignore │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── api │ │ ├── links.go │ │ ├── portal.go │ │ ├── portal_test.go │ │ ├── uic.go │ │ └── uic_test.go │ ├── cfg.example.json │ ├── control │ ├── cron │ │ ├── builder.go │ │ ├── callback.go │ │ ├── combiner.go │ │ ├── event_cleaner.go │ │ ├── event_consumer.go │ │ ├── event_reader.go │ │ ├── im_sender.go │ │ ├── init_sender.go │ │ ├── mail_sender.go │ │ ├── model.go │ │ └── sms_sender.go │ ├── g │ │ ├── cfg.go │ │ ├── eventdto.go │ │ ├── g.go │ │ ├── logger.go │ │ └── redis.go │ ├── gitversion │ ├── http │ │ ├── controller.go │ │ └── http.go │ ├── main.go │ ├── model │ │ ├── database.go │ │ ├── event │ │ │ ├── event.go │ │ │ └── event_operation.go │ │ ├── im.go │ │ ├── mail.go │ │ └── sms.go │ ├── redi │ │ ├── msg_reader.go │ │ └── msg_writer.go │ └── version.go ├── api │ ├── .gitignore │ ├── ReadMe.md │ ├── app │ │ ├── controller │ │ │ ├── alarm │ │ │ │ ├── alarm_events_controller.go │ │ │ │ ├── alarm_notes_controller.go │ │ │ │ └── alarm_routes.go │ │ │ ├── dashboard_graph │ │ │ │ ├── dashboard_graph_controller.go │ │ │ │ └── dashboard_graph_routes.go │ │ │ ├── dashboard_screen │ │ │ │ ├── dashboard_screen_controller.go │ │ │ │ └── dashboard_screen_routes.go │ │ │ ├── expression │ │ │ │ ├── expression_controller.go │ │ │ │ └── expression_routes.go │ │ │ ├── graph │ │ │ │ ├── grafana_controller.go │ │ │ │ ├── grafana_controller_test.go │ │ │ │ ├── graph_controller.go │ │ │ │ └── graph_routes.go │ │ │ ├── host │ │ │ │ ├── aggreator_controller.go │ │ │ │ ├── host_controller.go │ │ │ │ ├── host_routes.go │ │ │ │ ├── hostgroup_controller.go │ │ │ │ ├── maintain_controller.go │ │ │ │ └── plugins_controller.go │ │ │ ├── mockcfg │ │ │ │ ├── mockcfg_controller.go │ │ │ │ ├── mockcfg_io_helper.go │ │ │ │ └── mockcfg_routes.go │ │ │ ├── routes.go │ │ │ ├── strategy │ │ │ │ ├── strategy_controller.go │ │ │ │ └── strategy_routes.go │ │ │ ├── template │ │ │ │ ├── template_controller.go │ │ │ │ └── template_routes.go │ │ │ └── uic │ │ │ │ ├── session_controller.go │ │ │ │ ├── team_controller.go │ │ │ │ ├── user_controller.go │ │ │ │ └── user_routes.go │ │ ├── helper │ │ │ ├── pagging_parser.go │ │ │ ├── session.go │ │ │ └── simple_reponse.go │ │ ├── model │ │ │ ├── alarm │ │ │ │ ├── event_cases.go │ │ │ │ ├── event_note.go │ │ │ │ └── events.go │ │ │ ├── dashboard │ │ │ │ ├── dashboard_graph.go │ │ │ │ ├── dashboard_screen.go │ │ │ │ ├── dashboard_tmp_graph.go │ │ │ │ └── descript.md │ │ │ ├── falcon_portal │ │ │ │ ├── action.go │ │ │ │ ├── cluster.go │ │ │ │ ├── expression.go │ │ │ │ ├── grp_host.go │ │ │ │ ├── grp_tpl.go │ │ │ │ ├── host.go │ │ │ │ ├── host_group.go │ │ │ │ ├── mockcfg.go │ │ │ │ ├── plugin_dir.go │ │ │ │ ├── strategy.go │ │ │ │ └── tpl.go │ │ │ ├── graph │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpoint_counter.go │ │ │ │ └── tag_endpoint.go │ │ │ └── uic │ │ │ │ ├── rel_team_user.go │ │ │ │ ├── team.go │ │ │ │ └── user.go │ │ └── utils │ │ │ ├── auth_middle.go │ │ │ ├── fetch_value.go │ │ │ ├── passwd_hash.go │ │ │ ├── regexp.go │ │ │ ├── set.go │ │ │ ├── to_string.go │ │ │ └── uuid.go │ ├── cfg.example.json │ ├── config │ │ ├── database.go │ │ ├── g.go │ │ └── logger.go │ ├── data │ │ ├── metric │ │ └── owl_backend_icon.jpg │ ├── graph │ │ └── graph.go │ ├── main.go │ ├── test │ │ ├── api_test.go │ │ └── cfg_test.json │ └── version.go ├── falcon2p8s │ ├── .gitignore │ ├── ReadMe.md │ ├── cfg.example.json │ ├── control │ ├── g │ │ ├── cfg.go │ │ ├── const.go │ │ ├── g.go │ │ ├── logger.go │ │ └── var.go │ ├── http │ │ ├── common.go │ │ ├── cron.go │ │ ├── helper.go │ │ └── http.go │ ├── main.go │ ├── middlewares │ │ └── scraping.go │ ├── rpc │ │ ├── model.go │ │ ├── receiver.go │ │ └── rpc.go │ ├── sm.example.yaml │ ├── utils │ │ └── func.go │ └── version.go ├── gateway │ └── README.md ├── graph │ ├── .gitignore │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── api │ │ ├── graph.go │ │ └── rpc.go │ ├── cfg.example.json │ ├── control │ ├── cron │ │ └── clean.go │ ├── doc │ │ └── README.md │ ├── g │ │ ├── cfg.go │ │ ├── db.go │ │ ├── g.go │ │ ├── git.go │ │ ├── logger.go │ │ ├── utils.go │ │ └── utils_test.go │ ├── http │ │ ├── common.go │ │ ├── helper.go │ │ ├── http.go │ │ ├── index.go │ │ └── proc.go │ ├── index │ │ ├── cache.go │ │ ├── index.go │ │ ├── index_update_all_task.go │ │ └── index_update_incr_task.go │ ├── main.go │ ├── proc │ │ └── proc.go │ ├── rrdtool │ │ ├── migrate.go │ │ ├── rrdtool.go │ │ ├── sync_disk.go │ │ └── utils.go │ ├── store │ │ ├── history.go │ │ ├── linkedlist.go │ │ └── store.go │ ├── test │ │ ├── debug │ │ ├── graph.list │ │ └── http.recv.history │ └── version.go ├── hbs │ ├── .gitignore │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── cache │ │ ├── agents.go │ │ ├── cache.go │ │ ├── expressions.go │ │ ├── groups.go │ │ ├── hosts.go │ │ ├── plugins.go │ │ ├── strategies.go │ │ └── templates.go │ ├── cfg.example.json │ ├── control │ ├── db │ │ ├── agent.go │ │ ├── db.go │ │ ├── expression.go │ │ ├── group.go │ │ ├── host.go │ │ ├── plugin.go │ │ ├── strategy.go │ │ └── template.go │ ├── g │ │ ├── cfg.go │ │ └── g.go │ ├── http │ │ ├── common.go │ │ ├── http.go │ │ └── proc.go │ ├── main.go │ ├── rpc │ │ ├── agent.go │ │ ├── hbs.go │ │ └── rpc.go │ └── version.go ├── judge │ ├── .gitignore │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── cfg.example.json │ ├── control │ ├── cron │ │ ├── cleaner.go │ │ └── strategy.go │ ├── g │ │ ├── cfg.go │ │ ├── g.go │ │ ├── redis.go │ │ ├── rpc.go │ │ └── var.go │ ├── http │ │ ├── common.go │ │ ├── http.go │ │ └── info.go │ ├── main.go │ ├── rpc │ │ ├── receiver.go │ │ └── rpc.go │ ├── store │ │ ├── func.go │ │ ├── history.go │ │ ├── judge.go │ │ └── linkedlist.go │ └── version.go ├── nodata │ ├── .gitignore │ ├── README.md │ ├── cfg.example.json │ ├── collector │ │ ├── collector.go │ │ └── collector_cron.go │ ├── config │ │ ├── config.go │ │ ├── config_cron.go │ │ └── service │ │ │ ├── db.go │ │ │ ├── host.go │ │ │ └── mockcfg.go │ ├── control │ ├── g │ │ ├── cfg.go │ │ ├── g.go │ │ ├── git.go │ │ └── proc.go │ ├── http │ │ ├── common.go │ │ ├── debug_http.go │ │ ├── http.go │ │ └── proc_http.go │ ├── judge │ │ ├── judge.go │ │ ├── judge_cron.go │ │ └── status.go │ ├── main.go │ ├── scripts │ │ ├── debug │ │ └── nodata-db-schema.sql │ ├── sender │ │ └── sender.go │ └── version.go └── transfer │ ├── .gitignore │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── cfg.example.json │ ├── control │ ├── g │ ├── cfg.go │ ├── g.go │ └── git.go │ ├── http │ ├── api.go │ ├── common.go │ ├── debug_http.go │ ├── http.go │ └── proc_http.go │ ├── main.go │ ├── proc │ └── proc.go │ ├── receiver │ ├── receiver.go │ ├── rpc │ │ ├── rpc.go │ │ └── rpc_transfer.go │ └── socket │ │ ├── socket.go │ │ └── socket_telnet.go │ ├── scripts │ ├── info │ ├── info.py │ ├── last │ ├── last_raw │ ├── query │ └── query.py │ ├── sender │ ├── conn_pools.go │ ├── node_rings.go │ ├── send_queues.go │ ├── send_tasks.go │ ├── sender.go │ └── sender_cron.go │ ├── test │ ├── debug │ └── rpcclient.py │ └── version.go ├── scripts └── mysql │ ├── .gitignore │ ├── LICENSE │ ├── NOTICE │ └── db_schema │ ├── 1_uic-db-schema.sql │ ├── 2_portal-db-schema.sql │ ├── 3_dashboard-db-schema.sql │ ├── 4_graph-db-schema.sql │ └── 5_alarms-db-schema.sql ├── test └── README.md ├── vagrant └── Vagrantfile └── version.go /.dockerignore: -------------------------------------------------------------------------------- 1 | docs/ 2 | outrun/ 3 | tmp/ 4 | bin/ 5 | *.tar.gz 6 | open-falcon 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/Dockerfile.module -------------------------------------------------------------------------------- /Dockerfile_arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/Dockerfile_arm64 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.3.x 2 | -------------------------------------------------------------------------------- /api-standard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/api-standard.md -------------------------------------------------------------------------------- /cmd/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/cmd/check.go -------------------------------------------------------------------------------- /cmd/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/cmd/monitor.go -------------------------------------------------------------------------------- /cmd/reload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/cmd/reload.go -------------------------------------------------------------------------------- /cmd/restart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/cmd/restart.go -------------------------------------------------------------------------------- /cmd/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/cmd/start.go -------------------------------------------------------------------------------- /cmd/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/cmd/stop.go -------------------------------------------------------------------------------- /common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/.gitignore -------------------------------------------------------------------------------- /common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/LICENSE -------------------------------------------------------------------------------- /common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/NOTICE -------------------------------------------------------------------------------- /common/backend_pool/rpc_backends.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/backend_pool/rpc_backends.go -------------------------------------------------------------------------------- /common/backend_pool/tsdb_backends.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/backend_pool/tsdb_backends.go -------------------------------------------------------------------------------- /common/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/db/db.go -------------------------------------------------------------------------------- /common/model/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/model/agent.go -------------------------------------------------------------------------------- /common/model/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/model/event.go -------------------------------------------------------------------------------- /common/model/expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/model/expression.go -------------------------------------------------------------------------------- /common/model/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/model/graph.go -------------------------------------------------------------------------------- /common/model/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/model/host.go -------------------------------------------------------------------------------- /common/model/influxdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/model/influxdb.go -------------------------------------------------------------------------------- /common/model/judge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/model/judge.go -------------------------------------------------------------------------------- /common/model/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/model/metric.go -------------------------------------------------------------------------------- /common/model/nodata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/model/nodata.go -------------------------------------------------------------------------------- /common/model/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/model/prometheus.go -------------------------------------------------------------------------------- /common/model/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/model/rpc.go -------------------------------------------------------------------------------- /common/model/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/model/strategy.go -------------------------------------------------------------------------------- /common/model/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/model/template.go -------------------------------------------------------------------------------- /common/model/transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/model/transfer.go -------------------------------------------------------------------------------- /common/model/tsdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/model/tsdb.go -------------------------------------------------------------------------------- /common/proc/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/proc/proc.go -------------------------------------------------------------------------------- /common/sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/sdk/.gitignore -------------------------------------------------------------------------------- /common/sdk/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/sdk/requests/auth_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/sdk/requests/auth_request.go -------------------------------------------------------------------------------- /common/sdk/requests/post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/sdk/requests/post.go -------------------------------------------------------------------------------- /common/sdk/sender/linkedlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/sdk/sender/linkedlist.go -------------------------------------------------------------------------------- /common/sdk/sender/make.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/sdk/sender/make.go -------------------------------------------------------------------------------- /common/sdk/sender/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/sdk/sender/push.go -------------------------------------------------------------------------------- /common/sdk/sender/sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/sdk/sender/sender.go -------------------------------------------------------------------------------- /common/utils/counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/utils/counter.go -------------------------------------------------------------------------------- /common/utils/date.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/utils/date.go -------------------------------------------------------------------------------- /common/utils/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/utils/formatter.go -------------------------------------------------------------------------------- /common/utils/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/utils/func.go -------------------------------------------------------------------------------- /common/utils/func_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/utils/func_test.go -------------------------------------------------------------------------------- /common/utils/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/utils/map.go -------------------------------------------------------------------------------- /common/utils/md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/utils/md5.go -------------------------------------------------------------------------------- /common/utils/md5_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/utils/md5_test.go -------------------------------------------------------------------------------- /common/utils/objpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/utils/objpool.go -------------------------------------------------------------------------------- /common/utils/statistics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/utils/statistics.go -------------------------------------------------------------------------------- /common/utils/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/utils/tags.go -------------------------------------------------------------------------------- /common/utils/tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/common/utils/tags_test.go -------------------------------------------------------------------------------- /config/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/config/agent.json -------------------------------------------------------------------------------- /config/aggregator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/config/aggregator.json -------------------------------------------------------------------------------- /config/alarm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/config/alarm.json -------------------------------------------------------------------------------- /config/api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/config/api.json -------------------------------------------------------------------------------- /config/confgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/config/confgen.sh -------------------------------------------------------------------------------- /config/falcon2p8s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/config/falcon2p8s.json -------------------------------------------------------------------------------- /config/gateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/config/gateway.json -------------------------------------------------------------------------------- /config/graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/config/graph.json -------------------------------------------------------------------------------- /config/hbs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/config/hbs.json -------------------------------------------------------------------------------- /config/judge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/config/judge.json -------------------------------------------------------------------------------- /config/nodata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/config/nodata.json -------------------------------------------------------------------------------- /config/transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/config/transfer.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/confgen4docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/confgen4docker.sh -------------------------------------------------------------------------------- /docker/ctrl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/ctrl.sh -------------------------------------------------------------------------------- /docker/k8s-cluster/Dockerfile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-cluster/Dockerfile.tpl -------------------------------------------------------------------------------- /docker/k8s-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-cluster/README.md -------------------------------------------------------------------------------- /docker/k8s-cluster/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-cluster/build.sh -------------------------------------------------------------------------------- /docker/k8s-cluster/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-cluster/init.sh -------------------------------------------------------------------------------- /docker/k8s-cluster/modules/falcon-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-cluster/modules/falcon-agent.yaml -------------------------------------------------------------------------------- /docker/k8s-cluster/modules/falcon-aggregator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-cluster/modules/falcon-aggregator.yaml -------------------------------------------------------------------------------- /docker/k8s-cluster/modules/falcon-alarm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-cluster/modules/falcon-alarm.yaml -------------------------------------------------------------------------------- /docker/k8s-cluster/modules/falcon-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-cluster/modules/falcon-api.yaml -------------------------------------------------------------------------------- /docker/k8s-cluster/modules/falcon-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-cluster/modules/falcon-dashboard.yaml -------------------------------------------------------------------------------- /docker/k8s-cluster/modules/falcon-graph-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-cluster/modules/falcon-graph-01.yaml -------------------------------------------------------------------------------- /docker/k8s-cluster/modules/falcon-hbs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-cluster/modules/falcon-hbs.yaml -------------------------------------------------------------------------------- /docker/k8s-cluster/modules/falcon-judge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-cluster/modules/falcon-judge.yaml -------------------------------------------------------------------------------- /docker/k8s-cluster/modules/falcon-nodata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-cluster/modules/falcon-nodata.yaml -------------------------------------------------------------------------------- /docker/k8s-cluster/modules/falcon-transfer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-cluster/modules/falcon-transfer.yaml -------------------------------------------------------------------------------- /docker/k8s-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-example/README.md -------------------------------------------------------------------------------- /docker/k8s-example/init_mysql_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-example/init_mysql_data.sh -------------------------------------------------------------------------------- /docker/k8s-example/mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-example/mysql.yaml -------------------------------------------------------------------------------- /docker/k8s-example/openfalcon-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-example/openfalcon-dashboard.yaml -------------------------------------------------------------------------------- /docker/k8s-example/openfalcon-plus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-example/openfalcon-plus.yaml -------------------------------------------------------------------------------- /docker/k8s-example/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/k8s-example/redis.yaml -------------------------------------------------------------------------------- /docker/mysql-init/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/mysql-init/Dockerfile -------------------------------------------------------------------------------- /docker/mysql-init/init_mysql_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/mysql-init/init_mysql_data.sh -------------------------------------------------------------------------------- /docker/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker/supervisord.conf -------------------------------------------------------------------------------- /docker_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docker_test.sh -------------------------------------------------------------------------------- /docs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/LICENSE.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_includes/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_includes/nav.html -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/_posts/2017-01-01-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/2017-01-01-authentication.md -------------------------------------------------------------------------------- /docs/_posts/2017-01-01-response-status-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/2017-01-01-response-status-codes.md -------------------------------------------------------------------------------- /docs/_posts/Admin/2017-01-01-admin_change_role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Admin/2017-01-01-admin_change_role.md -------------------------------------------------------------------------------- /docs/_posts/Admin/2017-01-01-admin_change_user_passwd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Admin/2017-01-01-admin_change_user_passwd.md -------------------------------------------------------------------------------- /docs/_posts/Admin/2017-01-01-admin_delete_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Admin/2017-01-01-admin_delete_user.md -------------------------------------------------------------------------------- /docs/_posts/Admin/2017-12-07-admin_login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Admin/2017-12-07-admin_login.md -------------------------------------------------------------------------------- /docs/_posts/Aggregator/2017-01-01-aggreator_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Aggregator/2017-01-01-aggreator_create.md -------------------------------------------------------------------------------- /docs/_posts/Aggregator/2017-01-01-aggreator_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Aggregator/2017-01-01-aggreator_delete.md -------------------------------------------------------------------------------- /docs/_posts/Aggregator/2017-01-01-aggreator_of_hostgroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Aggregator/2017-01-01-aggreator_of_hostgroup.md -------------------------------------------------------------------------------- /docs/_posts/Aggregator/2017-01-01-aggreator_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Aggregator/2017-01-01-aggreator_update.md -------------------------------------------------------------------------------- /docs/_posts/Aggregator/2017-01-01-get_aggreator_by_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Aggregator/2017-01-01-get_aggreator_by_id.md -------------------------------------------------------------------------------- /docs/_posts/Alarm/2017-01-01-alarm_eventcases_get_by_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Alarm/2017-01-01-alarm_eventcases_get_by_id.md -------------------------------------------------------------------------------- /docs/_posts/Alarm/2017-01-01-alarm_eventcases_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Alarm/2017-01-01-alarm_eventcases_list.md -------------------------------------------------------------------------------- /docs/_posts/Alarm/2017-01-01-alarm_eventnote_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Alarm/2017-01-01-alarm_eventnote_create.md -------------------------------------------------------------------------------- /docs/_posts/Alarm/2017-01-01-alarm_eventnote_get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Alarm/2017-01-01-alarm_eventnote_get.md -------------------------------------------------------------------------------- /docs/_posts/Alarm/2017-01-01-alarm_events_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Alarm/2017-01-01-alarm_events_create.md -------------------------------------------------------------------------------- /docs/_posts/DashboardGraph/2017-01-01-dashboard_graph_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/DashboardGraph/2017-01-01-dashboard_graph_create.md -------------------------------------------------------------------------------- /docs/_posts/DashboardGraph/2017-01-01-dashboard_graph_create_tmpgraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/DashboardGraph/2017-01-01-dashboard_graph_create_tmpgraph.md -------------------------------------------------------------------------------- /docs/_posts/DashboardGraph/2017-01-01-dashboard_graph_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/DashboardGraph/2017-01-01-dashboard_graph_delete.md -------------------------------------------------------------------------------- /docs/_posts/DashboardGraph/2017-01-01-dashboard_graph_get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/DashboardGraph/2017-01-01-dashboard_graph_get.md -------------------------------------------------------------------------------- /docs/_posts/DashboardGraph/2017-01-01-dashboard_graph_get_tmpgraph_by_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/DashboardGraph/2017-01-01-dashboard_graph_get_tmpgraph_by_id.md -------------------------------------------------------------------------------- /docs/_posts/DashboardGraph/2017-01-01-dashboard_graph_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/DashboardGraph/2017-01-01-dashboard_graph_update.md -------------------------------------------------------------------------------- /docs/_posts/DashboardGraph/2017-01-01-dashboard_graphs_gets_by_screenid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/DashboardGraph/2017-01-01-dashboard_graphs_gets_by_screenid.md -------------------------------------------------------------------------------- /docs/_posts/DashboardScreen/2017-01-01-dashboard_screen_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/DashboardScreen/2017-01-01-dashboard_screen_create.md -------------------------------------------------------------------------------- /docs/_posts/DashboardScreen/2017-01-01-dashboard_screen_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/DashboardScreen/2017-01-01-dashboard_screen_delete.md -------------------------------------------------------------------------------- /docs/_posts/DashboardScreen/2017-01-01-dashboard_screen_get_by_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/DashboardScreen/2017-01-01-dashboard_screen_get_by_id.md -------------------------------------------------------------------------------- /docs/_posts/DashboardScreen/2017-01-01-dashboard_screen_gets_all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/DashboardScreen/2017-01-01-dashboard_screen_gets_all.md -------------------------------------------------------------------------------- /docs/_posts/DashboardScreen/2017-01-01-dashboard_screen_gets_by_pid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/DashboardScreen/2017-01-01-dashboard_screen_gets_by_pid.md -------------------------------------------------------------------------------- /docs/_posts/DashboardScreen/2017-01-01-dashboard_screen_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/DashboardScreen/2017-01-01-dashboard_screen_update.md -------------------------------------------------------------------------------- /docs/_posts/Expression/2017-01-01-expression_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Expression/2017-01-01-expression_create.md -------------------------------------------------------------------------------- /docs/_posts/Expression/2017-01-01-expression_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Expression/2017-01-01-expression_delete.md -------------------------------------------------------------------------------- /docs/_posts/Expression/2017-01-01-expression_info_by_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Expression/2017-01-01-expression_info_by_id.md -------------------------------------------------------------------------------- /docs/_posts/Expression/2017-01-01-expression_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Expression/2017-01-01-expression_list.md -------------------------------------------------------------------------------- /docs/_posts/Expression/2017-01-01-expression_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Expression/2017-01-01-expression_update.md -------------------------------------------------------------------------------- /docs/_posts/Graph/2017-01-01-endpoint_counter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Graph/2017-01-01-endpoint_counter.md -------------------------------------------------------------------------------- /docs/_posts/Graph/2017-01-01-endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Graph/2017-01-01-endpoints.md -------------------------------------------------------------------------------- /docs/_posts/Graph/2017-01-01-grafana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Graph/2017-01-01-grafana.md -------------------------------------------------------------------------------- /docs/_posts/Graph/2017-01-01-graph_histroy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Graph/2017-01-01-graph_histroy.md -------------------------------------------------------------------------------- /docs/_posts/Host/2017-01-01-host_maintain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Host/2017-01-01-host_maintain.md -------------------------------------------------------------------------------- /docs/_posts/Host/2017-01-01-host_related_hostgroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Host/2017-01-01-host_related_hostgroup.md -------------------------------------------------------------------------------- /docs/_posts/Host/2017-01-01-host_related_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Host/2017-01-01-host_related_template.md -------------------------------------------------------------------------------- /docs/_posts/Host/2017-01-01-host_reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Host/2017-01-01-host_reset.md -------------------------------------------------------------------------------- /docs/_posts/HostGroup/2017-01-01-hostgroup_add_host.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/HostGroup/2017-01-01-hostgroup_add_host.md -------------------------------------------------------------------------------- /docs/_posts/HostGroup/2017-01-01-hostgroup_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/HostGroup/2017-01-01-hostgroup_create.md -------------------------------------------------------------------------------- /docs/_posts/HostGroup/2017-01-01-hostgroup_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/HostGroup/2017-01-01-hostgroup_delete.md -------------------------------------------------------------------------------- /docs/_posts/HostGroup/2017-01-01-hostgroup_get_info_by_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/HostGroup/2017-01-01-hostgroup_get_info_by_id.md -------------------------------------------------------------------------------- /docs/_posts/HostGroup/2017-01-01-hostgroup_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/HostGroup/2017-01-01-hostgroup_list.md -------------------------------------------------------------------------------- /docs/_posts/HostGroup/2017-01-01-hostgroup_template_bind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/HostGroup/2017-01-01-hostgroup_template_bind.md -------------------------------------------------------------------------------- /docs/_posts/HostGroup/2017-01-01-hostgroup_template_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/HostGroup/2017-01-01-hostgroup_template_list.md -------------------------------------------------------------------------------- /docs/_posts/HostGroup/2017-01-01-hostgroup_template_unbind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/HostGroup/2017-01-01-hostgroup_template_unbind.md -------------------------------------------------------------------------------- /docs/_posts/HostGroup/2017-01-01-hostgroup_unbind_host.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/HostGroup/2017-01-01-hostgroup_unbind_host.md -------------------------------------------------------------------------------- /docs/_posts/HostGroup/2017-01-01-hostgroup_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/HostGroup/2017-01-01-hostgroup_update.md -------------------------------------------------------------------------------- /docs/_posts/HostGroup/2017-08-22-hostgroup_update_partial_hosts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/HostGroup/2017-08-22-hostgroup_update_partial_hosts.md -------------------------------------------------------------------------------- /docs/_posts/NoData/2017-01-01-nodata_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/NoData/2017-01-01-nodata_create.md -------------------------------------------------------------------------------- /docs/_posts/NoData/2017-01-01-nodata_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/NoData/2017-01-01-nodata_delete.md -------------------------------------------------------------------------------- /docs/_posts/NoData/2017-01-01-nodata_info_by_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/NoData/2017-01-01-nodata_info_by_id.md -------------------------------------------------------------------------------- /docs/_posts/NoData/2017-01-01-nodata_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/NoData/2017-01-01-nodata_list.md -------------------------------------------------------------------------------- /docs/_posts/NoData/2017-01-01-nodata_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/NoData/2017-01-01-nodata_update.md -------------------------------------------------------------------------------- /docs/_posts/Plugin/2017-01-01-plugin_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Plugin/2017-01-01-plugin_create.md -------------------------------------------------------------------------------- /docs/_posts/Plugin/2017-01-01-plugin_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Plugin/2017-01-01-plugin_delete.md -------------------------------------------------------------------------------- /docs/_posts/Plugin/2017-01-01-plugin_info_by_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Plugin/2017-01-01-plugin_info_by_id.md -------------------------------------------------------------------------------- /docs/_posts/Strategy/2017-01-01-metric_tmplist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Strategy/2017-01-01-metric_tmplist.md -------------------------------------------------------------------------------- /docs/_posts/Strategy/2017-01-01-strategy_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Strategy/2017-01-01-strategy_create.md -------------------------------------------------------------------------------- /docs/_posts/Strategy/2017-01-01-strategy_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Strategy/2017-01-01-strategy_delete.md -------------------------------------------------------------------------------- /docs/_posts/Strategy/2017-01-01-strategy_info_by_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Strategy/2017-01-01-strategy_info_by_id.md -------------------------------------------------------------------------------- /docs/_posts/Strategy/2017-01-01-strategy_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Strategy/2017-01-01-strategy_list.md -------------------------------------------------------------------------------- /docs/_posts/Strategy/2017-01-01-strategy_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Strategy/2017-01-01-strategy_update.md -------------------------------------------------------------------------------- /docs/_posts/Team/2017-01-01-team_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Team/2017-01-01-team_create.md -------------------------------------------------------------------------------- /docs/_posts/Team/2017-01-01-team_delete_by_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Team/2017-01-01-team_delete_by_id.md -------------------------------------------------------------------------------- /docs/_posts/Team/2017-01-01-team_info_by_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Team/2017-01-01-team_info_by_id.md -------------------------------------------------------------------------------- /docs/_posts/Team/2017-01-01-team_info_by_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Team/2017-01-01-team_info_by_name.md -------------------------------------------------------------------------------- /docs/_posts/Team/2017-01-01-team_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Team/2017-01-01-team_list.md -------------------------------------------------------------------------------- /docs/_posts/Team/2017-01-01-team_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Team/2017-01-01-team_update.md -------------------------------------------------------------------------------- /docs/_posts/Team/2018-11-19-add-user-to-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Team/2018-11-19-add-user-to-team.md -------------------------------------------------------------------------------- /docs/_posts/Template/2017-01-01-tpl_action_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Template/2017-01-01-tpl_action_create.md -------------------------------------------------------------------------------- /docs/_posts/Template/2017-01-01-tpl_action_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Template/2017-01-01-tpl_action_update.md -------------------------------------------------------------------------------- /docs/_posts/Template/2017-01-01-tpl_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Template/2017-01-01-tpl_create.md -------------------------------------------------------------------------------- /docs/_posts/Template/2017-01-01-tpl_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Template/2017-01-01-tpl_delete.md -------------------------------------------------------------------------------- /docs/_posts/Template/2017-01-01-tpl_hgp_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Template/2017-01-01-tpl_hgp_list.md -------------------------------------------------------------------------------- /docs/_posts/Template/2017-01-01-tpl_info_by_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Template/2017-01-01-tpl_info_by_id.md -------------------------------------------------------------------------------- /docs/_posts/Template/2017-01-01-tpl_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Template/2017-01-01-tpl_list.md -------------------------------------------------------------------------------- /docs/_posts/Template/2017-01-01-tpl_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/Template/2017-01-01-tpl_update.md -------------------------------------------------------------------------------- /docs/_posts/User/2017-01-01-user_change_password.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/User/2017-01-01-user_change_password.md -------------------------------------------------------------------------------- /docs/_posts/User/2017-01-01-user_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/User/2017-01-01-user_create.md -------------------------------------------------------------------------------- /docs/_posts/User/2017-01-01-user_current.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/User/2017-01-01-user_current.md -------------------------------------------------------------------------------- /docs/_posts/User/2017-01-01-user_get_info_by_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/User/2017-01-01-user_get_info_by_id.md -------------------------------------------------------------------------------- /docs/_posts/User/2017-01-01-user_get_info_by_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/User/2017-01-01-user_get_info_by_name.md -------------------------------------------------------------------------------- /docs/_posts/User/2017-01-01-user_get_teams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/User/2017-01-01-user_get_teams.md -------------------------------------------------------------------------------- /docs/_posts/User/2017-01-01-user_is_in_teams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/User/2017-01-01-user_is_in_teams.md -------------------------------------------------------------------------------- /docs/_posts/User/2017-01-01-user_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/User/2017-01-01-user_list.md -------------------------------------------------------------------------------- /docs/_posts/User/2017-01-01-user_login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/User/2017-01-01-user_login.md -------------------------------------------------------------------------------- /docs/_posts/User/2017-01-01-user_logout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/User/2017-01-01-user_logout.md -------------------------------------------------------------------------------- /docs/_posts/User/2017-01-01-user_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/User/2017-01-01-user_update.md -------------------------------------------------------------------------------- /docs/_posts/User/2019-04-14-update-specific-user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/_posts/User/2019-04-14-update-specific-user.md -------------------------------------------------------------------------------- /docs/assets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/assets.css -------------------------------------------------------------------------------- /docs/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/assets.js -------------------------------------------------------------------------------- /docs/doc/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/admin.html -------------------------------------------------------------------------------- /docs/doc/admin.html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/admin.html.json -------------------------------------------------------------------------------- /docs/doc/aggregator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/aggregator.html -------------------------------------------------------------------------------- /docs/doc/aggregator.html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/aggregator.html.json -------------------------------------------------------------------------------- /docs/doc/alarm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/alarm.html -------------------------------------------------------------------------------- /docs/doc/alarm.html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/alarm.html.json -------------------------------------------------------------------------------- /docs/doc/expression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/expression.html -------------------------------------------------------------------------------- /docs/doc/expression.html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/expression.html.json -------------------------------------------------------------------------------- /docs/doc/graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/graph.html -------------------------------------------------------------------------------- /docs/doc/graph.html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/graph.html.json -------------------------------------------------------------------------------- /docs/doc/host.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/host.html -------------------------------------------------------------------------------- /docs/doc/host.html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/host.html.json -------------------------------------------------------------------------------- /docs/doc/hostgroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/hostgroup.html -------------------------------------------------------------------------------- /docs/doc/hostgroup.html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/hostgroup.html.json -------------------------------------------------------------------------------- /docs/doc/nodata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/nodata.html -------------------------------------------------------------------------------- /docs/doc/nodata.html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/nodata.html.json -------------------------------------------------------------------------------- /docs/doc/plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/plugin.html -------------------------------------------------------------------------------- /docs/doc/plugin.html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/plugin.html.json -------------------------------------------------------------------------------- /docs/doc/team.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/team.html -------------------------------------------------------------------------------- /docs/doc/team.html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/team.html.json -------------------------------------------------------------------------------- /docs/doc/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/template.html -------------------------------------------------------------------------------- /docs/doc/template.html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/template.html.json -------------------------------------------------------------------------------- /docs/doc/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/user.html -------------------------------------------------------------------------------- /docs/doc/user.html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/doc/user.html.json -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /images/ -------------------------------------------------------------------------------- /g/g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/g/g.go -------------------------------------------------------------------------------- /g/tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/g/tool.go -------------------------------------------------------------------------------- /g/tool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/g/tool_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/go.sum -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/logo.png -------------------------------------------------------------------------------- /logos/open-falcon-logo-with-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/logos/open-falcon-logo-with-title.png -------------------------------------------------------------------------------- /logos/open-falcon-logo-with-title.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/logos/open-falcon-logo-with-title.svg -------------------------------------------------------------------------------- /logos/open-falcon_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/logos/open-falcon_logo.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/main.go -------------------------------------------------------------------------------- /modules/agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/.gitignore -------------------------------------------------------------------------------- /modules/agent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/LICENSE -------------------------------------------------------------------------------- /modules/agent/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/NOTICE -------------------------------------------------------------------------------- /modules/agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/README.md -------------------------------------------------------------------------------- /modules/agent/cfg.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/cfg.example.json -------------------------------------------------------------------------------- /modules/agent/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/control -------------------------------------------------------------------------------- /modules/agent/cron/builtin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/cron/builtin.go -------------------------------------------------------------------------------- /modules/agent/cron/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/cron/collector.go -------------------------------------------------------------------------------- /modules/agent/cron/ips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/cron/ips.go -------------------------------------------------------------------------------- /modules/agent/cron/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/cron/plugin.go -------------------------------------------------------------------------------- /modules/agent/cron/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/cron/reporter.go -------------------------------------------------------------------------------- /modules/agent/funcs/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/agent.go -------------------------------------------------------------------------------- /modules/agent/funcs/checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/checker.go -------------------------------------------------------------------------------- /modules/agent/funcs/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/common.go -------------------------------------------------------------------------------- /modules/agent/funcs/cpustat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/cpustat.go -------------------------------------------------------------------------------- /modules/agent/funcs/dfstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/dfstat.go -------------------------------------------------------------------------------- /modules/agent/funcs/diskstats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/diskstats.go -------------------------------------------------------------------------------- /modules/agent/funcs/du.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/du.go -------------------------------------------------------------------------------- /modules/agent/funcs/du_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/du_test.go -------------------------------------------------------------------------------- /modules/agent/funcs/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/funcs.go -------------------------------------------------------------------------------- /modules/agent/funcs/gpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/gpu.go -------------------------------------------------------------------------------- /modules/agent/funcs/ifstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/ifstat.go -------------------------------------------------------------------------------- /modules/agent/funcs/kernel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/kernel.go -------------------------------------------------------------------------------- /modules/agent/funcs/loadavg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/loadavg.go -------------------------------------------------------------------------------- /modules/agent/funcs/meminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/meminfo.go -------------------------------------------------------------------------------- /modules/agent/funcs/netstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/netstat.go -------------------------------------------------------------------------------- /modules/agent/funcs/portstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/portstat.go -------------------------------------------------------------------------------- /modules/agent/funcs/procs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/procs.go -------------------------------------------------------------------------------- /modules/agent/funcs/snmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/snmp.go -------------------------------------------------------------------------------- /modules/agent/funcs/sockstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/sockstat.go -------------------------------------------------------------------------------- /modules/agent/funcs/urlstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/funcs/urlstat.go -------------------------------------------------------------------------------- /modules/agent/g/cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/g/cfg.go -------------------------------------------------------------------------------- /modules/agent/g/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/g/const.go -------------------------------------------------------------------------------- /modules/agent/g/g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/g/g.go -------------------------------------------------------------------------------- /modules/agent/g/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/g/logger.go -------------------------------------------------------------------------------- /modules/agent/g/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/g/rpc.go -------------------------------------------------------------------------------- /modules/agent/g/tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/g/tool.go -------------------------------------------------------------------------------- /modules/agent/g/transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/g/transfer.go -------------------------------------------------------------------------------- /modules/agent/g/var.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/g/var.go -------------------------------------------------------------------------------- /modules/agent/g/var_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/g/var_test.go -------------------------------------------------------------------------------- /modules/agent/http/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/http/admin.go -------------------------------------------------------------------------------- /modules/agent/http/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/http/cpu.go -------------------------------------------------------------------------------- /modules/agent/http/df.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/http/df.go -------------------------------------------------------------------------------- /modules/agent/http/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/http/health.go -------------------------------------------------------------------------------- /modules/agent/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/http/http.go -------------------------------------------------------------------------------- /modules/agent/http/iostat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/http/iostat.go -------------------------------------------------------------------------------- /modules/agent/http/kernel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/http/kernel.go -------------------------------------------------------------------------------- /modules/agent/http/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/http/memory.go -------------------------------------------------------------------------------- /modules/agent/http/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/http/page.go -------------------------------------------------------------------------------- /modules/agent/http/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/http/plugin.go -------------------------------------------------------------------------------- /modules/agent/http/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/http/push.go -------------------------------------------------------------------------------- /modules/agent/http/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/http/run.go -------------------------------------------------------------------------------- /modules/agent/http/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/http/system.go -------------------------------------------------------------------------------- /modules/agent/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/main.go -------------------------------------------------------------------------------- /modules/agent/plugins/plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/plugins/plugins.go -------------------------------------------------------------------------------- /modules/agent/plugins/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/plugins/reader.go -------------------------------------------------------------------------------- /modules/agent/plugins/scheduler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/plugins/scheduler.go -------------------------------------------------------------------------------- /modules/agent/public/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /modules/agent/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /modules/agent/public/css/font-awesome/css/archive/font-awesome-ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/font-awesome/css/archive/font-awesome-ie7.css -------------------------------------------------------------------------------- /modules/agent/public/css/font-awesome/css/archive/font-awesome-ie7.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/font-awesome/css/archive/font-awesome-ie7.min.css -------------------------------------------------------------------------------- /modules/agent/public/css/font-awesome/css/archive/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/font-awesome/css/archive/font-awesome.css -------------------------------------------------------------------------------- /modules/agent/public/css/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /modules/agent/public/css/font-awesome/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/font-awesome/font/FontAwesome.otf -------------------------------------------------------------------------------- /modules/agent/public/css/font-awesome/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/font-awesome/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /modules/agent/public/css/font-awesome/font/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/font-awesome/font/fontawesome-webfont.svg -------------------------------------------------------------------------------- /modules/agent/public/css/font-awesome/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/font-awesome/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /modules/agent/public/css/font-awesome/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/font-awesome/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /modules/agent/public/css/font/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/font/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /modules/agent/public/css/font/OpenSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/font/OpenSans-Regular-webfont.svg -------------------------------------------------------------------------------- /modules/agent/public/css/font/OpenSans-Regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/font/OpenSans-Regular-webfont.ttf -------------------------------------------------------------------------------- /modules/agent/public/css/font/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/font/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /modules/agent/public/css/g.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/g.css -------------------------------------------------------------------------------- /modules/agent/public/css/odometer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/odometer.css -------------------------------------------------------------------------------- /modules/agent/public/css/pages/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/pages/dashboard.css -------------------------------------------------------------------------------- /modules/agent/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/css/style.css -------------------------------------------------------------------------------- /modules/agent/public/img/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/img/code.png -------------------------------------------------------------------------------- /modules/agent/public/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/img/favicon.ico -------------------------------------------------------------------------------- /modules/agent/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/index.html -------------------------------------------------------------------------------- /modules/agent/public/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/js/base.js -------------------------------------------------------------------------------- /modules/agent/public/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/js/bootstrap.js -------------------------------------------------------------------------------- /modules/agent/public/js/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/js/dashboard.js -------------------------------------------------------------------------------- /modules/agent/public/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/js/jquery-ui.min.js -------------------------------------------------------------------------------- /modules/agent/public/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /modules/agent/public/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/js/jquery.js -------------------------------------------------------------------------------- /modules/agent/public/js/odometer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/public/js/odometer.js -------------------------------------------------------------------------------- /modules/agent/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/agent/version.go -------------------------------------------------------------------------------- /modules/aggregator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/.gitignore -------------------------------------------------------------------------------- /modules/aggregator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/README.md -------------------------------------------------------------------------------- /modules/aggregator/cfg.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/cfg.example.json -------------------------------------------------------------------------------- /modules/aggregator/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/control -------------------------------------------------------------------------------- /modules/aggregator/cron/computer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/cron/computer.go -------------------------------------------------------------------------------- /modules/aggregator/cron/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/cron/query.go -------------------------------------------------------------------------------- /modules/aggregator/cron/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/cron/run.go -------------------------------------------------------------------------------- /modules/aggregator/cron/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/cron/run_test.go -------------------------------------------------------------------------------- /modules/aggregator/cron/updater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/cron/updater.go -------------------------------------------------------------------------------- /modules/aggregator/cron/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/cron/worker.go -------------------------------------------------------------------------------- /modules/aggregator/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/db/db.go -------------------------------------------------------------------------------- /modules/aggregator/db/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/db/reader.go -------------------------------------------------------------------------------- /modules/aggregator/g/cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/g/cfg.go -------------------------------------------------------------------------------- /modules/aggregator/g/g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/g/g.go -------------------------------------------------------------------------------- /modules/aggregator/g/items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/g/items.go -------------------------------------------------------------------------------- /modules/aggregator/http/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/http/common.go -------------------------------------------------------------------------------- /modules/aggregator/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/http/http.go -------------------------------------------------------------------------------- /modules/aggregator/http/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/http/proc.go -------------------------------------------------------------------------------- /modules/aggregator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/main.go -------------------------------------------------------------------------------- /modules/aggregator/sdk/sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/sdk/sdk.go -------------------------------------------------------------------------------- /modules/aggregator/sdk/sdk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/sdk/sdk_test.go -------------------------------------------------------------------------------- /modules/aggregator/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/aggregator/version.go -------------------------------------------------------------------------------- /modules/alarm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/.gitignore -------------------------------------------------------------------------------- /modules/alarm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/LICENSE -------------------------------------------------------------------------------- /modules/alarm/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/NOTICE -------------------------------------------------------------------------------- /modules/alarm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/README.md -------------------------------------------------------------------------------- /modules/alarm/api/links.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/api/links.go -------------------------------------------------------------------------------- /modules/alarm/api/portal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/api/portal.go -------------------------------------------------------------------------------- /modules/alarm/api/portal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/api/portal_test.go -------------------------------------------------------------------------------- /modules/alarm/api/uic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/api/uic.go -------------------------------------------------------------------------------- /modules/alarm/api/uic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/api/uic_test.go -------------------------------------------------------------------------------- /modules/alarm/cfg.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/cfg.example.json -------------------------------------------------------------------------------- /modules/alarm/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/control -------------------------------------------------------------------------------- /modules/alarm/cron/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/cron/builder.go -------------------------------------------------------------------------------- /modules/alarm/cron/callback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/cron/callback.go -------------------------------------------------------------------------------- /modules/alarm/cron/combiner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/cron/combiner.go -------------------------------------------------------------------------------- /modules/alarm/cron/event_cleaner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/cron/event_cleaner.go -------------------------------------------------------------------------------- /modules/alarm/cron/event_consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/cron/event_consumer.go -------------------------------------------------------------------------------- /modules/alarm/cron/event_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/cron/event_reader.go -------------------------------------------------------------------------------- /modules/alarm/cron/im_sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/cron/im_sender.go -------------------------------------------------------------------------------- /modules/alarm/cron/init_sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/cron/init_sender.go -------------------------------------------------------------------------------- /modules/alarm/cron/mail_sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/cron/mail_sender.go -------------------------------------------------------------------------------- /modules/alarm/cron/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/cron/model.go -------------------------------------------------------------------------------- /modules/alarm/cron/sms_sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/cron/sms_sender.go -------------------------------------------------------------------------------- /modules/alarm/g/cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/g/cfg.go -------------------------------------------------------------------------------- /modules/alarm/g/eventdto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/g/eventdto.go -------------------------------------------------------------------------------- /modules/alarm/g/g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/g/g.go -------------------------------------------------------------------------------- /modules/alarm/g/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/g/logger.go -------------------------------------------------------------------------------- /modules/alarm/g/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/g/redis.go -------------------------------------------------------------------------------- /modules/alarm/gitversion: -------------------------------------------------------------------------------- 1 | 30df6a7 2 | -------------------------------------------------------------------------------- /modules/alarm/http/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/http/controller.go -------------------------------------------------------------------------------- /modules/alarm/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/http/http.go -------------------------------------------------------------------------------- /modules/alarm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/main.go -------------------------------------------------------------------------------- /modules/alarm/model/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/model/database.go -------------------------------------------------------------------------------- /modules/alarm/model/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/model/event/event.go -------------------------------------------------------------------------------- /modules/alarm/model/event/event_operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/model/event/event_operation.go -------------------------------------------------------------------------------- /modules/alarm/model/im.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/model/im.go -------------------------------------------------------------------------------- /modules/alarm/model/mail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/model/mail.go -------------------------------------------------------------------------------- /modules/alarm/model/sms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/model/sms.go -------------------------------------------------------------------------------- /modules/alarm/redi/msg_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/redi/msg_reader.go -------------------------------------------------------------------------------- /modules/alarm/redi/msg_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/redi/msg_writer.go -------------------------------------------------------------------------------- /modules/alarm/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/alarm/version.go -------------------------------------------------------------------------------- /modules/api/.gitignore: -------------------------------------------------------------------------------- 1 | cfg.json 2 | api 3 | -------------------------------------------------------------------------------- /modules/api/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/ReadMe.md -------------------------------------------------------------------------------- /modules/api/app/controller/alarm/alarm_events_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/alarm/alarm_events_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/alarm/alarm_notes_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/alarm/alarm_notes_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/alarm/alarm_routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/alarm/alarm_routes.go -------------------------------------------------------------------------------- /modules/api/app/controller/dashboard_graph/dashboard_graph_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/dashboard_graph/dashboard_graph_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/dashboard_graph/dashboard_graph_routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/dashboard_graph/dashboard_graph_routes.go -------------------------------------------------------------------------------- /modules/api/app/controller/dashboard_screen/dashboard_screen_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/dashboard_screen/dashboard_screen_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/dashboard_screen/dashboard_screen_routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/dashboard_screen/dashboard_screen_routes.go -------------------------------------------------------------------------------- /modules/api/app/controller/expression/expression_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/expression/expression_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/expression/expression_routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/expression/expression_routes.go -------------------------------------------------------------------------------- /modules/api/app/controller/graph/grafana_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/graph/grafana_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/graph/grafana_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/graph/grafana_controller_test.go -------------------------------------------------------------------------------- /modules/api/app/controller/graph/graph_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/graph/graph_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/graph/graph_routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/graph/graph_routes.go -------------------------------------------------------------------------------- /modules/api/app/controller/host/aggreator_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/host/aggreator_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/host/host_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/host/host_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/host/host_routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/host/host_routes.go -------------------------------------------------------------------------------- /modules/api/app/controller/host/hostgroup_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/host/hostgroup_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/host/maintain_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/host/maintain_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/host/plugins_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/host/plugins_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/mockcfg/mockcfg_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/mockcfg/mockcfg_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/mockcfg/mockcfg_io_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/mockcfg/mockcfg_io_helper.go -------------------------------------------------------------------------------- /modules/api/app/controller/mockcfg/mockcfg_routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/mockcfg/mockcfg_routes.go -------------------------------------------------------------------------------- /modules/api/app/controller/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/routes.go -------------------------------------------------------------------------------- /modules/api/app/controller/strategy/strategy_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/strategy/strategy_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/strategy/strategy_routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/strategy/strategy_routes.go -------------------------------------------------------------------------------- /modules/api/app/controller/template/template_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/template/template_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/template/template_routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/template/template_routes.go -------------------------------------------------------------------------------- /modules/api/app/controller/uic/session_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/uic/session_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/uic/team_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/uic/team_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/uic/user_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/uic/user_controller.go -------------------------------------------------------------------------------- /modules/api/app/controller/uic/user_routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/controller/uic/user_routes.go -------------------------------------------------------------------------------- /modules/api/app/helper/pagging_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/helper/pagging_parser.go -------------------------------------------------------------------------------- /modules/api/app/helper/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/helper/session.go -------------------------------------------------------------------------------- /modules/api/app/helper/simple_reponse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/helper/simple_reponse.go -------------------------------------------------------------------------------- /modules/api/app/model/alarm/event_cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/alarm/event_cases.go -------------------------------------------------------------------------------- /modules/api/app/model/alarm/event_note.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/alarm/event_note.go -------------------------------------------------------------------------------- /modules/api/app/model/alarm/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/alarm/events.go -------------------------------------------------------------------------------- /modules/api/app/model/dashboard/dashboard_graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/dashboard/dashboard_graph.go -------------------------------------------------------------------------------- /modules/api/app/model/dashboard/dashboard_screen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/dashboard/dashboard_screen.go -------------------------------------------------------------------------------- /modules/api/app/model/dashboard/dashboard_tmp_graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/dashboard/dashboard_tmp_graph.go -------------------------------------------------------------------------------- /modules/api/app/model/dashboard/descript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/dashboard/descript.md -------------------------------------------------------------------------------- /modules/api/app/model/falcon_portal/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/falcon_portal/action.go -------------------------------------------------------------------------------- /modules/api/app/model/falcon_portal/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/falcon_portal/cluster.go -------------------------------------------------------------------------------- /modules/api/app/model/falcon_portal/expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/falcon_portal/expression.go -------------------------------------------------------------------------------- /modules/api/app/model/falcon_portal/grp_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/falcon_portal/grp_host.go -------------------------------------------------------------------------------- /modules/api/app/model/falcon_portal/grp_tpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/falcon_portal/grp_tpl.go -------------------------------------------------------------------------------- /modules/api/app/model/falcon_portal/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/falcon_portal/host.go -------------------------------------------------------------------------------- /modules/api/app/model/falcon_portal/host_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/falcon_portal/host_group.go -------------------------------------------------------------------------------- /modules/api/app/model/falcon_portal/mockcfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/falcon_portal/mockcfg.go -------------------------------------------------------------------------------- /modules/api/app/model/falcon_portal/plugin_dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/falcon_portal/plugin_dir.go -------------------------------------------------------------------------------- /modules/api/app/model/falcon_portal/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/falcon_portal/strategy.go -------------------------------------------------------------------------------- /modules/api/app/model/falcon_portal/tpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/falcon_portal/tpl.go -------------------------------------------------------------------------------- /modules/api/app/model/graph/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/graph/endpoint.go -------------------------------------------------------------------------------- /modules/api/app/model/graph/endpoint_counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/graph/endpoint_counter.go -------------------------------------------------------------------------------- /modules/api/app/model/graph/tag_endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/graph/tag_endpoint.go -------------------------------------------------------------------------------- /modules/api/app/model/uic/rel_team_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/uic/rel_team_user.go -------------------------------------------------------------------------------- /modules/api/app/model/uic/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/uic/team.go -------------------------------------------------------------------------------- /modules/api/app/model/uic/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/model/uic/user.go -------------------------------------------------------------------------------- /modules/api/app/utils/auth_middle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/utils/auth_middle.go -------------------------------------------------------------------------------- /modules/api/app/utils/fetch_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/utils/fetch_value.go -------------------------------------------------------------------------------- /modules/api/app/utils/passwd_hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/utils/passwd_hash.go -------------------------------------------------------------------------------- /modules/api/app/utils/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/utils/regexp.go -------------------------------------------------------------------------------- /modules/api/app/utils/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/utils/set.go -------------------------------------------------------------------------------- /modules/api/app/utils/to_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/utils/to_string.go -------------------------------------------------------------------------------- /modules/api/app/utils/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/app/utils/uuid.go -------------------------------------------------------------------------------- /modules/api/cfg.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/cfg.example.json -------------------------------------------------------------------------------- /modules/api/config/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/config/database.go -------------------------------------------------------------------------------- /modules/api/config/g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/config/g.go -------------------------------------------------------------------------------- /modules/api/config/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/config/logger.go -------------------------------------------------------------------------------- /modules/api/data/metric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/data/metric -------------------------------------------------------------------------------- /modules/api/data/owl_backend_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/data/owl_backend_icon.jpg -------------------------------------------------------------------------------- /modules/api/graph/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/graph/graph.go -------------------------------------------------------------------------------- /modules/api/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/main.go -------------------------------------------------------------------------------- /modules/api/test/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/test/api_test.go -------------------------------------------------------------------------------- /modules/api/test/cfg_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/test/cfg_test.json -------------------------------------------------------------------------------- /modules/api/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/api/version.go -------------------------------------------------------------------------------- /modules/falcon2p8s/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .idea 3 | .DS_Store 4 | /var 5 | /falcon2p8s* 6 | /cfg.json 7 | /gitversion -------------------------------------------------------------------------------- /modules/falcon2p8s/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/ReadMe.md -------------------------------------------------------------------------------- /modules/falcon2p8s/cfg.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/cfg.example.json -------------------------------------------------------------------------------- /modules/falcon2p8s/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/control -------------------------------------------------------------------------------- /modules/falcon2p8s/g/cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/g/cfg.go -------------------------------------------------------------------------------- /modules/falcon2p8s/g/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/g/const.go -------------------------------------------------------------------------------- /modules/falcon2p8s/g/g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/g/g.go -------------------------------------------------------------------------------- /modules/falcon2p8s/g/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/g/logger.go -------------------------------------------------------------------------------- /modules/falcon2p8s/g/var.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/g/var.go -------------------------------------------------------------------------------- /modules/falcon2p8s/http/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/http/common.go -------------------------------------------------------------------------------- /modules/falcon2p8s/http/cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/http/cron.go -------------------------------------------------------------------------------- /modules/falcon2p8s/http/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/http/helper.go -------------------------------------------------------------------------------- /modules/falcon2p8s/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/http/http.go -------------------------------------------------------------------------------- /modules/falcon2p8s/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/main.go -------------------------------------------------------------------------------- /modules/falcon2p8s/middlewares/scraping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/middlewares/scraping.go -------------------------------------------------------------------------------- /modules/falcon2p8s/rpc/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/rpc/model.go -------------------------------------------------------------------------------- /modules/falcon2p8s/rpc/receiver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/rpc/receiver.go -------------------------------------------------------------------------------- /modules/falcon2p8s/rpc/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/rpc/rpc.go -------------------------------------------------------------------------------- /modules/falcon2p8s/sm.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/sm.example.yaml -------------------------------------------------------------------------------- /modules/falcon2p8s/utils/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/utils/func.go -------------------------------------------------------------------------------- /modules/falcon2p8s/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/falcon2p8s/version.go -------------------------------------------------------------------------------- /modules/gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/gateway/README.md -------------------------------------------------------------------------------- /modules/graph/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/.gitignore -------------------------------------------------------------------------------- /modules/graph/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/LICENSE -------------------------------------------------------------------------------- /modules/graph/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/NOTICE -------------------------------------------------------------------------------- /modules/graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/README.md -------------------------------------------------------------------------------- /modules/graph/api/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/api/graph.go -------------------------------------------------------------------------------- /modules/graph/api/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/api/rpc.go -------------------------------------------------------------------------------- /modules/graph/cfg.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/cfg.example.json -------------------------------------------------------------------------------- /modules/graph/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/control -------------------------------------------------------------------------------- /modules/graph/cron/clean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/cron/clean.go -------------------------------------------------------------------------------- /modules/graph/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/doc/README.md -------------------------------------------------------------------------------- /modules/graph/g/cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/g/cfg.go -------------------------------------------------------------------------------- /modules/graph/g/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/g/db.go -------------------------------------------------------------------------------- /modules/graph/g/g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/g/g.go -------------------------------------------------------------------------------- /modules/graph/g/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/g/git.go -------------------------------------------------------------------------------- /modules/graph/g/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/g/logger.go -------------------------------------------------------------------------------- /modules/graph/g/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/g/utils.go -------------------------------------------------------------------------------- /modules/graph/g/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/g/utils_test.go -------------------------------------------------------------------------------- /modules/graph/http/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/http/common.go -------------------------------------------------------------------------------- /modules/graph/http/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/http/helper.go -------------------------------------------------------------------------------- /modules/graph/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/http/http.go -------------------------------------------------------------------------------- /modules/graph/http/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/http/index.go -------------------------------------------------------------------------------- /modules/graph/http/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/http/proc.go -------------------------------------------------------------------------------- /modules/graph/index/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/index/cache.go -------------------------------------------------------------------------------- /modules/graph/index/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/index/index.go -------------------------------------------------------------------------------- /modules/graph/index/index_update_all_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/index/index_update_all_task.go -------------------------------------------------------------------------------- /modules/graph/index/index_update_incr_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/index/index_update_incr_task.go -------------------------------------------------------------------------------- /modules/graph/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/main.go -------------------------------------------------------------------------------- /modules/graph/proc/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/proc/proc.go -------------------------------------------------------------------------------- /modules/graph/rrdtool/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/rrdtool/migrate.go -------------------------------------------------------------------------------- /modules/graph/rrdtool/rrdtool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/rrdtool/rrdtool.go -------------------------------------------------------------------------------- /modules/graph/rrdtool/sync_disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/rrdtool/sync_disk.go -------------------------------------------------------------------------------- /modules/graph/rrdtool/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/rrdtool/utils.go -------------------------------------------------------------------------------- /modules/graph/store/history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/store/history.go -------------------------------------------------------------------------------- /modules/graph/store/linkedlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/store/linkedlist.go -------------------------------------------------------------------------------- /modules/graph/store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/store/store.go -------------------------------------------------------------------------------- /modules/graph/test/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/test/debug -------------------------------------------------------------------------------- /modules/graph/test/graph.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/test/graph.list -------------------------------------------------------------------------------- /modules/graph/test/http.recv.history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/test/http.recv.history -------------------------------------------------------------------------------- /modules/graph/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/graph/version.go -------------------------------------------------------------------------------- /modules/hbs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/.gitignore -------------------------------------------------------------------------------- /modules/hbs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/LICENSE -------------------------------------------------------------------------------- /modules/hbs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/NOTICE -------------------------------------------------------------------------------- /modules/hbs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/README.md -------------------------------------------------------------------------------- /modules/hbs/cache/agents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/cache/agents.go -------------------------------------------------------------------------------- /modules/hbs/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/cache/cache.go -------------------------------------------------------------------------------- /modules/hbs/cache/expressions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/cache/expressions.go -------------------------------------------------------------------------------- /modules/hbs/cache/groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/cache/groups.go -------------------------------------------------------------------------------- /modules/hbs/cache/hosts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/cache/hosts.go -------------------------------------------------------------------------------- /modules/hbs/cache/plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/cache/plugins.go -------------------------------------------------------------------------------- /modules/hbs/cache/strategies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/cache/strategies.go -------------------------------------------------------------------------------- /modules/hbs/cache/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/cache/templates.go -------------------------------------------------------------------------------- /modules/hbs/cfg.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/cfg.example.json -------------------------------------------------------------------------------- /modules/hbs/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/control -------------------------------------------------------------------------------- /modules/hbs/db/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/db/agent.go -------------------------------------------------------------------------------- /modules/hbs/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/db/db.go -------------------------------------------------------------------------------- /modules/hbs/db/expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/db/expression.go -------------------------------------------------------------------------------- /modules/hbs/db/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/db/group.go -------------------------------------------------------------------------------- /modules/hbs/db/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/db/host.go -------------------------------------------------------------------------------- /modules/hbs/db/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/db/plugin.go -------------------------------------------------------------------------------- /modules/hbs/db/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/db/strategy.go -------------------------------------------------------------------------------- /modules/hbs/db/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/db/template.go -------------------------------------------------------------------------------- /modules/hbs/g/cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/g/cfg.go -------------------------------------------------------------------------------- /modules/hbs/g/g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/g/g.go -------------------------------------------------------------------------------- /modules/hbs/http/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/http/common.go -------------------------------------------------------------------------------- /modules/hbs/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/http/http.go -------------------------------------------------------------------------------- /modules/hbs/http/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/http/proc.go -------------------------------------------------------------------------------- /modules/hbs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/main.go -------------------------------------------------------------------------------- /modules/hbs/rpc/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/rpc/agent.go -------------------------------------------------------------------------------- /modules/hbs/rpc/hbs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/rpc/hbs.go -------------------------------------------------------------------------------- /modules/hbs/rpc/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/rpc/rpc.go -------------------------------------------------------------------------------- /modules/hbs/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/hbs/version.go -------------------------------------------------------------------------------- /modules/judge/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/.gitignore -------------------------------------------------------------------------------- /modules/judge/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/LICENSE -------------------------------------------------------------------------------- /modules/judge/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/NOTICE -------------------------------------------------------------------------------- /modules/judge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/README.md -------------------------------------------------------------------------------- /modules/judge/cfg.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/cfg.example.json -------------------------------------------------------------------------------- /modules/judge/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/control -------------------------------------------------------------------------------- /modules/judge/cron/cleaner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/cron/cleaner.go -------------------------------------------------------------------------------- /modules/judge/cron/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/cron/strategy.go -------------------------------------------------------------------------------- /modules/judge/g/cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/g/cfg.go -------------------------------------------------------------------------------- /modules/judge/g/g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/g/g.go -------------------------------------------------------------------------------- /modules/judge/g/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/g/redis.go -------------------------------------------------------------------------------- /modules/judge/g/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/g/rpc.go -------------------------------------------------------------------------------- /modules/judge/g/var.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/g/var.go -------------------------------------------------------------------------------- /modules/judge/http/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/http/common.go -------------------------------------------------------------------------------- /modules/judge/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/http/http.go -------------------------------------------------------------------------------- /modules/judge/http/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/http/info.go -------------------------------------------------------------------------------- /modules/judge/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/main.go -------------------------------------------------------------------------------- /modules/judge/rpc/receiver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/rpc/receiver.go -------------------------------------------------------------------------------- /modules/judge/rpc/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/rpc/rpc.go -------------------------------------------------------------------------------- /modules/judge/store/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/store/func.go -------------------------------------------------------------------------------- /modules/judge/store/history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/store/history.go -------------------------------------------------------------------------------- /modules/judge/store/judge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/store/judge.go -------------------------------------------------------------------------------- /modules/judge/store/linkedlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/store/linkedlist.go -------------------------------------------------------------------------------- /modules/judge/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/judge/version.go -------------------------------------------------------------------------------- /modules/nodata/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/.gitignore -------------------------------------------------------------------------------- /modules/nodata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/README.md -------------------------------------------------------------------------------- /modules/nodata/cfg.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/cfg.example.json -------------------------------------------------------------------------------- /modules/nodata/collector/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/collector/collector.go -------------------------------------------------------------------------------- /modules/nodata/collector/collector_cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/collector/collector_cron.go -------------------------------------------------------------------------------- /modules/nodata/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/config/config.go -------------------------------------------------------------------------------- /modules/nodata/config/config_cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/config/config_cron.go -------------------------------------------------------------------------------- /modules/nodata/config/service/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/config/service/db.go -------------------------------------------------------------------------------- /modules/nodata/config/service/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/config/service/host.go -------------------------------------------------------------------------------- /modules/nodata/config/service/mockcfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/config/service/mockcfg.go -------------------------------------------------------------------------------- /modules/nodata/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/control -------------------------------------------------------------------------------- /modules/nodata/g/cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/g/cfg.go -------------------------------------------------------------------------------- /modules/nodata/g/g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/g/g.go -------------------------------------------------------------------------------- /modules/nodata/g/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/g/git.go -------------------------------------------------------------------------------- /modules/nodata/g/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/g/proc.go -------------------------------------------------------------------------------- /modules/nodata/http/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/http/common.go -------------------------------------------------------------------------------- /modules/nodata/http/debug_http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/http/debug_http.go -------------------------------------------------------------------------------- /modules/nodata/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/http/http.go -------------------------------------------------------------------------------- /modules/nodata/http/proc_http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/http/proc_http.go -------------------------------------------------------------------------------- /modules/nodata/judge/judge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/judge/judge.go -------------------------------------------------------------------------------- /modules/nodata/judge/judge_cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/judge/judge_cron.go -------------------------------------------------------------------------------- /modules/nodata/judge/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/judge/status.go -------------------------------------------------------------------------------- /modules/nodata/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/main.go -------------------------------------------------------------------------------- /modules/nodata/scripts/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/scripts/debug -------------------------------------------------------------------------------- /modules/nodata/scripts/nodata-db-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/scripts/nodata-db-schema.sql -------------------------------------------------------------------------------- /modules/nodata/sender/sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/sender/sender.go -------------------------------------------------------------------------------- /modules/nodata/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/nodata/version.go -------------------------------------------------------------------------------- /modules/transfer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/.gitignore -------------------------------------------------------------------------------- /modules/transfer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/LICENSE -------------------------------------------------------------------------------- /modules/transfer/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/NOTICE -------------------------------------------------------------------------------- /modules/transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/README.md -------------------------------------------------------------------------------- /modules/transfer/cfg.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/cfg.example.json -------------------------------------------------------------------------------- /modules/transfer/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/control -------------------------------------------------------------------------------- /modules/transfer/g/cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/g/cfg.go -------------------------------------------------------------------------------- /modules/transfer/g/g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/g/g.go -------------------------------------------------------------------------------- /modules/transfer/g/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/g/git.go -------------------------------------------------------------------------------- /modules/transfer/http/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/http/api.go -------------------------------------------------------------------------------- /modules/transfer/http/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/http/common.go -------------------------------------------------------------------------------- /modules/transfer/http/debug_http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/http/debug_http.go -------------------------------------------------------------------------------- /modules/transfer/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/http/http.go -------------------------------------------------------------------------------- /modules/transfer/http/proc_http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/http/proc_http.go -------------------------------------------------------------------------------- /modules/transfer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/main.go -------------------------------------------------------------------------------- /modules/transfer/proc/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/proc/proc.go -------------------------------------------------------------------------------- /modules/transfer/receiver/receiver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/receiver/receiver.go -------------------------------------------------------------------------------- /modules/transfer/receiver/rpc/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/receiver/rpc/rpc.go -------------------------------------------------------------------------------- /modules/transfer/receiver/rpc/rpc_transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/receiver/rpc/rpc_transfer.go -------------------------------------------------------------------------------- /modules/transfer/receiver/socket/socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/receiver/socket/socket.go -------------------------------------------------------------------------------- /modules/transfer/receiver/socket/socket_telnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/receiver/socket/socket_telnet.go -------------------------------------------------------------------------------- /modules/transfer/scripts/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/scripts/info -------------------------------------------------------------------------------- /modules/transfer/scripts/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/scripts/info.py -------------------------------------------------------------------------------- /modules/transfer/scripts/last: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/scripts/last -------------------------------------------------------------------------------- /modules/transfer/scripts/last_raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/scripts/last_raw -------------------------------------------------------------------------------- /modules/transfer/scripts/query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/scripts/query -------------------------------------------------------------------------------- /modules/transfer/scripts/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/scripts/query.py -------------------------------------------------------------------------------- /modules/transfer/sender/conn_pools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/sender/conn_pools.go -------------------------------------------------------------------------------- /modules/transfer/sender/node_rings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/sender/node_rings.go -------------------------------------------------------------------------------- /modules/transfer/sender/send_queues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/sender/send_queues.go -------------------------------------------------------------------------------- /modules/transfer/sender/send_tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/sender/send_tasks.go -------------------------------------------------------------------------------- /modules/transfer/sender/sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/sender/sender.go -------------------------------------------------------------------------------- /modules/transfer/sender/sender_cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/sender/sender_cron.go -------------------------------------------------------------------------------- /modules/transfer/test/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/test/debug -------------------------------------------------------------------------------- /modules/transfer/test/rpcclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/test/rpcclient.py -------------------------------------------------------------------------------- /modules/transfer/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/modules/transfer/version.go -------------------------------------------------------------------------------- /scripts/mysql/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.pyc 3 | -------------------------------------------------------------------------------- /scripts/mysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/scripts/mysql/LICENSE -------------------------------------------------------------------------------- /scripts/mysql/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/scripts/mysql/NOTICE -------------------------------------------------------------------------------- /scripts/mysql/db_schema/1_uic-db-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/scripts/mysql/db_schema/1_uic-db-schema.sql -------------------------------------------------------------------------------- /scripts/mysql/db_schema/2_portal-db-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/scripts/mysql/db_schema/2_portal-db-schema.sql -------------------------------------------------------------------------------- /scripts/mysql/db_schema/3_dashboard-db-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/scripts/mysql/db_schema/3_dashboard-db-schema.sql -------------------------------------------------------------------------------- /scripts/mysql/db_schema/4_graph-db-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/scripts/mysql/db_schema/4_graph-db-schema.sql -------------------------------------------------------------------------------- /scripts/mysql/db_schema/5_alarms-db-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/scripts/mysql/db_schema/5_alarms-db-schema.sql -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/vagrant/Vagrantfile -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-falcon/falcon-plus/HEAD/version.go --------------------------------------------------------------------------------