├── old-c-stats-converter
├── .gradle
│ ├── 6.8.1
│ │ ├── gc.properties
│ │ ├── fileChanges
│ │ │ └── last-build.bin
│ │ ├── fileHashes
│ │ │ ├── fileHashes.bin
│ │ │ ├── fileHashes.lock
│ │ │ └── resourceHashesCache.bin
│ │ └── executionHistory
│ │ │ ├── executionHistory.bin
│ │ │ └── executionHistory.lock
│ ├── vcs-1
│ │ └── gc.properties
│ ├── configuration-cache
│ │ └── gc.properties
│ ├── buildOutputCleanup
│ │ ├── cache.properties
│ │ ├── outputFiles.bin
│ │ └── buildOutputCleanup.lock
│ └── checksums
│ │ ├── checksums.lock
│ │ └── sha1-checksums.bin
├── settings.gradle
├── runConverter.sh
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── gradle.properties
└── src
│ └── main
│ └── resources
│ └── logback.xml
├── montecristo
├── src
│ ├── test
│ │ ├── resources
│ │ │ ├── metrics
│ │ │ │ ├── cloud
│ │ │ │ │ ├── aws-az.txt
│ │ │ │ │ └── aws-instance-type.txt
│ │ │ │ ├── tm1.db
│ │ │ │ └── os
│ │ │ │ │ └── meminfo
│ │ │ ├── helpers
│ │ │ │ ├── rowCacheEnabled.yaml
│ │ │ │ ├── rowCacheDisabled.yaml
│ │ │ │ └── generic.yaml
│ │ │ └── fileLoaders
│ │ │ │ └── parsers
│ │ │ │ ├── nodetool
│ │ │ │ ├── gossip
│ │ │ │ │ ├── gossipinfo_empty.txt
│ │ │ │ │ ├── gossip_info_dse_alternative.txt
│ │ │ │ │ └── gossipinfo_oss.txt
│ │ │ │ ├── info
│ │ │ │ │ ├── nodetool_info_empty.txt
│ │ │ │ │ └── nodetool_info_complete.txt
│ │ │ │ ├── describeCluster.txt
│ │ │ │ └── status
│ │ │ │ │ ├── nodetool_status.txt
│ │ │ │ │ ├── single_dc_16_vnodes_all_UN.txt
│ │ │ │ │ ├── single_dc_256_vnodes_all_UN.txt
│ │ │ │ │ ├── single_dc_64_vnodes_all_UN.txt
│ │ │ │ │ └── multi_dc_mixed_vnodes_all_UN.txt
│ │ │ │ ├── schema
│ │ │ │ ├── root-schema
│ │ │ │ ├── 10.0.0.1
│ │ │ │ │ ├── schema1
│ │ │ │ │ └── schema2
│ │ │ │ ├── 10.0.0.2
│ │ │ │ │ ├── schema1
│ │ │ │ │ └── schema2
│ │ │ │ ├── 10.0.0.3
│ │ │ │ │ ├── schema1
│ │ │ │ │ └── schema2
│ │ │ │ ├── schema-with-udf.cql
│ │ │ │ ├── schema_dse_types.txt
│ │ │ │ ├── schema-counters.cql
│ │ │ │ ├── schema.cql
│ │ │ │ ├── schema-with-thrift.cql
│ │ │ │ ├── schema-with-solr.cql
│ │ │ │ ├── schema-with-sai.cql
│ │ │ │ ├── schema-with2i.cql
│ │ │ │ └── schema-with-sasi.cql
│ │ │ │ ├── sstable-statistics
│ │ │ │ └── keyspace1
│ │ │ │ │ ├── table1
│ │ │ │ │ ├── bb-1-bti-Statistics.db
│ │ │ │ │ └── md-1-big-Statistics.db
│ │ │ │ │ └── table2-uuidABCD
│ │ │ │ │ └── bb-1-bti-Statistics.db
│ │ │ │ ├── executionProfile
│ │ │ │ └── executionProfile.yaml
│ │ │ │ └── os
│ │ │ │ ├── blockdev-report.txt
│ │ │ │ ├── lscpu.txt
│ │ │ │ └── meminfo
│ │ └── kotlin
│ │ │ └── com
│ │ │ └── datastax
│ │ │ └── montecristo
│ │ │ ├── model
│ │ │ ├── InstanceMetaTest.kt
│ │ │ ├── nodetool
│ │ │ │ └── DescribeClusterTest.kt
│ │ │ └── sqlLiteMetricServerTest.kt
│ │ │ ├── utils
│ │ │ ├── HumanCountTest.kt
│ │ │ └── MarkdownTableTest.kt
│ │ │ ├── fileLoaders
│ │ │ └── parsers
│ │ │ │ └── application
│ │ │ │ └── DseYamlParserTest.kt
│ │ │ └── logs
│ │ │ └── logMessageParsers
│ │ │ └── GossipLogPausesWarningsMessageTest.kt
│ └── main
│ │ ├── resources
│ │ ├── hugo
│ │ │ ├── themes
│ │ │ │ └── hugo-xmin-master
│ │ │ │ │ ├── layouts
│ │ │ │ │ ├── partials
│ │ │ │ │ │ ├── foot_custom.html
│ │ │ │ │ │ ├── head_custom.html
│ │ │ │ │ │ ├── prev_next_links.html
│ │ │ │ │ │ ├── footer.html
│ │ │ │ │ │ └── header.html
│ │ │ │ │ ├── 404.html
│ │ │ │ │ ├── shortcodes
│ │ │ │ │ │ └── svg.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── _default
│ │ │ │ │ │ ├── terms.html
│ │ │ │ │ │ ├── list.html
│ │ │ │ │ │ └── single.html
│ │ │ │ │ ├── archetypes
│ │ │ │ │ └── default.md
│ │ │ │ │ ├── static
│ │ │ │ │ └── fonts
│ │ │ │ │ │ ├── Kanit-Regular.ttf
│ │ │ │ │ │ ├── Roboto-Regular.ttf
│ │ │ │ │ │ ├── RobotoMono-Regular.ttf
│ │ │ │ │ │ └── fonts.css
│ │ │ │ │ ├── hugo-xmin.Rproj
│ │ │ │ │ ├── theme.toml
│ │ │ │ │ ├── LICENSE.md
│ │ │ │ │ └── README.md
│ │ │ ├── layouts
│ │ │ │ └── shortcodes
│ │ │ │ │ ├── pb.html
│ │ │ │ │ └── size.html
│ │ │ └── _index.md
│ │ ├── templates
│ │ │ ├── configuration
│ │ │ │ ├── configuration_snitch.md
│ │ │ │ ├── configuration_memtable_storage.md
│ │ │ │ ├── configuration_custom_settings.md
│ │ │ │ ├── configuration_trickle_fsync.md
│ │ │ │ ├── configuration_paths.md
│ │ │ │ ├── configuration_java_heap_settings.md
│ │ │ │ ├── recommendations
│ │ │ │ │ ├── version_supported.md
│ │ │ │ │ └── version_unsupported.md
│ │ │ │ ├── configuration_configuration_mismatches.md
│ │ │ │ ├── configuration_seeds.md
│ │ │ │ ├── configuration_logging.md
│ │ │ │ ├── configuration_streaming.md
│ │ │ │ ├── configuration_address_bindings.md
│ │ │ │ ├── configuration_compaction.md
│ │ │ │ ├── configuration_node_communications.md
│ │ │ │ ├── configuration_thread_pools.md
│ │ │ │ ├── configuration_disk_policy.md
│ │ │ │ └── configuration_ring.md
│ │ │ ├── infrastructure
│ │ │ │ ├── infrastructure_disk_space.md
│ │ │ │ ├── infrastructure_path.md
│ │ │ │ ├── infrastructure_java_version.md
│ │ │ │ ├── infrastructure_swap.md
│ │ │ │ ├── infrastructure_osconfig_overview.md
│ │ │ │ ├── infrastructure_storage.md
│ │ │ │ ├── infrastructure_ntp.md
│ │ │ │ └── infrastructure_overview.md
│ │ │ ├── operations
│ │ │ │ ├── operations_tombstones_per_read.md
│ │ │ │ ├── operations_aborted_hints.md
│ │ │ │ ├── operations_table_partition_balance.md
│ │ │ │ ├── operations_log_analysis_durations.md
│ │ │ │ ├── operations_dropped_hints.md
│ │ │ │ ├── operations_jvm_gc_stats.md
│ │ │ │ ├── operations_blocked_flush_writers.md
│ │ │ │ ├── operations_hinted_handoff_tasks.md
│ │ │ │ ├── operations_gossip_pause.md
│ │ │ │ ├── operations_commit_log_sync.md
│ │ │ │ ├── operations_batches.md
│ │ │ │ ├── operations_dropped_messages.md
│ │ │ │ └── operations_prepared_statements_discarded.md
│ │ │ ├── datamodel
│ │ │ │ ├── datamodel_tablemetadata_top_tables.md
│ │ │ │ ├── datamodel_gc_grace_seconds.md
│ │ │ │ ├── datamodel_sstable_count.md
│ │ │ │ ├── datamodel_replication.md
│ │ │ │ ├── datamodel_materialized_views.md
│ │ │ │ ├── datamodel_ops_center.md
│ │ │ │ ├── datamodel_bloom_filters.md
│ │ │ │ ├── datamodel_readrepair.md
│ │ │ │ ├── datamodel_schema_unused_tables.md
│ │ │ │ ├── datamodel_custom_types.md
│ │ │ │ └── datamodel_schema_agreement.md
│ │ │ ├── structure
│ │ │ │ └── artifacts.md
│ │ │ ├── security
│ │ │ │ ├── security_network_encryption.md
│ │ │ │ └── security_authentication.md
│ │ │ └── astra
│ │ │ │ └── astra_guardrails.md
│ │ ├── mkhugozip.sh
│ │ └── logback.xml
│ │ └── kotlin
│ │ └── com
│ │ └── datastax
│ │ └── montecristo
│ │ ├── model
│ │ ├── ConfigSource.kt
│ │ ├── LoadError.kt
│ │ ├── os
│ │ │ ├── Env.kt
│ │ │ ├── DStat
│ │ │ │ ├── DStat.kt
│ │ │ │ ├── TimeSlice.kt
│ │ │ │ ├── Paging.kt
│ │ │ │ ├── System.kt
│ │ │ │ ├── DiskActivity.kt
│ │ │ │ ├── Network.kt
│ │ │ │ ├── Memory.kt
│ │ │ │ └── CPUUsage.kt
│ │ │ ├── Ntp.kt
│ │ │ ├── GCAlgorithm.kt
│ │ │ ├── IfConfig.kt
│ │ │ ├── TransparentHugePageDefrag.kt
│ │ │ ├── MemInfo.kt
│ │ │ ├── Sysctl.kt
│ │ │ ├── Configuration.kt
│ │ │ └── PsAux.kt
│ │ ├── schema
│ │ │ ├── Caching.kt
│ │ │ ├── UserDefinedType.kt
│ │ │ ├── Partitioner.kt
│ │ │ └── Compression.kt
│ │ ├── Workload.kt
│ │ ├── storage
│ │ │ ├── Fstab.kt
│ │ │ ├── Blockdev.kt
│ │ │ ├── LsBlk.kt
│ │ │ ├── DiskDevice.kt
│ │ │ ├── Storage.kt
│ │ │ ├── StorageLocations.kt
│ │ │ └── DfSize.kt
│ │ ├── nodetool
│ │ │ ├── TpStats.kt
│ │ │ ├── Ring.kt
│ │ │ └── Status.kt
│ │ ├── logs
│ │ │ ├── LogSettings.kt
│ │ │ ├── LogLevel.kt
│ │ │ ├── IndexWriterStatistics.kt
│ │ │ └── LogbackAppender.kt
│ │ ├── metrics
│ │ │ ├── SSTableCount.kt
│ │ │ ├── Server.kt
│ │ │ ├── SSTableStatistics.kt
│ │ │ └── BlockedTasks.kt
│ │ ├── application
│ │ │ ├── JvmSettings.kt
│ │ │ ├── ConfigValue.kt
│ │ │ ├── DseYaml.kt
│ │ │ └── ConfigurationSetting.kt
│ │ └── versions
│ │ │ ├── cassandra
│ │ │ ├── CassandraV41x.kt
│ │ │ ├── CassandraV40x.kt
│ │ │ ├── CassandraV50x.kt
│ │ │ └── CassandraV311x.kt
│ │ │ └── dse
│ │ │ ├── DseV6X.kt
│ │ │ ├── DseV67X.kt
│ │ │ ├── Dse6Base.kt
│ │ │ ├── DseV4.kt
│ │ │ ├── DseV5x.kt
│ │ │ ├── DseV51x.kt
│ │ │ └── DseV69X.kt
│ │ ├── commands
│ │ └── BaseCommand.kt
│ │ ├── logs
│ │ └── LogEntryGroupings.kt
│ │ ├── sections
│ │ └── structure
│ │ │ ├── RecommendationPriority.kt
│ │ │ ├── RecommendationType.kt
│ │ │ ├── SectionHeadingDocument.kt
│ │ │ └── CollectedArtifacts.kt
│ │ ├── fileLoaders
│ │ └── parsers
│ │ │ ├── IFileParser.kt
│ │ │ ├── os
│ │ │ ├── SysCtlParser.kt
│ │ │ ├── MemInfoParser.kt
│ │ │ └── LsCpuParser.kt
│ │ │ └── application
│ │ │ ├── DseYamlParser.kt
│ │ │ └── CassandraYamlParser.kt
│ │ ├── metrics
│ │ ├── NodeTableReadCount.kt
│ │ ├── ParsedExpression.kt
│ │ └── jmxMetrics
│ │ │ ├── Auth.kt
│ │ │ ├── JMXMetric.kt
│ │ │ ├── Net.kt
│ │ │ ├── Transport.kt
│ │ │ ├── Request.kt
│ │ │ └── NoMatch.kt
│ │ └── utils
│ │ ├── OutputSectionCounter.kt
│ │ ├── HumanCount.kt
│ │ └── MontecristoMustacheFactory.kt
├── settings.gradle
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── Dockerfile
├── gradle.properties
└── docker-entrypoint.sh
├── dse-stats-converter
├── settings.gradle
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── runConverter.sh
├── gradle.properties
└── src
│ ├── main
│ └── resources
│ │ └── logback.xml
│ └── test
│ └── kotlin
│ └── com
│ └── datastax
│ └── dsestatsconverter
│ └── ConvertTest.kt
├── pull
├── env
│ └── secrets
│ │ └── aws.env.template
├── Dockerfile
└── docker-entrypoint.sh
├── decrypt
└── Dockerfile
├── docker-compose.yml
├── list
├── Dockerfile
└── docker-entrypoint.sh
├── aws-env.sh
└── HISTORY.md
/old-c-stats-converter/.gradle/6.8.1/gc.properties:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/old-c-stats-converter/.gradle/vcs-1/gc.properties:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/old-c-stats-converter/.gradle/6.8.1/fileChanges/last-build.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/old-c-stats-converter/.gradle/configuration-cache/gc.properties:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/montecristo/src/test/resources/metrics/cloud/aws-az.txt:
--------------------------------------------------------------------------------
1 | us-west-2a
--------------------------------------------------------------------------------
/montecristo/src/test/resources/metrics/cloud/aws-instance-type.txt:
--------------------------------------------------------------------------------
1 | t3.small
--------------------------------------------------------------------------------
/montecristo/src/main/resources/hugo/themes/hugo-xmin-master/layouts/partials/foot_custom.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/montecristo/src/main/resources/hugo/themes/hugo-xmin-master/layouts/partials/head_custom.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/montecristo/src/main/resources/hugo/themes/hugo-xmin-master/layouts/partials/prev_next_links.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/montecristo/src/test/resources/helpers/rowCacheEnabled.yaml:
--------------------------------------------------------------------------------
1 | row_cache_size: 1
2 | key: "value"
3 |
--------------------------------------------------------------------------------
/montecristo/src/test/resources/helpers/rowCacheDisabled.yaml:
--------------------------------------------------------------------------------
1 | row_cache_size: 0MiB
2 | key: "value"
3 |
--------------------------------------------------------------------------------
/montecristo/src/test/resources/fileLoaders/parsers/nodetool/gossip/gossipinfo_empty.txt:
--------------------------------------------------------------------------------
1 |
2 | nodetool rc=1
--------------------------------------------------------------------------------
/montecristo/src/test/resources/fileLoaders/parsers/nodetool/info/nodetool_info_empty.txt:
--------------------------------------------------------------------------------
1 |
2 | nodetool rc=1
--------------------------------------------------------------------------------
/montecristo/src/main/resources/hugo/layouts/shortcodes/pb.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/montecristo/src/main/resources/templates/configuration/configuration_snitch.md:
--------------------------------------------------------------------------------
1 | ## Snitch
2 |
3 | {{snitch}}
4 |
5 |
--------------------------------------------------------------------------------
/montecristo/src/main/resources/hugo/themes/hugo-xmin-master/archetypes/default.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: ''
3 | date: ''
4 | ---
5 |
--------------------------------------------------------------------------------
/old-c-stats-converter/.gradle/buildOutputCleanup/cache.properties:
--------------------------------------------------------------------------------
1 | #Mon Jan 23 16:32:45 GMT 2023
2 | gradle.version=6.8.1
3 |
--------------------------------------------------------------------------------
/montecristo/settings.gradle:
--------------------------------------------------------------------------------
1 | /*
2 | * This file was generated by the Gradle 'init' task.
3 | */
4 |
5 | rootProject.name = 'montecristo'
--------------------------------------------------------------------------------
/montecristo/src/main/resources/templates/infrastructure/infrastructure_disk_space.md:
--------------------------------------------------------------------------------
1 | ## Disk space
2 |
3 | **Discuss disk space**
4 |
--------------------------------------------------------------------------------
/montecristo/src/main/resources/hugo/layouts/shortcodes/size.html:
--------------------------------------------------------------------------------
1 |
2 | {{ .Inner }}
3 |
4 |
--------------------------------------------------------------------------------
/dse-stats-converter/settings.gradle:
--------------------------------------------------------------------------------
1 | /*
2 | * This file was generated by the Gradle 'init' task.
3 | */
4 |
5 | rootProject.name = 'dse-stats-converter'
--------------------------------------------------------------------------------
/montecristo/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/montecristo/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/montecristo/src/test/resources/metrics/tm1.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/montecristo/src/test/resources/metrics/tm1.db
--------------------------------------------------------------------------------
/montecristo/src/test/resources/helpers/generic.yaml:
--------------------------------------------------------------------------------
1 | # File for testing generic YAML parsing functionality
2 | num_value: 42
3 | string_value: 'The Answer'
4 |
--------------------------------------------------------------------------------
/old-c-stats-converter/settings.gradle:
--------------------------------------------------------------------------------
1 | /*
2 | * This file was generated by the Gradle 'init' task.
3 | */
4 |
5 | rootProject.name = 'old-c-stats-converter'
--------------------------------------------------------------------------------
/montecristo/src/main/resources/templates/configuration/configuration_memtable_storage.md:
--------------------------------------------------------------------------------
1 | ## Memtable storage
2 |
3 | {{memtableConfigurationSection}}
4 |
5 |
--------------------------------------------------------------------------------
/dse-stats-converter/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/dse-stats-converter/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/old-c-stats-converter/runConverter.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | ./gradlew build install -x test
3 | ./build/install/old-c-stats-converter/bin/old-c-stats-converter $@ || exit 1
--------------------------------------------------------------------------------
/montecristo/src/main/resources/hugo/_index.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "The DataStax Discovery Document Contents"
3 | +++
4 |
5 | # Welcome to DataStax Discovery report!
6 |
7 |
--------------------------------------------------------------------------------
/montecristo/src/main/resources/hugo/themes/hugo-xmin-master/layouts/404.html:
--------------------------------------------------------------------------------
1 | {{ partial "header.html" . }}
2 |
3 | 404 NOT FOUND
4 |
5 | {{ partial "footer.html" . }}
6 |
--------------------------------------------------------------------------------
/old-c-stats-converter/.gradle/checksums/checksums.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/old-c-stats-converter/.gradle/checksums/checksums.lock
--------------------------------------------------------------------------------
/old-c-stats-converter/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/old-c-stats-converter/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/old-c-stats-converter/.gradle/checksums/sha1-checksums.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/old-c-stats-converter/.gradle/checksums/sha1-checksums.bin
--------------------------------------------------------------------------------
/montecristo/src/main/resources/hugo/themes/hugo-xmin-master/layouts/shortcodes/svg.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/old-c-stats-converter/.gradle/6.8.1/fileHashes/fileHashes.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/old-c-stats-converter/.gradle/6.8.1/fileHashes/fileHashes.bin
--------------------------------------------------------------------------------
/old-c-stats-converter/.gradle/6.8.1/fileHashes/fileHashes.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/old-c-stats-converter/.gradle/6.8.1/fileHashes/fileHashes.lock
--------------------------------------------------------------------------------
/old-c-stats-converter/.gradle/buildOutputCleanup/outputFiles.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/old-c-stats-converter/.gradle/buildOutputCleanup/outputFiles.bin
--------------------------------------------------------------------------------
/montecristo/src/main/resources/templates/operations/operations_tombstones_per_read.md:
--------------------------------------------------------------------------------
1 | ## Tombstones Per Read
2 |
3 | Tombstones per read are a metric tracked per table.
4 |
5 | {{tables}}
6 |
7 |
--------------------------------------------------------------------------------
/old-c-stats-converter/.gradle/6.8.1/fileHashes/resourceHashesCache.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/old-c-stats-converter/.gradle/6.8.1/fileHashes/resourceHashesCache.bin
--------------------------------------------------------------------------------
/old-c-stats-converter/.gradle/6.8.1/executionHistory/executionHistory.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/old-c-stats-converter/.gradle/6.8.1/executionHistory/executionHistory.bin
--------------------------------------------------------------------------------
/old-c-stats-converter/.gradle/buildOutputCleanup/buildOutputCleanup.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/old-c-stats-converter/.gradle/buildOutputCleanup/buildOutputCleanup.lock
--------------------------------------------------------------------------------
/old-c-stats-converter/.gradle/6.8.1/executionHistory/executionHistory.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/old-c-stats-converter/.gradle/6.8.1/executionHistory/executionHistory.lock
--------------------------------------------------------------------------------
/montecristo/src/main/resources/templates/configuration/configuration_custom_settings.md:
--------------------------------------------------------------------------------
1 | ## Custom settings
2 |
3 | Below are all the settings from the `cassandra.yaml` file that were customized:
4 |
5 | {{table}}
6 |
7 |
--------------------------------------------------------------------------------
/pull/env/secrets/aws.env.template:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | # you can find your security credentials here:
4 | # https://console.aws.amazon.com/iam/home?#/users
5 |
6 | AWS_ACCESS_KEY_ID=
7 | AWS_SECRET_ACCESS_KEY=
8 | AWS_REGION=
9 |
--------------------------------------------------------------------------------
/montecristo/src/main/resources/hugo/themes/hugo-xmin-master/static/fonts/Kanit-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/montecristo/src/main/resources/hugo/themes/hugo-xmin-master/static/fonts/Kanit-Regular.ttf
--------------------------------------------------------------------------------
/montecristo/src/main/resources/hugo/themes/hugo-xmin-master/static/fonts/Roboto-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/montecristo/src/main/resources/hugo/themes/hugo-xmin-master/static/fonts/Roboto-Regular.ttf
--------------------------------------------------------------------------------
/montecristo/src/test/resources/fileLoaders/parsers/schema/root-schema:
--------------------------------------------------------------------------------
1 | CREATE KEYSPACE testkeyspace1 WITH REPLICATION = { 'class' : 'org.apache.cassandra.locator.NetworkTopologyStrategy', 'DC1': '3', 'DC2': '3' } AND DURABLE_WRITES = true;
2 |
--------------------------------------------------------------------------------
/montecristo/src/main/resources/templates/infrastructure/infrastructure_path.md:
--------------------------------------------------------------------------------
1 | ## Path
2 |
3 | The `$PATH` environment variable has the following configuration:
4 |
5 | ```
6 | {{path-values}}
7 | ```
8 |
9 | {{path-conclusion}}
10 |
--------------------------------------------------------------------------------
/montecristo/src/test/resources/fileLoaders/parsers/schema/10.0.0.1/schema1:
--------------------------------------------------------------------------------
1 | CREATE KEYSPACE testkeyspace1 WITH REPLICATION = { 'class' : 'org.apache.cassandra.locator.NetworkTopologyStrategy', 'DC1': '3', 'DC2': '3' } AND DURABLE_WRITES = true;
2 |
--------------------------------------------------------------------------------
/montecristo/src/test/resources/fileLoaders/parsers/schema/10.0.0.1/schema2:
--------------------------------------------------------------------------------
1 | CREATE KEYSPACE testkeyspace2 WITH REPLICATION = { 'class' : 'org.apache.cassandra.locator.NetworkTopologyStrategy', 'DC1': '3', 'DC2': '3' } AND DURABLE_WRITES = true;
2 |
--------------------------------------------------------------------------------
/montecristo/src/test/resources/fileLoaders/parsers/schema/10.0.0.2/schema1:
--------------------------------------------------------------------------------
1 | CREATE KEYSPACE testkeyspace1 WITH REPLICATION = { 'class' : 'org.apache.cassandra.locator.NetworkTopologyStrategy', 'DC1': '3', 'DC2': '3' } AND DURABLE_WRITES = true;
2 |
--------------------------------------------------------------------------------
/montecristo/src/test/resources/fileLoaders/parsers/schema/10.0.0.2/schema2:
--------------------------------------------------------------------------------
1 | CREATE KEYSPACE testkeyspace2 WITH REPLICATION = { 'class' : 'org.apache.cassandra.locator.NetworkTopologyStrategy', 'DC1': '3', 'DC2': '3' } AND DURABLE_WRITES = true;
2 |
--------------------------------------------------------------------------------
/montecristo/src/test/resources/fileLoaders/parsers/schema/10.0.0.3/schema1:
--------------------------------------------------------------------------------
1 | CREATE KEYSPACE testkeyspace1 WITH REPLICATION = { 'class' : 'org.apache.cassandra.locator.NetworkTopologyStrategy', 'DC1': '3', 'DC2': '3' } AND DURABLE_WRITES = true;
2 |
--------------------------------------------------------------------------------
/montecristo/src/test/resources/fileLoaders/parsers/schema/10.0.0.3/schema2:
--------------------------------------------------------------------------------
1 | CREATE KEYSPACE testkeyspace2 WITH REPLICATION = { 'class' : 'org.apache.cassandra.locator.NetworkTopologyStrategy', 'DC1': '3', 'DC2': '3' } AND DURABLE_WRITES = true;
2 |
--------------------------------------------------------------------------------
/montecristo/src/main/resources/hugo/themes/hugo-xmin-master/static/fonts/RobotoMono-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/montecristo/src/main/resources/hugo/themes/hugo-xmin-master/static/fonts/RobotoMono-Regular.ttf
--------------------------------------------------------------------------------
/montecristo/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.1-all.zip
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 |
--------------------------------------------------------------------------------
/dse-stats-converter/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.1-all.zip
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 |
--------------------------------------------------------------------------------
/montecristo/src/test/resources/fileLoaders/parsers/sstable-statistics/keyspace1/table1/bb-1-bti-Statistics.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/montecristo/src/test/resources/fileLoaders/parsers/sstable-statistics/keyspace1/table1/bb-1-bti-Statistics.db
--------------------------------------------------------------------------------
/montecristo/src/test/resources/fileLoaders/parsers/sstable-statistics/keyspace1/table1/md-1-big-Statistics.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/datastax-labs/Montecristo/HEAD/montecristo/src/test/resources/fileLoaders/parsers/sstable-statistics/keyspace1/table1/md-1-big-Statistics.db
--------------------------------------------------------------------------------
/old-c-stats-converter/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.1-all.zip
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 |
--------------------------------------------------------------------------------
/montecristo/src/main/resources/hugo/themes/hugo-xmin-master/layouts/partials/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
9 |