├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── deployment ├── README.md ├── grafana │ ├── build │ │ └── docker │ │ │ ├── Dockerfile │ │ │ └── publish-to-docker-hub.sh │ ├── dashboards │ │ ├── aws-elasticsearch.json │ │ ├── aws-elb.json │ │ ├── aws-firehose.json │ │ ├── aws-kinesis.json │ │ ├── cassandra.json │ │ ├── firehose-writer.json │ │ ├── graph-builder.json │ │ ├── haystack-attributor.json │ │ ├── http-collector.json │ │ ├── influxDb.json │ │ ├── kafka.json │ │ ├── kinesis-span-collector.json │ │ ├── node-finder.json │ │ ├── pitchfork.json │ │ ├── secret-detector.json │ │ ├── span-transformer.json │ │ ├── timeseries-aggregator.json │ │ ├── trace-indexer.json │ │ └── trace-reader.json │ ├── datasources │ │ ├── cloudwatch.json │ │ ├── graphite.json │ │ └── internal.json │ └── grafana_run.sh └── terraform │ ├── apply-compose.sh │ ├── cluster │ ├── aws │ │ ├── apps │ │ │ ├── backend.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── provider.tf │ │ │ └── variables.tf │ │ └── infrastructure │ │ │ ├── backend.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── provider.tf │ │ │ └── variables.tf │ └── local │ │ ├── apps │ │ ├── backend.tf │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ │ └── infrastructure │ │ ├── backend.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── fakespans-downloader.sh │ ├── install-third-party-softwares.sh │ ├── modules │ ├── haystack-apps │ │ └── kubernetes │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── pitchfork │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── templates │ │ │ │ └── deployment.yaml │ │ │ └── variables.tf │ │ │ └── variables.tf │ ├── haystack-datastores │ │ ├── aws │ │ │ ├── cassandra │ │ │ │ ├── README.md │ │ │ │ ├── data │ │ │ │ │ └── node_user_data_sh.tpl │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── security_groups │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── outputs.tf │ │ │ │ │ └── variables.tf │ │ │ │ └── variables.tf │ │ │ ├── elasticsearch │ │ │ │ ├── README.md │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── security_groups │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── outputs.tf │ │ │ │ │ └── variables.tf │ │ │ │ ├── templates │ │ │ │ │ └── haystack-index-store-es-policy │ │ │ │ └── variables.tf │ │ │ ├── kafka │ │ │ │ ├── README.md │ │ │ │ ├── data │ │ │ │ │ ├── kafka_broker_user_data_sh.tpl │ │ │ │ │ └── zookeeper_user_data_sh.tpl │ │ │ │ ├── iam_role │ │ │ │ │ └── variables.tf │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── security_groups │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── outputs.tf │ │ │ │ │ └── variables.tf │ │ │ │ ├── variables.tf │ │ │ │ └── vpce │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── outputs.tf │ │ │ │ │ └── variables.tf │ │ │ ├── kinesis-stream │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── pipes_firehose_stream │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── templates │ │ │ │ │ └── pipes-firehose-role-policy.tpl │ │ │ │ └── variables.tf │ │ │ └── variables.tf │ │ └── kubernetes │ │ │ ├── cassandra │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── templates │ │ │ │ └── deployment-yaml.tpl │ │ │ └── variables.tf │ │ │ ├── elasticsearch │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── templates │ │ │ │ └── deployment-yaml.tpl │ │ │ └── variables.tf │ │ │ ├── kafka │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── templates │ │ │ │ └── deployment-yaml.tpl │ │ │ ├── variables.tf │ │ │ └── zookeeper │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── templates │ │ │ │ └── deployment-yaml.tpl │ │ │ │ └── variables.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ ├── k8s-addons │ │ ├── aa_apps_resource_limits │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── templates │ │ │ │ └── aa_apps_limits_yaml.tpl │ │ │ └── variables.tf │ │ ├── alerting │ │ │ ├── kubewatch │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── templates │ │ │ │ │ └── kubewatch-deployment-yaml.tpl │ │ │ │ └── variables.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ ├── logging │ │ │ ├── curator │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── templates │ │ │ │ │ └── curator-cron-job-yaml.tpl │ │ │ │ └── variables.tf │ │ │ ├── elasticsearch │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── templates │ │ │ │ │ ├── curator-cron-job-yaml.tpl │ │ │ │ │ └── es-logging-yaml.tpl │ │ │ │ └── variables.tf │ │ │ ├── fluentd │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── templates │ │ │ │ │ └── fluentd-es-yaml.tpl │ │ │ │ └── variables.tf │ │ │ ├── kibana │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── templates │ │ │ │ │ └── kibana-yaml.tpl │ │ │ │ └── variables.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── splunkforwarder │ │ │ │ ├── main.tf │ │ │ │ ├── templates │ │ │ │ │ └── splunkforwarder-yaml.tpl │ │ │ │ └── variables.tf │ │ │ └── variables.tf │ │ ├── main.tf │ │ ├── monitoring │ │ │ ├── dashboard │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── templates │ │ │ │ │ └── dashboard-yaml.tpl │ │ │ │ └── variables.tf │ │ │ ├── grafana │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── templates │ │ │ │ │ └── grafana-yaml.tpl │ │ │ │ └── variables.tf │ │ │ ├── grafana_dashboards │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── templates │ │ │ │ │ └── grafana-dashboards.yaml │ │ │ │ └── variables.tf │ │ │ ├── heapster │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── templates │ │ │ │ │ └── heapster-yaml.tpl │ │ │ │ └── variables.tf │ │ │ ├── influxdb │ │ │ │ ├── main.tf │ │ │ │ ├── manifests │ │ │ │ │ └── influx_db_retention.yaml │ │ │ │ ├── outputs.tf │ │ │ │ ├── templates │ │ │ │ │ └── influxdb-yaml.tpl │ │ │ │ └── variables.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ ├── outputs.tf │ │ ├── traefik │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── templates │ │ │ │ └── traefik-yaml.tpl │ │ │ └── variables.tf │ │ └── variables.tf │ └── k8s-cluster │ │ └── aws │ │ ├── acm-certificate │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ │ ├── asg │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── templates │ │ │ ├── k8s_master_user-data.tpl │ │ │ └── k8s_nodes_user-data.tpl │ │ └── variables.tf │ │ ├── elbs │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ │ ├── iam-roles │ │ ├── main.tf │ │ ├── manifests │ │ │ ├── masters_iam-role.json │ │ │ └── nodes_iam-role.json │ │ ├── outputs.tf │ │ ├── templates │ │ │ ├── masters_iam-role-policy.tpl │ │ │ └── nodes_iam-role-policy.tpl │ │ └── variables.tf │ │ ├── kops │ │ ├── main.tf │ │ ├── manifests │ │ │ └── aws_key_pair_kubernetes.haystack-k8s.com-public_key │ │ ├── outputs.tf │ │ ├── templates │ │ │ └── cluster.tpl │ │ └── variables.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── route53 │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── scripts │ │ │ └── clusterValidator.sh │ │ └── variables.tf │ │ ├── security-groups │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ │ └── variables.tf │ └── packer │ ├── README.md │ ├── build-images.sh │ ├── cassandra │ ├── cassandra-ami.json │ └── resources │ │ ├── cassandra-env.sh │ │ ├── cassandra.repo │ │ ├── cassandra.yaml │ │ ├── disable-thp.sh │ │ ├── jmxtrans-agent.xml │ │ ├── limits.conf │ │ └── sysctl.conf │ ├── install-third-party-softwares.sh │ ├── kafka │ ├── kafka-ami.json │ └── resources │ │ ├── jmxtrans-agent-kafkaServer.xml │ │ ├── jmxtrans-agent-zookeeper.xml │ │ ├── kafka-run-class.sh │ │ ├── kafka-service-script.sh │ │ ├── limits.conf │ │ ├── log4j.properties │ │ ├── server.properties │ │ ├── sysctl.conf │ │ └── zookeeper-service-script.sh │ └── variables.json ├── docs ├── about │ ├── architecture.md │ ├── blobs.md │ ├── clients.md │ ├── getting_started.md │ └── introduction.md ├── contributing.md ├── deployment │ ├── deployment.md │ ├── deployment_clients.md │ └── deployment_sub_systems.md ├── subsystems │ ├── subsystems.md │ ├── subsystems_anomaly_detection.md │ ├── subsystems_attribution.md │ ├── subsystems_collectors.md │ ├── subsystems_console.md │ ├── subsystems_dependencies.md │ ├── subsystems_pipes.md │ ├── subsystems_traces.md │ └── subsystems_trends.md └── ui │ ├── ui.md │ ├── ui_alerts.md │ ├── ui_service_graph.md │ ├── ui_service_insights.md │ ├── ui_traces.md │ ├── ui_trends.md │ └── ui_universal_search.md ├── docsite ├── .node-version ├── .nvmrc ├── adopters.js ├── core │ └── Footer.js ├── generate_docsite.sh ├── i18n │ └── en.json ├── package-lock.json ├── package.json ├── pages │ └── en │ │ ├── help.js │ │ ├── index.js │ │ └── users.js ├── sidebars.json ├── siteConfig.js └── static │ ├── css │ └── custom.css │ ├── fonts │ ├── OFL.txt │ └── TitilliumWeb-Regular.ttf │ └── img │ ├── ExpediaInc_small.png │ ├── Haystack Components.graffle │ ├── Haystack-Spans.png │ ├── Haystack_Components.png │ ├── alert_details.png │ ├── alerts.png │ ├── align-left.svg │ ├── bell.svg │ ├── demo.gif │ ├── dependency_graph.png │ ├── favicon │ ├── favicon.ico │ └── favicon.png │ ├── haystack-architecture.png │ ├── haystack-architecture.svg │ ├── haystack-architecture.xml │ ├── haystack_pipes.graffle │ ├── haystack_pipes.png │ ├── haystack_trends.png │ ├── latency_cost.png │ ├── logo │ ├── expedia_logo.png │ ├── expedia_logo_inverted.png │ ├── logo.png │ ├── logo_with_title_transparent.png │ └── logo_with_title_white.png │ ├── network_graph.png │ ├── opentracing.png │ ├── service-graph-architecture.png │ ├── service-graph-architecture.svg │ ├── service-graph-architecture.xml │ ├── service_graph.gif │ ├── service_graph_detailed.png │ ├── service_insights.png │ ├── service_insights_detailed.png │ ├── service_performance.png │ ├── stats-up.svg │ ├── trace-subsystem-architecture.png │ ├── trace_latency.png │ ├── trace_related.png │ ├── trace_timeline.png │ ├── trace_trends.png │ ├── traces-architecture.png │ ├── traces-architecture.svg │ ├── traces-architecture.xml │ ├── traces.png │ ├── trend_details.png │ ├── trends-architecture.png │ ├── trends-architecture.svg │ ├── trends-architecture.xml │ ├── trends.png │ ├── universal_search.png │ ├── universal_search_default.png │ ├── universal_search_detailed.png │ ├── universal_search_nested.png │ ├── users │ ├── cheaptickets.jpg │ ├── egencia.png │ ├── expedia.png │ ├── hcom.png │ ├── homeaway.png │ ├── hotwire.png │ ├── orbitz.jpeg │ └── vrbo.png │ └── vector.svg ├── images └── Haystack-AA.png └── renovate.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/README.md -------------------------------------------------------------------------------- /deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/README.md -------------------------------------------------------------------------------- /deployment/grafana/build/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/build/docker/Dockerfile -------------------------------------------------------------------------------- /deployment/grafana/build/docker/publish-to-docker-hub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/build/docker/publish-to-docker-hub.sh -------------------------------------------------------------------------------- /deployment/grafana/dashboards/aws-elasticsearch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/aws-elasticsearch.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/aws-elb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/aws-elb.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/aws-firehose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/aws-firehose.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/aws-kinesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/aws-kinesis.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/cassandra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/cassandra.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/firehose-writer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/firehose-writer.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/graph-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/graph-builder.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/haystack-attributor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/haystack-attributor.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/http-collector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/http-collector.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/influxDb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/influxDb.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/kafka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/kafka.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/kinesis-span-collector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/kinesis-span-collector.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/node-finder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/node-finder.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/pitchfork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/pitchfork.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/secret-detector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/secret-detector.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/span-transformer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/span-transformer.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/timeseries-aggregator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/timeseries-aggregator.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/trace-indexer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/trace-indexer.json -------------------------------------------------------------------------------- /deployment/grafana/dashboards/trace-reader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/dashboards/trace-reader.json -------------------------------------------------------------------------------- /deployment/grafana/datasources/cloudwatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/datasources/cloudwatch.json -------------------------------------------------------------------------------- /deployment/grafana/datasources/graphite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/datasources/graphite.json -------------------------------------------------------------------------------- /deployment/grafana/datasources/internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/datasources/internal.json -------------------------------------------------------------------------------- /deployment/grafana/grafana_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/grafana/grafana_run.sh -------------------------------------------------------------------------------- /deployment/terraform/apply-compose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/apply-compose.sh -------------------------------------------------------------------------------- /deployment/terraform/cluster/aws/apps/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/aws/apps/backend.tf -------------------------------------------------------------------------------- /deployment/terraform/cluster/aws/apps/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/aws/apps/main.tf -------------------------------------------------------------------------------- /deployment/terraform/cluster/aws/apps/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/cluster/aws/apps/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/aws/apps/provider.tf -------------------------------------------------------------------------------- /deployment/terraform/cluster/aws/apps/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/aws/apps/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/cluster/aws/infrastructure/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/aws/infrastructure/backend.tf -------------------------------------------------------------------------------- /deployment/terraform/cluster/aws/infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/aws/infrastructure/main.tf -------------------------------------------------------------------------------- /deployment/terraform/cluster/aws/infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/aws/infrastructure/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/cluster/aws/infrastructure/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/aws/infrastructure/provider.tf -------------------------------------------------------------------------------- /deployment/terraform/cluster/aws/infrastructure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/aws/infrastructure/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/cluster/local/apps/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/local/apps/backend.tf -------------------------------------------------------------------------------- /deployment/terraform/cluster/local/apps/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/local/apps/main.tf -------------------------------------------------------------------------------- /deployment/terraform/cluster/local/apps/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/local/apps/provider.tf -------------------------------------------------------------------------------- /deployment/terraform/cluster/local/apps/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/local/apps/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/cluster/local/infrastructure/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/local/infrastructure/backend.tf -------------------------------------------------------------------------------- /deployment/terraform/cluster/local/infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/local/infrastructure/main.tf -------------------------------------------------------------------------------- /deployment/terraform/cluster/local/infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/local/infrastructure/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/cluster/local/infrastructure/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/local/infrastructure/provider.tf -------------------------------------------------------------------------------- /deployment/terraform/cluster/local/infrastructure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/cluster/local/infrastructure/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/fakespans-downloader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/fakespans-downloader.sh -------------------------------------------------------------------------------- /deployment/terraform/install-third-party-softwares.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/install-third-party-softwares.sh -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-apps/kubernetes/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-apps/kubernetes/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-apps/kubernetes/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-apps/kubernetes/pitchfork/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-apps/kubernetes/pitchfork/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-apps/kubernetes/pitchfork/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-apps/kubernetes/pitchfork/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-apps/kubernetes/pitchfork/templates/deployment.yaml -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-apps/kubernetes/pitchfork/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-apps/kubernetes/pitchfork/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-apps/kubernetes/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-apps/kubernetes/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/cassandra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/cassandra/README.md -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/cassandra/data/node_user_data_sh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/cassandra/data/node_user_data_sh.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/cassandra/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/cassandra/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/cassandra/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/cassandra/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/cassandra/security_groups/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/cassandra/security_groups/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/cassandra/security_groups/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/cassandra/security_groups/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/cassandra/security_groups/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/cassandra/security_groups/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/cassandra/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/cassandra/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/elasticsearch/README.md -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/elasticsearch/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/elasticsearch/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/elasticsearch/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/elasticsearch/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/elasticsearch/security_groups/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/elasticsearch/security_groups/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/elasticsearch/security_groups/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/elasticsearch/security_groups/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/elasticsearch/security_groups/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/elasticsearch/security_groups/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/elasticsearch/templates/haystack-index-store-es-policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/elasticsearch/templates/haystack-index-store-es-policy -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/elasticsearch/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/elasticsearch/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/kafka/README.md -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/kafka/data/kafka_broker_user_data_sh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/kafka/data/kafka_broker_user_data_sh.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/kafka/data/zookeeper_user_data_sh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/kafka/data/zookeeper_user_data_sh.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/kafka/iam_role/variables.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/kafka/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/kafka/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/kafka/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/kafka/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/kafka/security_groups/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/kafka/security_groups/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/kafka/security_groups/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/kafka/security_groups/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/kafka/security_groups/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/kafka/security_groups/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/kafka/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/kafka/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/kafka/vpce/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/kafka/vpce/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/kafka/vpce/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/kafka/vpce/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/kafka/vpce/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/kinesis-stream/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/kinesis-stream/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/kinesis-stream/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/kinesis-stream/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/kinesis-stream/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/kinesis-stream/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/pipes_firehose_stream/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/pipes_firehose_stream/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/pipes_firehose_stream/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/pipes_firehose_stream/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/pipes_firehose_stream/templates/pipes-firehose-role-policy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/pipes_firehose_stream/templates/pipes-firehose-role-policy.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/pipes_firehose_stream/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/pipes_firehose_stream/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/aws/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/aws/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/cassandra/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/cassandra/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/cassandra/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/cassandra/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/cassandra/templates/deployment-yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/cassandra/templates/deployment-yaml.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/cassandra/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/cassandra/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/elasticsearch/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/elasticsearch/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/elasticsearch/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/elasticsearch/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/elasticsearch/templates/deployment-yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/elasticsearch/templates/deployment-yaml.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/elasticsearch/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/elasticsearch/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/kafka/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/kafka/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/kafka/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/kafka/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/kafka/templates/deployment-yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/kafka/templates/deployment-yaml.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/kafka/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/kafka/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/kafka/zookeeper/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/kafka/zookeeper/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/kafka/zookeeper/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/kafka/zookeeper/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/kafka/zookeeper/templates/deployment-yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/kafka/zookeeper/templates/deployment-yaml.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/kafka/zookeeper/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/kafka/zookeeper/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/haystack-datastores/kubernetes/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/haystack-datastores/kubernetes/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/aa_apps_resource_limits/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/aa_apps_resource_limits/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/aa_apps_resource_limits/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/aa_apps_resource_limits/templates/aa_apps_limits_yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/aa_apps_resource_limits/templates/aa_apps_limits_yaml.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/aa_apps_resource_limits/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/aa_apps_resource_limits/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/alerting/kubewatch/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/alerting/kubewatch/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/alerting/kubewatch/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/alerting/kubewatch/templates/kubewatch-deployment-yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/alerting/kubewatch/templates/kubewatch-deployment-yaml.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/alerting/kubewatch/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/alerting/kubewatch/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/alerting/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/alerting/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/alerting/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/alerting/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/alerting/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/curator/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/curator/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/curator/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/curator/templates/curator-cron-job-yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/curator/templates/curator-cron-job-yaml.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/curator/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/curator/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/elasticsearch/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/elasticsearch/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/elasticsearch/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/elasticsearch/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/elasticsearch/templates/curator-cron-job-yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/elasticsearch/templates/curator-cron-job-yaml.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/elasticsearch/templates/es-logging-yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/elasticsearch/templates/es-logging-yaml.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/elasticsearch/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/elasticsearch/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/fluentd/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/fluentd/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/fluentd/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/fluentd/templates/fluentd-es-yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/fluentd/templates/fluentd-es-yaml.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/fluentd/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/fluentd/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/kibana/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/kibana/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/kibana/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/kibana/templates/kibana-yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/kibana/templates/kibana-yaml.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/kibana/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/kibana/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/splunkforwarder/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/splunkforwarder/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/splunkforwarder/templates/splunkforwarder-yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/splunkforwarder/templates/splunkforwarder-yaml.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/splunkforwarder/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/splunkforwarder/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/logging/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/logging/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/dashboard/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/dashboard/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/dashboard/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/dashboard/templates/dashboard-yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/dashboard/templates/dashboard-yaml.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/dashboard/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/dashboard/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/grafana/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/grafana/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/grafana/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/grafana/templates/grafana-yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/grafana/templates/grafana-yaml.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/grafana/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/grafana/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/grafana_dashboards/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/grafana_dashboards/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/grafana_dashboards/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/grafana_dashboards/templates/grafana-dashboards.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/grafana_dashboards/templates/grafana-dashboards.yaml -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/grafana_dashboards/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/grafana_dashboards/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/heapster/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/heapster/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/heapster/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/heapster/templates/heapster-yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/heapster/templates/heapster-yaml.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/heapster/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/heapster/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/influxdb/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/influxdb/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/influxdb/manifests/influx_db_retention.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/influxdb/manifests/influx_db_retention.yaml -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/influxdb/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/influxdb/templates/influxdb-yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/influxdb/templates/influxdb-yaml.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/influxdb/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/influxdb/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/monitoring/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/monitoring/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/traefik/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/traefik/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/traefik/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/traefik/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/traefik/templates/traefik-yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/traefik/templates/traefik-yaml.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/traefik/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/traefik/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-addons/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-addons/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/acm-certificate/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/acm-certificate/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/acm-certificate/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/acm-certificate/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/acm-certificate/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/acm-certificate/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/asg/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/asg/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/asg/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/asg/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/asg/templates/k8s_master_user-data.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/asg/templates/k8s_master_user-data.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/asg/templates/k8s_nodes_user-data.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/asg/templates/k8s_nodes_user-data.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/asg/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/asg/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/elbs/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/elbs/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/elbs/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/elbs/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/elbs/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/elbs/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/iam-roles/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/iam-roles/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/iam-roles/manifests/masters_iam-role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/iam-roles/manifests/masters_iam-role.json -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/iam-roles/manifests/nodes_iam-role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/iam-roles/manifests/nodes_iam-role.json -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/iam-roles/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/iam-roles/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/iam-roles/templates/masters_iam-role-policy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/iam-roles/templates/masters_iam-role-policy.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/iam-roles/templates/nodes_iam-role-policy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/iam-roles/templates/nodes_iam-role-policy.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/iam-roles/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/iam-roles/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/kops/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/kops/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/kops/manifests/aws_key_pair_kubernetes.haystack-k8s.com-public_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/kops/manifests/aws_key_pair_kubernetes.haystack-k8s.com-public_key -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/kops/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/kops/templates/cluster.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/kops/templates/cluster.tpl -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/kops/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/kops/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/route53/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/route53/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/route53/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/route53/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/route53/scripts/clusterValidator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/route53/scripts/clusterValidator.sh -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/route53/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/route53/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/security-groups/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/security-groups/main.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/security-groups/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/security-groups/outputs.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/security-groups/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/security-groups/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/modules/k8s-cluster/aws/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/modules/k8s-cluster/aws/variables.tf -------------------------------------------------------------------------------- /deployment/terraform/packer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/README.md -------------------------------------------------------------------------------- /deployment/terraform/packer/build-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/build-images.sh -------------------------------------------------------------------------------- /deployment/terraform/packer/cassandra/cassandra-ami.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/cassandra/cassandra-ami.json -------------------------------------------------------------------------------- /deployment/terraform/packer/cassandra/resources/cassandra-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/cassandra/resources/cassandra-env.sh -------------------------------------------------------------------------------- /deployment/terraform/packer/cassandra/resources/cassandra.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/cassandra/resources/cassandra.repo -------------------------------------------------------------------------------- /deployment/terraform/packer/cassandra/resources/cassandra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/cassandra/resources/cassandra.yaml -------------------------------------------------------------------------------- /deployment/terraform/packer/cassandra/resources/disable-thp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/cassandra/resources/disable-thp.sh -------------------------------------------------------------------------------- /deployment/terraform/packer/cassandra/resources/jmxtrans-agent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/cassandra/resources/jmxtrans-agent.xml -------------------------------------------------------------------------------- /deployment/terraform/packer/cassandra/resources/limits.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/cassandra/resources/limits.conf -------------------------------------------------------------------------------- /deployment/terraform/packer/cassandra/resources/sysctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/cassandra/resources/sysctl.conf -------------------------------------------------------------------------------- /deployment/terraform/packer/install-third-party-softwares.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/install-third-party-softwares.sh -------------------------------------------------------------------------------- /deployment/terraform/packer/kafka/kafka-ami.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/kafka/kafka-ami.json -------------------------------------------------------------------------------- /deployment/terraform/packer/kafka/resources/jmxtrans-agent-kafkaServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/kafka/resources/jmxtrans-agent-kafkaServer.xml -------------------------------------------------------------------------------- /deployment/terraform/packer/kafka/resources/jmxtrans-agent-zookeeper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/kafka/resources/jmxtrans-agent-zookeeper.xml -------------------------------------------------------------------------------- /deployment/terraform/packer/kafka/resources/kafka-run-class.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/kafka/resources/kafka-run-class.sh -------------------------------------------------------------------------------- /deployment/terraform/packer/kafka/resources/kafka-service-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/kafka/resources/kafka-service-script.sh -------------------------------------------------------------------------------- /deployment/terraform/packer/kafka/resources/limits.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/kafka/resources/limits.conf -------------------------------------------------------------------------------- /deployment/terraform/packer/kafka/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/kafka/resources/log4j.properties -------------------------------------------------------------------------------- /deployment/terraform/packer/kafka/resources/server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/kafka/resources/server.properties -------------------------------------------------------------------------------- /deployment/terraform/packer/kafka/resources/sysctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/kafka/resources/sysctl.conf -------------------------------------------------------------------------------- /deployment/terraform/packer/kafka/resources/zookeeper-service-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/kafka/resources/zookeeper-service-script.sh -------------------------------------------------------------------------------- /deployment/terraform/packer/variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/deployment/terraform/packer/variables.json -------------------------------------------------------------------------------- /docs/about/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/about/architecture.md -------------------------------------------------------------------------------- /docs/about/blobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/about/blobs.md -------------------------------------------------------------------------------- /docs/about/clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/about/clients.md -------------------------------------------------------------------------------- /docs/about/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/about/getting_started.md -------------------------------------------------------------------------------- /docs/about/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/about/introduction.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/deployment/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/deployment/deployment.md -------------------------------------------------------------------------------- /docs/deployment/deployment_clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/deployment/deployment_clients.md -------------------------------------------------------------------------------- /docs/deployment/deployment_sub_systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/deployment/deployment_sub_systems.md -------------------------------------------------------------------------------- /docs/subsystems/subsystems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/subsystems/subsystems.md -------------------------------------------------------------------------------- /docs/subsystems/subsystems_anomaly_detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/subsystems/subsystems_anomaly_detection.md -------------------------------------------------------------------------------- /docs/subsystems/subsystems_attribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/subsystems/subsystems_attribution.md -------------------------------------------------------------------------------- /docs/subsystems/subsystems_collectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/subsystems/subsystems_collectors.md -------------------------------------------------------------------------------- /docs/subsystems/subsystems_console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/subsystems/subsystems_console.md -------------------------------------------------------------------------------- /docs/subsystems/subsystems_dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/subsystems/subsystems_dependencies.md -------------------------------------------------------------------------------- /docs/subsystems/subsystems_pipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/subsystems/subsystems_pipes.md -------------------------------------------------------------------------------- /docs/subsystems/subsystems_traces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/subsystems/subsystems_traces.md -------------------------------------------------------------------------------- /docs/subsystems/subsystems_trends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/subsystems/subsystems_trends.md -------------------------------------------------------------------------------- /docs/ui/ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/ui/ui.md -------------------------------------------------------------------------------- /docs/ui/ui_alerts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/ui/ui_alerts.md -------------------------------------------------------------------------------- /docs/ui/ui_service_graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/ui/ui_service_graph.md -------------------------------------------------------------------------------- /docs/ui/ui_service_insights.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/ui/ui_service_insights.md -------------------------------------------------------------------------------- /docs/ui/ui_traces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/ui/ui_traces.md -------------------------------------------------------------------------------- /docs/ui/ui_trends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/ui/ui_trends.md -------------------------------------------------------------------------------- /docs/ui/ui_universal_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docs/ui/ui_universal_search.md -------------------------------------------------------------------------------- /docsite/.node-version: -------------------------------------------------------------------------------- 1 | 12.13.1 2 | -------------------------------------------------------------------------------- /docsite/.nvmrc: -------------------------------------------------------------------------------- 1 | .node-version -------------------------------------------------------------------------------- /docsite/adopters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/adopters.js -------------------------------------------------------------------------------- /docsite/core/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/core/Footer.js -------------------------------------------------------------------------------- /docsite/generate_docsite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/generate_docsite.sh -------------------------------------------------------------------------------- /docsite/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/i18n/en.json -------------------------------------------------------------------------------- /docsite/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/package-lock.json -------------------------------------------------------------------------------- /docsite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/package.json -------------------------------------------------------------------------------- /docsite/pages/en/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/pages/en/help.js -------------------------------------------------------------------------------- /docsite/pages/en/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/pages/en/index.js -------------------------------------------------------------------------------- /docsite/pages/en/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/pages/en/users.js -------------------------------------------------------------------------------- /docsite/sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/sidebars.json -------------------------------------------------------------------------------- /docsite/siteConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/siteConfig.js -------------------------------------------------------------------------------- /docsite/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/css/custom.css -------------------------------------------------------------------------------- /docsite/static/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/fonts/OFL.txt -------------------------------------------------------------------------------- /docsite/static/fonts/TitilliumWeb-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/fonts/TitilliumWeb-Regular.ttf -------------------------------------------------------------------------------- /docsite/static/img/ExpediaInc_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/ExpediaInc_small.png -------------------------------------------------------------------------------- /docsite/static/img/Haystack Components.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/Haystack Components.graffle -------------------------------------------------------------------------------- /docsite/static/img/Haystack-Spans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/Haystack-Spans.png -------------------------------------------------------------------------------- /docsite/static/img/Haystack_Components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/Haystack_Components.png -------------------------------------------------------------------------------- /docsite/static/img/alert_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/alert_details.png -------------------------------------------------------------------------------- /docsite/static/img/alerts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/alerts.png -------------------------------------------------------------------------------- /docsite/static/img/align-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/align-left.svg -------------------------------------------------------------------------------- /docsite/static/img/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/bell.svg -------------------------------------------------------------------------------- /docsite/static/img/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/demo.gif -------------------------------------------------------------------------------- /docsite/static/img/dependency_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/dependency_graph.png -------------------------------------------------------------------------------- /docsite/static/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/favicon/favicon.ico -------------------------------------------------------------------------------- /docsite/static/img/favicon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/favicon/favicon.png -------------------------------------------------------------------------------- /docsite/static/img/haystack-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/haystack-architecture.png -------------------------------------------------------------------------------- /docsite/static/img/haystack-architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/haystack-architecture.svg -------------------------------------------------------------------------------- /docsite/static/img/haystack-architecture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/haystack-architecture.xml -------------------------------------------------------------------------------- /docsite/static/img/haystack_pipes.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/haystack_pipes.graffle -------------------------------------------------------------------------------- /docsite/static/img/haystack_pipes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/haystack_pipes.png -------------------------------------------------------------------------------- /docsite/static/img/haystack_trends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/haystack_trends.png -------------------------------------------------------------------------------- /docsite/static/img/latency_cost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/latency_cost.png -------------------------------------------------------------------------------- /docsite/static/img/logo/expedia_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/logo/expedia_logo.png -------------------------------------------------------------------------------- /docsite/static/img/logo/expedia_logo_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/logo/expedia_logo_inverted.png -------------------------------------------------------------------------------- /docsite/static/img/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/logo/logo.png -------------------------------------------------------------------------------- /docsite/static/img/logo/logo_with_title_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/logo/logo_with_title_transparent.png -------------------------------------------------------------------------------- /docsite/static/img/logo/logo_with_title_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/logo/logo_with_title_white.png -------------------------------------------------------------------------------- /docsite/static/img/network_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/network_graph.png -------------------------------------------------------------------------------- /docsite/static/img/opentracing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/opentracing.png -------------------------------------------------------------------------------- /docsite/static/img/service-graph-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/service-graph-architecture.png -------------------------------------------------------------------------------- /docsite/static/img/service-graph-architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/service-graph-architecture.svg -------------------------------------------------------------------------------- /docsite/static/img/service-graph-architecture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/service-graph-architecture.xml -------------------------------------------------------------------------------- /docsite/static/img/service_graph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/service_graph.gif -------------------------------------------------------------------------------- /docsite/static/img/service_graph_detailed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/service_graph_detailed.png -------------------------------------------------------------------------------- /docsite/static/img/service_insights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/service_insights.png -------------------------------------------------------------------------------- /docsite/static/img/service_insights_detailed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/service_insights_detailed.png -------------------------------------------------------------------------------- /docsite/static/img/service_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/service_performance.png -------------------------------------------------------------------------------- /docsite/static/img/stats-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/stats-up.svg -------------------------------------------------------------------------------- /docsite/static/img/trace-subsystem-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/trace-subsystem-architecture.png -------------------------------------------------------------------------------- /docsite/static/img/trace_latency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/trace_latency.png -------------------------------------------------------------------------------- /docsite/static/img/trace_related.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/trace_related.png -------------------------------------------------------------------------------- /docsite/static/img/trace_timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/trace_timeline.png -------------------------------------------------------------------------------- /docsite/static/img/trace_trends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/trace_trends.png -------------------------------------------------------------------------------- /docsite/static/img/traces-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/traces-architecture.png -------------------------------------------------------------------------------- /docsite/static/img/traces-architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/traces-architecture.svg -------------------------------------------------------------------------------- /docsite/static/img/traces-architecture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/traces-architecture.xml -------------------------------------------------------------------------------- /docsite/static/img/traces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/traces.png -------------------------------------------------------------------------------- /docsite/static/img/trend_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/trend_details.png -------------------------------------------------------------------------------- /docsite/static/img/trends-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/trends-architecture.png -------------------------------------------------------------------------------- /docsite/static/img/trends-architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/trends-architecture.svg -------------------------------------------------------------------------------- /docsite/static/img/trends-architecture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/trends-architecture.xml -------------------------------------------------------------------------------- /docsite/static/img/trends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/trends.png -------------------------------------------------------------------------------- /docsite/static/img/universal_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/universal_search.png -------------------------------------------------------------------------------- /docsite/static/img/universal_search_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/universal_search_default.png -------------------------------------------------------------------------------- /docsite/static/img/universal_search_detailed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/universal_search_detailed.png -------------------------------------------------------------------------------- /docsite/static/img/universal_search_nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/universal_search_nested.png -------------------------------------------------------------------------------- /docsite/static/img/users/cheaptickets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/users/cheaptickets.jpg -------------------------------------------------------------------------------- /docsite/static/img/users/egencia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/users/egencia.png -------------------------------------------------------------------------------- /docsite/static/img/users/expedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/users/expedia.png -------------------------------------------------------------------------------- /docsite/static/img/users/hcom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/users/hcom.png -------------------------------------------------------------------------------- /docsite/static/img/users/homeaway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/users/homeaway.png -------------------------------------------------------------------------------- /docsite/static/img/users/hotwire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/users/hotwire.png -------------------------------------------------------------------------------- /docsite/static/img/users/orbitz.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/users/orbitz.jpeg -------------------------------------------------------------------------------- /docsite/static/img/users/vrbo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/users/vrbo.png -------------------------------------------------------------------------------- /docsite/static/img/vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/docsite/static/img/vector.svg -------------------------------------------------------------------------------- /images/Haystack-AA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/images/Haystack-AA.png -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExpediaDotCom/haystack/HEAD/renovate.json --------------------------------------------------------------------------------