├── LICENSE ├── README.md ├── api_server ├── api_server │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── settings.cpython-35.pyc │ │ ├── urls.cpython-35.pyc │ │ └── wsgi.cpython-35.pyc │ ├── settings.py │ ├── settings.pyc │ ├── urls.py │ ├── urls.pyc │ ├── wsgi.py │ └── wsgi.pyc ├── apis │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── admin.cpython-35.pyc │ │ ├── models.cpython-35.pyc │ │ ├── serializers.cpython-35.pyc │ │ ├── urls.cpython-35.pyc │ │ └── views.cpython-35.pyc │ ├── admin.py │ ├── admin.pyc │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0001_initial.pyc │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── models.py │ ├── models.pyc │ ├── serializers.py │ ├── serializers.pyc │ ├── tests.py │ ├── urls.py │ ├── urls.pyc │ ├── views.py │ └── views.pyc ├── db.sqlite3 ├── manage.py ├── readme.md └── requirements.txt ├── assets_report ├── files │ └── assets_report │ │ ├── Compaq │ │ ├── Hpacucli │ │ │ └── Bin │ │ │ │ ├── hpacucli.exe │ │ │ │ ├── hpacuscripting.exe │ │ │ │ └── infomgr.dll │ │ └── README.txt │ │ ├── MegaCli-8.07.10-1.noarch.rpm │ │ ├── MegaCli.exe │ │ ├── MegaCli64.exe │ │ ├── dmidecode.exe │ │ ├── hpacucli-9.40-12.0.x86_64.rpm │ │ └── hpssacli-2.0-23.0.x86_64.rpm ├── lib │ ├── facter │ │ ├── bond.rb │ │ ├── cpu_core_count.rb │ │ ├── disk.rb │ │ ├── nic_info.rb │ │ ├── raid_adaptor.rb │ │ ├── raid_adaptor_count.rb │ │ ├── raid_type.rb │ │ ├── ram.rb │ │ ├── setup_time.rb │ │ ├── sn.rb │ │ └── utils.rb │ └── puppet │ │ └── reports │ │ ├── assets_report.rb │ │ ├── auth.rb │ │ └── report_setting.yaml └── manifests │ └── init.pp └── docs └── server_puppet.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/README.md -------------------------------------------------------------------------------- /api_server/api_server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api_server/api_server/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/api_server/__init__.pyc -------------------------------------------------------------------------------- /api_server/api_server/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/api_server/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /api_server/api_server/__pycache__/settings.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/api_server/__pycache__/settings.cpython-35.pyc -------------------------------------------------------------------------------- /api_server/api_server/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/api_server/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /api_server/api_server/__pycache__/wsgi.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/api_server/__pycache__/wsgi.cpython-35.pyc -------------------------------------------------------------------------------- /api_server/api_server/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/api_server/settings.py -------------------------------------------------------------------------------- /api_server/api_server/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/api_server/settings.pyc -------------------------------------------------------------------------------- /api_server/api_server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/api_server/urls.py -------------------------------------------------------------------------------- /api_server/api_server/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/api_server/urls.pyc -------------------------------------------------------------------------------- /api_server/api_server/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/api_server/wsgi.py -------------------------------------------------------------------------------- /api_server/api_server/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/api_server/wsgi.pyc -------------------------------------------------------------------------------- /api_server/apis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api_server/apis/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/__init__.pyc -------------------------------------------------------------------------------- /api_server/apis/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /api_server/apis/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /api_server/apis/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /api_server/apis/__pycache__/serializers.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/__pycache__/serializers.cpython-35.pyc -------------------------------------------------------------------------------- /api_server/apis/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /api_server/apis/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /api_server/apis/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/admin.py -------------------------------------------------------------------------------- /api_server/apis/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/admin.pyc -------------------------------------------------------------------------------- /api_server/apis/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/apps.py -------------------------------------------------------------------------------- /api_server/apis/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/migrations/0001_initial.py -------------------------------------------------------------------------------- /api_server/apis/migrations/0001_initial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/migrations/0001_initial.pyc -------------------------------------------------------------------------------- /api_server/apis/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api_server/apis/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/migrations/__init__.pyc -------------------------------------------------------------------------------- /api_server/apis/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/models.py -------------------------------------------------------------------------------- /api_server/apis/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/models.pyc -------------------------------------------------------------------------------- /api_server/apis/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/serializers.py -------------------------------------------------------------------------------- /api_server/apis/serializers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/serializers.pyc -------------------------------------------------------------------------------- /api_server/apis/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/tests.py -------------------------------------------------------------------------------- /api_server/apis/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/urls.py -------------------------------------------------------------------------------- /api_server/apis/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/urls.pyc -------------------------------------------------------------------------------- /api_server/apis/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/views.py -------------------------------------------------------------------------------- /api_server/apis/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/apis/views.pyc -------------------------------------------------------------------------------- /api_server/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/db.sqlite3 -------------------------------------------------------------------------------- /api_server/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/manage.py -------------------------------------------------------------------------------- /api_server/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/readme.md -------------------------------------------------------------------------------- /api_server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/api_server/requirements.txt -------------------------------------------------------------------------------- /assets_report/files/assets_report/Compaq/Hpacucli/Bin/hpacucli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/files/assets_report/Compaq/Hpacucli/Bin/hpacucli.exe -------------------------------------------------------------------------------- /assets_report/files/assets_report/Compaq/Hpacucli/Bin/hpacuscripting.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/files/assets_report/Compaq/Hpacucli/Bin/hpacuscripting.exe -------------------------------------------------------------------------------- /assets_report/files/assets_report/Compaq/Hpacucli/Bin/infomgr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/files/assets_report/Compaq/Hpacucli/Bin/infomgr.dll -------------------------------------------------------------------------------- /assets_report/files/assets_report/Compaq/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/files/assets_report/Compaq/README.txt -------------------------------------------------------------------------------- /assets_report/files/assets_report/MegaCli-8.07.10-1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/files/assets_report/MegaCli-8.07.10-1.noarch.rpm -------------------------------------------------------------------------------- /assets_report/files/assets_report/MegaCli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/files/assets_report/MegaCli.exe -------------------------------------------------------------------------------- /assets_report/files/assets_report/MegaCli64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/files/assets_report/MegaCli64.exe -------------------------------------------------------------------------------- /assets_report/files/assets_report/dmidecode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/files/assets_report/dmidecode.exe -------------------------------------------------------------------------------- /assets_report/files/assets_report/hpacucli-9.40-12.0.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/files/assets_report/hpacucli-9.40-12.0.x86_64.rpm -------------------------------------------------------------------------------- /assets_report/files/assets_report/hpssacli-2.0-23.0.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/files/assets_report/hpssacli-2.0-23.0.x86_64.rpm -------------------------------------------------------------------------------- /assets_report/lib/facter/bond.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/lib/facter/bond.rb -------------------------------------------------------------------------------- /assets_report/lib/facter/cpu_core_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/lib/facter/cpu_core_count.rb -------------------------------------------------------------------------------- /assets_report/lib/facter/disk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/lib/facter/disk.rb -------------------------------------------------------------------------------- /assets_report/lib/facter/nic_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/lib/facter/nic_info.rb -------------------------------------------------------------------------------- /assets_report/lib/facter/raid_adaptor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/lib/facter/raid_adaptor.rb -------------------------------------------------------------------------------- /assets_report/lib/facter/raid_adaptor_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/lib/facter/raid_adaptor_count.rb -------------------------------------------------------------------------------- /assets_report/lib/facter/raid_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/lib/facter/raid_type.rb -------------------------------------------------------------------------------- /assets_report/lib/facter/ram.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/lib/facter/ram.rb -------------------------------------------------------------------------------- /assets_report/lib/facter/setup_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/lib/facter/setup_time.rb -------------------------------------------------------------------------------- /assets_report/lib/facter/sn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/lib/facter/sn.rb -------------------------------------------------------------------------------- /assets_report/lib/facter/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/lib/facter/utils.rb -------------------------------------------------------------------------------- /assets_report/lib/puppet/reports/assets_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/lib/puppet/reports/assets_report.rb -------------------------------------------------------------------------------- /assets_report/lib/puppet/reports/auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/lib/puppet/reports/auth.rb -------------------------------------------------------------------------------- /assets_report/lib/puppet/reports/report_setting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/lib/puppet/reports/report_setting.yaml -------------------------------------------------------------------------------- /assets_report/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/assets_report/manifests/init.pp -------------------------------------------------------------------------------- /docs/server_puppet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutohomeCorp/Assets_Report/HEAD/docs/server_puppet.png --------------------------------------------------------------------------------