Skip to content

Commit

Permalink
Correct Rally forum URL
Browse files Browse the repository at this point in the history
After a recent reorganization of the Discuss forum structure the Rally
forum URL is not valid anymore. With this commit we update all forum
URLs to the new one.

Closes elastic#1036
  • Loading branch information
danielmitterdorfer committed Jul 28, 2020
1 parent 7ac7643 commit 28fb582
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Please ask questions in our forum at
https://discuss.elastic.co/c/elasticsearch/rally
https://discuss.elastic.co/tags/c/elastic-stack/elasticsearch/rally
GitHub is reserved for bug reports and feature requests only and we will
close your issue immediately if it is just a question.
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Getting help

* Quick help: ``esrally --help``
* Look in `Rally's user guide <https://esrally.readthedocs.io/>`_ for more information
* Ask questions about Rally in the `Rally Discuss forum <https://discuss.elastic.co/c/elasticsearch/rally>`_.
* Ask questions about Rally in the `Rally Discuss forum <https://discuss.elastic.co/tags/c/elastic-stack/elasticsearch/rally>`_.
* File improvements or bug reports in our `Github repo <https://github.com/elastic/rally/issues>`_.

How to Contribute
Expand Down
2 changes: 1 addition & 1 deletion docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Let's go through an example step by step: First run ``esrally``::

* Type esrally --help
* Read the documentation at https://esrally.readthedocs.io/en/latest/
* Ask a question on the forum at https://discuss.elastic.co/c/elasticsearch/rally
* Ask a question on the forum at https://discuss.elastic.co/tags/c/elastic-stack/elasticsearch/rally

Congratulations! Time to :doc:`run your first benchmark </race>`.

Expand Down
2 changes: 1 addition & 1 deletion docs/docker.rst
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Example::

* Type esrally --help
* Read the documentation at https://esrally.readthedocs.io/en/latest/
* Ask a question on the forum at https://discuss.elastic.co/c/elasticsearch/rally
* Ask a question on the forum at https://discuss.elastic.co/tags/c/elastic-stack/elasticsearch/rally

# now run our benchmark
docker run --rm -v $PWD/myrally:/rally/.rally elastic/rally --track=nyc_taxis --test-mode --pipeline=benchmark-only --target-hosts=es01:9200
Expand Down
2 changes: 1 addition & 1 deletion docs/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ There are a few more directories but the ones above are the most disk-hogging on
Does Rally spy on me?
---------------------

No. Rally does not collect or send any usage data and also the complete source code is open. We do value your feedback a lot though and if you got any ideas for improvements, found a bug or have any other feedback, head over to `Rally's Discuss forum <https://discuss.elastic.co/c/elasticsearch/rally>`_ or `raise an issue on Github <https://github.com/elastic/rally>`_.
No. Rally does not collect or send any usage data and also the complete source code is open. We do value your feedback a lot though and if you got any ideas for improvements, found a bug or have any other feedback, head over to `Rally's Discuss forum <https://discuss.elastic.co/tags/c/elastic-stack/elasticsearch/rally>`_ or `raise an issue on Github <https://github.com/elastic/rally>`_.

Do I need an Internet connection?
---------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ We have also put considerable effort in Rally to ensure that benchmarking data a
Getting Help or Contributing to Rally
-------------------------------------

* Use our `Discuss forum <https://discuss.elastic.co/c/elasticsearch/rally>`_ to provide feedback or ask questions about Rally.
* Use our `Discuss forum <https://discuss.elastic.co/tags/c/elastic-stack/elasticsearch/rally>`_ to provide feedback or ask questions about Rally.
* See our `contribution guide <https://github.com/elastic/rally/blob/master/CONTRIBUTING.md>`_ on guidelines for contributors.

Source Code
Expand Down
2 changes: 1 addition & 1 deletion esrally/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ def create_config(self, config_file, advanced_config=False, assume_defaults=Fals
self.o("")
self.o("* Type %s --help" % PROGRAM_NAME)
self.o("* Read the documentation at %s" % console.format.link(doc_link()))
self.o("* Ask a question on the forum at %s" % console.format.link("https://discuss.elastic.co/c/elasticsearch/rally"))
self.o("* Ask a question on the forum at %s" % console.format.link("https://discuss.elastic.co/tags/c/elastic-stack/elasticsearch/rally"))

def print_detection_result(self, what, result, warn_if_missing=False, additional_message=None):
self.logger.debug("Autodetected %s at [%s]", what, result)
Expand Down
2 changes: 1 addition & 1 deletion esrally/rally.py
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ def print_help_on_errors():
console.println(console.format.underline_for(heading))
console.println("* Check the log files in {} for errors.".format(paths.logs()))
console.println("* Read the documentation at {}".format(console.format.link(doc_link())))
console.println("* Ask a question on the forum at {}".format(console.format.link("https://discuss.elastic.co/c/elasticsearch/rally")))
console.println("* Ask a question on the forum at {}".format(console.format.link("https://discuss.elastic.co/tags/c/elastic-stack/elasticsearch/rally")))
console.println("* Raise an issue at {} and include the log files in {}."
.format(console.format.link("https://github.com/elastic/rally/issues"), paths.logs()))

Expand Down

0 comments on commit 28fb582

Please sign in to comment.