├── alert ├── __init__.py ├── migrations │ └── __init__.py ├── tests.py ├── admin.py ├── apps.py ├── models.py └── urls.py ├── asset ├── __init__.py ├── migrations │ ├── __init__.py │ ├── 0020_delete_disquecluster.py │ ├── 0016_delete_gotemplaterevision.py │ ├── 0022_goservices_level.py │ ├── 0008_auto_20161220_1431.py │ ├── 0021_goservices_ports.py │ ├── 0012_auto_20170401_2134.py │ ├── 0019_auto_20180307_1149.py │ ├── 0002_auto_20160713_1448.py │ ├── 0017_asset_wan_ip.py │ ├── 0003_auto_20160713_1453.py │ ├── 0011_auto_20170313_1420.py │ ├── 0018_disquecluster.py │ ├── 0015_auto_20170905_1604.py │ ├── 0004_auto_20160713_1517.py │ ├── 0014_gotemplaterevision.py │ ├── 0005_gobuild.py │ ├── 0010_userprofile.py │ ├── 0002_auto_20180613_1342.py │ ├── 0006_gostatus.py │ ├── 0013_auto_20170704_1645.py │ ├── 0007_crontab_svn.py │ └── 0009_gotemplate.py ├── tests.py ├── apps.py ├── urls.py └── admin.py ├── cache ├── __init__.py ├── migrations │ ├── __init__.py │ ├── 0002_auto_20160715_1046.py │ └── 0001_initial.py ├── tests.py ├── apps.py ├── admin.py ├── models.py ├── urls.py └── views.py ├── cmdb ├── __init__.py ├── migrations │ └── __init__.py ├── templatetags │ ├── __init__.py │ └── cmdbtags.py ├── tests.py ├── admin.py ├── models.py ├── apps.py ├── http.py └── views.py ├── disque ├── __init__.py ├── migrations │ ├── __init__.py │ └── 0001_initial.py ├── tests.py ├── apps.py ├── admin.py ├── models.py └── urls.py ├── kettle ├── __init__.py ├── migrations │ └── __init__.py ├── tests.py ├── admin.py ├── models.py ├── apps.py ├── urls.py ├── views.py └── utils.py ├── logs ├── __init__.py ├── migrations │ ├── __init__.py │ ├── 0002_publishlog.py │ └── 0001_initial.py ├── tests.py ├── apps.py ├── admin.py ├── views.py ├── models.py └── urls.py ├── users ├── __init__.py ├── migrations │ └── __init__.py ├── tests.py ├── admin.py ├── models.py ├── apps.py └── urls.py ├── web ├── __init__.py ├── migrations │ ├── __init__.py │ └── 0001_initial.py ├── admin.py ├── tests.py ├── apps.py ├── models.py └── views.py ├── www ├── __init__.py ├── migrations │ ├── __init__.py │ ├── 0002_weburl_ip.py │ └── 0003_groupname.py ├── tests.py ├── apps.py ├── admin.py ├── urls.py └── models.py ├── command_job ├── __init__.py ├── migrations │ └── __init__.py ├── tests.py ├── admin.py ├── apps.py ├── models.py └── urls.py ├── consul_kv ├── __init__.py ├── migrations │ └── __init__.py ├── admin.py ├── tests.py ├── apps.py ├── models.py └── urls.py ├── salt_api ├── __init__.py ├── migrations │ └── __init__.py ├── admin.py ├── tests.py ├── views.py ├── models.py ├── apps.py └── api.py ├── subversion ├── __init__.py ├── tests.py ├── apps.py ├── admin.py ├── models.py └── urls.py ├── winservices ├── __init__.py ├── migrations │ ├── __init__.py │ ├── 0002_auto_20160718_1358.py │ └── 0001_initial.py ├── tests.py ├── apps.py ├── admin.py ├── models.py ├── urls.py └── views.py ├── workflow ├── __init__.py ├── migrations │ ├── __init__.py │ ├── 0003_webinfo_type.py │ └── 0002_webinfo.py ├── tests.py ├── apps.py ├── admin.py └── urls.py ├── config_center ├── __init__.py ├── migrations │ ├── __init__.py │ ├── 0002_auto_20170729_1758.sql │ ├── 0003_auto_20170729_1804.sql │ ├── 0002_auto_20170729_1758.py │ ├── 0003_auto_20170729_1804.py │ ├── 0001_initial.sql │ └── 0001_initial.py ├── tests.py ├── apps.py ├── admin.py ├── urls.py ├── models.py └── views.py ├── project_crontab ├── __init__.py ├── migrations │ ├── __init__.py │ ├── 0002_auto_20180614_1813.py │ └── 0003_auto_20180614_1816.py ├── tests.py ├── admin.py ├── apps.py ├── urls.py ├── utils.py ├── models.py └── cron.py ├── .DS_Store ├── static ├── .DS_Store ├── img │ ├── .DS_Store │ └── logo.png ├── screen │ ├── 111.png │ ├── 112.png │ ├── 113.png │ ├── 114.png │ ├── 115.png │ ├── 116.png │ ├── 117.png │ ├── 118.png │ ├── 119.png │ ├── 120.png │ ├── 121.png │ └── .DS_Store ├── alert │ └── chosen-sprite.png ├── css │ ├── images │ │ ├── controls.png │ │ ├── loading.gif │ │ └── page_loading.gif │ ├── patterns │ │ ├── shattered.png │ │ ├── otis_redding.png │ │ ├── triangular.png │ │ ├── header-profile.png │ │ ├── congruent_pentagon.png │ │ ├── header-profile-skin-1.png │ │ ├── header-profile-skin-2.png │ │ └── header-profile-skin-3.png │ ├── plugins │ │ ├── iCheck │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ └── custom.css │ │ ├── images │ │ │ ├── sort.png │ │ │ ├── sort_asc.png │ │ │ ├── sort_desc.png │ │ │ ├── spritemap.png │ │ │ ├── spritemap@2x.png │ │ │ ├── sprite-skin-flat.png │ │ │ ├── sprite-skin-nice.png │ │ │ ├── sprite-skin-flat2.png │ │ │ ├── sprite-skin-simple.png │ │ │ └── bootstrap-colorpicker │ │ │ │ ├── hue.png │ │ │ │ ├── alpha.png │ │ │ │ ├── saturation.png │ │ │ │ ├── hue-horizontal.png │ │ │ │ └── alpha-horizontal.png │ │ └── chosen │ │ │ ├── chosen-sprite.png │ │ │ └── chosen-sprite@2x.png │ └── vaildator │ │ └── images │ │ ├── loading.gif │ │ ├── validator_simple.png │ │ └── validator_default.png ├── files │ └── excels │ │ └── asset.xlsx ├── js │ ├── layer │ │ └── skin │ │ │ └── default │ │ │ ├── icon.png │ │ │ ├── icon-ext.png │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ ├── validator │ │ └── images │ │ │ ├── loading.gif │ │ │ ├── validator_default.png │ │ │ └── validator_simple.png │ ├── custom │ │ ├── bar.js │ │ └── project.js │ ├── demo │ │ └── peity-demo.js │ ├── highcharts │ │ ├── modules │ │ │ ├── no-data-to-display.js │ │ │ ├── funnel.js │ │ │ └── solid-gauge.js │ │ └── themes │ │ │ ├── grid-light.js │ │ │ ├── skies.js │ │ │ ├── sand-signika.js │ │ │ └── grid.js │ └── wssh.js ├── font-awesome │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── less │ │ ├── fixed-width.less │ │ ├── bordered-pulled.less │ │ ├── larger.less │ │ ├── core.less │ │ ├── list.less │ │ ├── font-awesome.less │ │ ├── stacked.less │ │ ├── rotated-flipped.less │ │ ├── spinning.less │ │ ├── path.less │ │ └── mixins.less │ └── scss │ │ ├── _fixed-width.scss │ │ ├── _bordered-pulled.scss │ │ ├── _larger.scss │ │ ├── _core.scss │ │ ├── _list.scss │ │ ├── font-awesome.scss │ │ ├── _stacked.scss │ │ ├── _spinning.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ └── _mixins.scss └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── mico ├── __init__.py ├── wsgi.py ├── celery.py └── urls.py ├── .gitattributes ├── templates ├── footer.html ├── getdata.html ├── head_script.html ├── nav_cat_bar.html ├── link_css.html ├── nav_bar_header.html ├── base.html ├── wwwGroup.html ├── 500.html ├── 404.html ├── restartMautic.html ├── getText.html ├── foot_script.html ├── commandIndex.html ├── kettleIndex.html ├── error.html ├── login.html ├── nav_li_profile.html ├── test.html ├── wwwList.html ├── winservices.html ├── goConf.html ├── go_template.html ├── gostatus.html └── cronjob_list.html ├── uwsgi_socket.xml ├── manage.py ├── wsgi.py ├── cmdb_api.conf ├── django.conf ├── cmdb_api_supervisor.conf ├── django_celery.conf ├── install.sh ├── cmdb_cronjob_api_supervisor.conf ├── cronjob_api.py ├── requirements.txt ├── README.md └── .gitignore /alert/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /asset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /disque/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kettle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /command_job/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /consul_kv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /salt_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /subversion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /winservices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alert/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /asset/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmdb/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config_center/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_crontab/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmdb/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /consul_kv/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /disque/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kettle/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /salt_api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /command_job/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config_center/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_crontab/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /winservices/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/.DS_Store -------------------------------------------------------------------------------- /static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/.DS_Store -------------------------------------------------------------------------------- /alert/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /asset/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /cache/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /cmdb/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /kettle/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /logs/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /static/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/img/.DS_Store -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /static/screen/111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/screen/111.png -------------------------------------------------------------------------------- /static/screen/112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/screen/112.png -------------------------------------------------------------------------------- /static/screen/113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/screen/113.png -------------------------------------------------------------------------------- /static/screen/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/screen/114.png -------------------------------------------------------------------------------- /static/screen/115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/screen/115.png -------------------------------------------------------------------------------- /static/screen/116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/screen/116.png -------------------------------------------------------------------------------- /static/screen/117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/screen/117.png -------------------------------------------------------------------------------- /static/screen/118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/screen/118.png -------------------------------------------------------------------------------- /static/screen/119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/screen/119.png -------------------------------------------------------------------------------- /static/screen/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/screen/120.png -------------------------------------------------------------------------------- /static/screen/121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/screen/121.png -------------------------------------------------------------------------------- /users/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /web/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /web/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /www/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /alert/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /command_job/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /consul_kv/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /consul_kv/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /kettle/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /salt_api/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /salt_api/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /salt_api/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /static/screen/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/screen/.DS_Store -------------------------------------------------------------------------------- /subversion/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /users/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /winservices/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /workflow/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /command_job/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /config_center/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /project_crontab/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /mico/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from .celery import app as celery_app -------------------------------------------------------------------------------- /project_crontab/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /cmdb/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /static/alert/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/alert/chosen-sprite.png -------------------------------------------------------------------------------- /static/css/images/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/images/controls.png -------------------------------------------------------------------------------- /static/css/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/images/loading.gif -------------------------------------------------------------------------------- /static/files/excels/asset.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/files/excels/asset.xlsx -------------------------------------------------------------------------------- /static/css/patterns/shattered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/patterns/shattered.png -------------------------------------------------------------------------------- /alert/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AlertConfig(AppConfig): 5 | name = 'alert' 6 | -------------------------------------------------------------------------------- /static/css/images/page_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/images/page_loading.gif -------------------------------------------------------------------------------- /static/css/patterns/otis_redding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/patterns/otis_redding.png -------------------------------------------------------------------------------- /static/css/patterns/triangular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/patterns/triangular.png -------------------------------------------------------------------------------- /static/css/plugins/iCheck/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/iCheck/green.png -------------------------------------------------------------------------------- /static/css/plugins/images/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/images/sort.png -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=python 2 | *.css linguist-language=python 3 | *.html linguist-language=python 4 | -------------------------------------------------------------------------------- /static/css/patterns/header-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/patterns/header-profile.png -------------------------------------------------------------------------------- /static/css/plugins/iCheck/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/iCheck/green@2x.png -------------------------------------------------------------------------------- /static/css/plugins/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/images/sort_asc.png -------------------------------------------------------------------------------- /static/js/layer/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/js/layer/skin/default/icon.png -------------------------------------------------------------------------------- /static/js/validator/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/js/validator/images/loading.gif -------------------------------------------------------------------------------- /command_job/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CommandConfig(AppConfig): 5 | name = 'command' 6 | -------------------------------------------------------------------------------- /consul_kv/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CommandConfig(AppConfig): 5 | name = 'consul_kv' 6 | -------------------------------------------------------------------------------- /static/css/plugins/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/images/sort_desc.png -------------------------------------------------------------------------------- /static/css/plugins/images/spritemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/images/spritemap.png -------------------------------------------------------------------------------- /static/css/vaildator/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/vaildator/images/loading.gif -------------------------------------------------------------------------------- /static/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/js/layer/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/js/layer/skin/default/icon-ext.png -------------------------------------------------------------------------------- /cmdb/models.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.db import models 4 | 5 | # Create your models here. 6 | -------------------------------------------------------------------------------- /static/css/patterns/congruent_pentagon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/patterns/congruent_pentagon.png -------------------------------------------------------------------------------- /static/css/plugins/chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/chosen/chosen-sprite.png -------------------------------------------------------------------------------- /static/css/plugins/images/spritemap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/images/spritemap@2x.png -------------------------------------------------------------------------------- /static/js/layer/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/js/layer/skin/default/loading-0.gif -------------------------------------------------------------------------------- /static/js/layer/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/js/layer/skin/default/loading-1.gif -------------------------------------------------------------------------------- /static/js/layer/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/js/layer/skin/default/loading-2.gif -------------------------------------------------------------------------------- /users/models.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.db import models 4 | 5 | # Create your models here. 6 | -------------------------------------------------------------------------------- /consul_kv/models.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.db import models 4 | 5 | # Create your models here. 6 | -------------------------------------------------------------------------------- /kettle/models.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.db import models 4 | 5 | # Create your models here. 6 | -------------------------------------------------------------------------------- /salt_api/models.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.db import models 4 | 5 | # Create your models here. 6 | -------------------------------------------------------------------------------- /static/css/patterns/header-profile-skin-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/patterns/header-profile-skin-1.png -------------------------------------------------------------------------------- /static/css/patterns/header-profile-skin-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/patterns/header-profile-skin-2.png -------------------------------------------------------------------------------- /static/css/patterns/header-profile-skin-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/patterns/header-profile-skin-3.png -------------------------------------------------------------------------------- /static/css/plugins/chosen/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/chosen/chosen-sprite@2x.png -------------------------------------------------------------------------------- /static/css/plugins/images/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/images/sprite-skin-flat.png -------------------------------------------------------------------------------- /static/css/plugins/images/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/images/sprite-skin-nice.png -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /command_job/models.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.db import models 4 | 5 | # Create your models here. 6 | -------------------------------------------------------------------------------- /config_center/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ConfigCenterConfig(AppConfig): 5 | name = 'config_center' 6 | -------------------------------------------------------------------------------- /static/css/plugins/images/sprite-skin-flat2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/images/sprite-skin-flat2.png -------------------------------------------------------------------------------- /static/css/plugins/images/sprite-skin-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/images/sprite-skin-simple.png -------------------------------------------------------------------------------- /static/css/vaildator/images/validator_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/vaildator/images/validator_simple.png -------------------------------------------------------------------------------- /static/js/validator/images/validator_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/js/validator/images/validator_default.png -------------------------------------------------------------------------------- /static/js/validator/images/validator_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/js/validator/images/validator_simple.png -------------------------------------------------------------------------------- /static/css/vaildator/images/validator_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/vaildator/images/validator_default.png -------------------------------------------------------------------------------- /static/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/css/plugins/images/bootstrap-colorpicker/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/images/bootstrap-colorpicker/hue.png -------------------------------------------------------------------------------- /static/css/plugins/images/bootstrap-colorpicker/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/images/bootstrap-colorpicker/alpha.png -------------------------------------------------------------------------------- /web/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class WebConfig(AppConfig): 7 | name = 'web' 8 | -------------------------------------------------------------------------------- /www/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class WwwConfig(AppConfig): 7 | name = 'www' 8 | -------------------------------------------------------------------------------- /alert/models.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.db import models 5 | 6 | 7 | # Create your models here. 8 | -------------------------------------------------------------------------------- /asset/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class AssetConfig(AppConfig): 7 | name = 'asset' 8 | -------------------------------------------------------------------------------- /cache/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class CacheConfig(AppConfig): 7 | name = 'cache' 8 | -------------------------------------------------------------------------------- /cmdb/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class CmdbConfig(AppConfig): 7 | name = 'cmdb' 8 | -------------------------------------------------------------------------------- /disque/tests.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.test import TestCase 5 | 6 | # Create your tests here. 7 | -------------------------------------------------------------------------------- /logs/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class LogsConfig(AppConfig): 7 | name = 'logs' 8 | -------------------------------------------------------------------------------- /users/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class UsersConfig(AppConfig): 7 | name = 'users' 8 | -------------------------------------------------------------------------------- /kettle/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class KettleConfig(AppConfig): 7 | name = 'kettle' 8 | -------------------------------------------------------------------------------- /static/css/plugins/images/bootstrap-colorpicker/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/images/bootstrap-colorpicker/saturation.png -------------------------------------------------------------------------------- /salt_api/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class SaltApiConfig(AppConfig): 7 | name = 'salt_api' 8 | -------------------------------------------------------------------------------- /static/css/plugins/images/bootstrap-colorpicker/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/images/bootstrap-colorpicker/hue-horizontal.png -------------------------------------------------------------------------------- /workflow/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class WorkflowConfig(AppConfig): 7 | name = 'workflow' 8 | -------------------------------------------------------------------------------- /static/css/plugins/images/bootstrap-colorpicker/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezbuy/cmdb/HEAD/static/css/plugins/images/bootstrap-colorpicker/alpha-horizontal.png -------------------------------------------------------------------------------- /subversion/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class SubversionConfig(AppConfig): 7 | name = 'subversion' 8 | -------------------------------------------------------------------------------- /static/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /static/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /winservices/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class WinservicesConfig(AppConfig): 7 | name = 'winservices' 8 | -------------------------------------------------------------------------------- /project_crontab/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class CrontabConfig(AppConfig): 7 | name = 'project_crontab' 8 | -------------------------------------------------------------------------------- /disque/apps.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.apps import AppConfig 5 | 6 | 7 | class DisqueConfig(AppConfig): 8 | name = 'disque' 9 | -------------------------------------------------------------------------------- /config_center/migrations/0002_auto_20170729_1758.sql: -------------------------------------------------------------------------------- 1 | BEGIN; 2 | -- 3 | -- Alter field category on resources 4 | -- 5 | ALTER TABLE `config_center_resources` MODIFY `category` integer NOT NULL; 6 | 7 | COMMIT; 8 | -------------------------------------------------------------------------------- /config_center/migrations/0003_auto_20170729_1804.sql: -------------------------------------------------------------------------------- 1 | BEGIN; 2 | -- 3 | -- Alter field category on resources 4 | -- 5 | ALTER TABLE `config_center_resources` MODIFY `category` varchar(16) NOT NULL; 6 | 7 | COMMIT; 8 | -------------------------------------------------------------------------------- /templates/footer.html: -------------------------------------------------------------------------------- 1 |
9 | -------------------------------------------------------------------------------- /uwsgi_socket.xml: -------------------------------------------------------------------------------- 1 |12 |
7 | IIS发布帮助文档 8 |
9 | 10 | 11 |
8 | 仅支持CMDB中现有的Go服务,参数可自定义,比如:spike service elastic;
9 | 系统会从SVN拉取最新的 gotemplate 和 可执行文件,实际执行的命令会补全,比如:/srv/spike/spike service elastic -c /srv/gotemplate/spike/conf.ctmpl;
10 | 另外,命令中不允许包含 ; && || 等字符。
11 |

Copyright ezbuy Organization © 2016
36 || State | 39 |Description | 40 |Name | 41 |Logfile | 42 |
|---|---|---|---|
| {{ info.statename }} | 48 |{{ info.description }} | 49 |{{ info.name }} | 50 |{{ info.logfile }} | 51 |