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

Doc: Replace cross-document links with attributes #61

Merged
merged 4 commits into from
Jan 15, 2021
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 4.1.5
- [DOC] Updated links to use shared attributes [#61](https://github.com/logstash-plugins/logstash-output-google_bigquery/pull/61)

## 4.1.4
- Changed concurrency to :shared and publish outside of synchronized code [#60](https://github.com/logstash-plugins/logstash-output-google_bigquery/pull/60)

Expand Down
7 changes: 3 additions & 4 deletions docs/index.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ hold the tables this plugin generates.

You must also grant the service account this plugin uses access to the dataset.

You can use https://www.elastic.co/guide/en/logstash/current/event-dependent-configuration.html[Logstash conditionals]
You can use {logstash-ref}/event-dependent-configuration.html[Logstash conditionals]
and multiple configuration blocks to upload events with different structures.

===== Usage
Expand All @@ -58,7 +58,6 @@ output {
--------------------------

<1> Specify either a csv_schema or a json_schema.

<2> If the key is not used, then the plugin tries to find
https://cloud.google.com/docs/authentication/production[Application Default Credentials]

Expand All @@ -67,15 +66,15 @@ https://cloud.google.com/docs/authentication/production[Application Default Cred
* There is a small fee to insert data into BigQuery using the streaming API.
* This plugin buffers events in-memory, so make sure the flush configurations are appropriate
for your use-case and consider using
https://www.elastic.co/guide/en/logstash/current/persistent-queues.html[Logstash Persistent Queues].
{logstash-ref}/persistent-queues.html[Logstash Persistent Queues].
* Events will be flushed when <<plugins-{type}s-{plugin}-batch_size>>, <<plugins-{type}s-{plugin}-batch_size_bytes>>, or <<plugins-{type}s-{plugin}-flush_interval_secs>> is met, whatever comes first.
If you notice a delay in your processing or low throughput, try adjusting those settings.

===== Additional Resources

* https://cloud.google.com/docs/authentication/production[Application Default Credentials (ADC) Overview]
* https://cloud.google.com/bigquery/[BigQuery Introduction]
* https://cloud.google.com/bigquery/quota[BigQuery Quotas and Limits]
* https://cloud.google.com/bigquery/quotas[BigQuery Quotas and Limits]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❤️

* https://cloud.google.com/bigquery/docs/schemas[BigQuery Schema Formats and Types]

[id="plugins-{type}s-{plugin}-options"]
Expand Down
2 changes: 1 addition & 1 deletion logstash-output-google_bigquery.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'logstash-output-google_bigquery'
s.version = '4.1.4'
s.version = '4.1.5'
s.licenses = ['Apache License (2.0)']
s.summary = "Writes events to Google BigQuery"
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
Expand Down