Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: misc fixes #43

Merged
merged 3 commits into from
Aug 29, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Envoy
=========
# Envoy

C++ L7 proxy and communication bus

https://lyft.github.io/envoy

## Contact

* [envoy-announce](https://groups.google.com/forum/#!forum/envoy-announce): Low frequency mailing
list where we will email announcements only
* [envoy-users](https://groups.google.com/forum/#!forum/envoy-users): General user discussion
* [#lyft-envoy](http://webchat.freenode.net/?channels=lyft-envoy): IRC
* [lyft/envoy](https://gitter.im/lyft/envoy): Gitter

## Reporting security vulnerabilities

If you've found a vulnerability or a potential vulnerability in Envoy please let us know at
security@lyft.com. We'll send a confirmation email to acknowledge your report, and we'll send an
additional email when we've identified the issue positively or negatively.


6 changes: 6 additions & 0 deletions docs/configuration/cluster_manager/cluster.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Cluster
"ssl_context": "{...}",
"features": "...",
"http_codec_options": "...",
"alt_stat_name": "..."
}

name
Expand Down Expand Up @@ -140,6 +141,11 @@ http_codec_options
an HTTP/2 mesh, if it's desired to disable HTTP/2 header compression the *no_compression*
option should be specified both here as well as in the HTTP connection manager.

alt_stat_name
*(optional, string)* If an alternate stat name is specified, some :ref:`statistics
<config_cluster_manager_cluster_stats>` will be duplicated between the standard statistics and a
tree specified by this parameter (e.g., *cluster.<alt_stat_name>.*).

.. toctree::
:hidden:

Expand Down
2 changes: 1 addition & 1 deletion docs/intro/getting_help.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Google Groups
IRC
---

* `#envoy <http://webchat.freenode.net/?channels=envoy>`_
* `#lyft-envoy <http://webchat.freenode.net/?channels=lyft-envoy>`_
* `lyft/envoy on Gitter <https://gitter.im/lyft/envoy>`_

Feel free to drop into either Gitter or the IRC channel for any reason, even
Expand Down
2 changes: 1 addition & 1 deletion source/common/upstream/upstream_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class ClusterImplBase : public Cluster,
void setHealthChecker(HealthCheckerPtr&& health_checker);

// Upstream::Cluster
const std::string& altStatName() const { return alt_stat_name_; }
const std::string& altStatName() const override { return alt_stat_name_; }
std::chrono::milliseconds connectTimeout() const override { return connect_timeout_; }
uint64_t features() const override { return features_; }
uint64_t httpCodecOptions() const override { return http_codec_options_; }
Expand Down