├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── Vagrantfile ├── app.yml ├── install ├── templates ├── apache │ └── graphite.conf ├── collectd │ └── collectd.conf ├── grafana │ └── provisioning │ │ ├── dashboards │ │ ├── GraphiteCarbonMetrics_obfuscurity.json │ │ └── local.yaml │ │ └── datasources │ │ └── datasources.yaml ├── graphite │ ├── conf │ │ ├── carbon.conf │ │ ├── graphTemplates.conf │ │ ├── graphite.wsgi │ │ ├── storage-aggregation.conf │ │ └── storage-schemas.conf │ └── webapp │ │ ├── initial_data.json │ │ └── local_settings.py ├── scripts │ ├── carbon-cache │ └── graphite-build-index ├── statsite │ └── statsite.conf └── systemd │ ├── carbon-cache@.service │ ├── graphite-build-index.service │ ├── graphite-build-index.timer │ └── statsite.service ├── uninstall └── upgrade /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | .idea 3 | *.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/app.yml -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/install -------------------------------------------------------------------------------- /templates/apache/graphite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/apache/graphite.conf -------------------------------------------------------------------------------- /templates/collectd/collectd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/collectd/collectd.conf -------------------------------------------------------------------------------- /templates/grafana/provisioning/dashboards/GraphiteCarbonMetrics_obfuscurity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/grafana/provisioning/dashboards/GraphiteCarbonMetrics_obfuscurity.json -------------------------------------------------------------------------------- /templates/grafana/provisioning/dashboards/local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/grafana/provisioning/dashboards/local.yaml -------------------------------------------------------------------------------- /templates/grafana/provisioning/datasources/datasources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/grafana/provisioning/datasources/datasources.yaml -------------------------------------------------------------------------------- /templates/graphite/conf/carbon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/graphite/conf/carbon.conf -------------------------------------------------------------------------------- /templates/graphite/conf/graphTemplates.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/graphite/conf/graphTemplates.conf -------------------------------------------------------------------------------- /templates/graphite/conf/graphite.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/graphite/conf/graphite.wsgi -------------------------------------------------------------------------------- /templates/graphite/conf/storage-aggregation.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/graphite/conf/storage-aggregation.conf -------------------------------------------------------------------------------- /templates/graphite/conf/storage-schemas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/graphite/conf/storage-schemas.conf -------------------------------------------------------------------------------- /templates/graphite/webapp/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/graphite/webapp/initial_data.json -------------------------------------------------------------------------------- /templates/graphite/webapp/local_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/graphite/webapp/local_settings.py -------------------------------------------------------------------------------- /templates/scripts/carbon-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/scripts/carbon-cache -------------------------------------------------------------------------------- /templates/scripts/graphite-build-index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/scripts/graphite-build-index -------------------------------------------------------------------------------- /templates/statsite/statsite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/statsite/statsite.conf -------------------------------------------------------------------------------- /templates/systemd/carbon-cache@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/systemd/carbon-cache@.service -------------------------------------------------------------------------------- /templates/systemd/graphite-build-index.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/systemd/graphite-build-index.service -------------------------------------------------------------------------------- /templates/systemd/graphite-build-index.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/systemd/graphite-build-index.timer -------------------------------------------------------------------------------- /templates/systemd/statsite.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/templates/systemd/statsite.service -------------------------------------------------------------------------------- /uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/uninstall -------------------------------------------------------------------------------- /upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscurity/synthesize/HEAD/upgrade --------------------------------------------------------------------------------