Skip to content

Commit

Permalink
docs(OpenObserve): fix capitalization
Browse files Browse the repository at this point in the history
Signed-off-by: Szilard Parrag <szilard.parrag@axoflow.com>
  • Loading branch information
OverOrion committed Jan 19, 2024
1 parent 3e57fe4 commit 9a8e948
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/configuration/plugins/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ For more information please click on the plugin name
| **[Loki](syslogng-outputs/loki/)** | syslogng-outputs | Sending messages to Loki over gRPC | Testing | [](https://axoflow.com/docs/axosyslog-core/chapter-destinations/destination-loki/) |
| **[MongoDB Destination](syslogng-outputs/mongodb/)** | syslogng-outputs | Sending messages into MongoDB Server | Testing | [](https://axoflow.com/docs/axosyslog-core/chapter-destinations/configuring-destinations-mongodb/) |
| **[MQTT Destination](syslogng-outputs/mqtt/)** | syslogng-outputs | Sending messages over MQTT Protocol | Testing | [](https://axoflow.com/docs/axosyslog-core/chapter-destinations/destination-mqtt-intro/) |
| **[Openobserve](syslogng-outputs/openobserve/)** | syslogng-outputs | Sending messages over Openobserve | Testing | [](https://axoflow.com/docs/axosyslog-core/chapter-destinations/openobserve/) |
| **[OpenObserve](syslogng-outputs/openobserve/)** | syslogng-outputs | Sending messages over OpenObserve | Testing | [](https://axoflow.com/docs/axosyslog-core/chapter-destinations/openobserve/) |
| **[Redis Server Destination](syslogng-outputs/redis/)** | syslogng-outputs | Sending messages from local network to the Redis server | Testing | [](https://axoflow.com/docs/axosyslog-core/chapter-destinations/configuring-destinations-redis/) |
| **[S3 Destination](syslogng-outputs/s3/)** | syslogng-outputs | Sending messages from a local network to a S3 (compatible) server | Testing | [](https://axoflow.com/docs/axosyslog-core/chapter-destinations/destination-s3/) |
| **[SplunkHEC](syslogng-outputs/splunk_hec/)** | syslogng-outputs | Sending messages over Splunk HEC | Testing | []() |
Expand Down
8 changes: 4 additions & 4 deletions docs/configuration/plugins/syslogng-outputs/openobserve.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
title: Openobserve
title: OpenObserve
weight: 200
generated_file: true
---

# Sending messages over Openobserve
# Sending messages over OpenObserve
## Overview

## Example
Expand Down Expand Up @@ -38,7 +38,7 @@ More information at https://axoflow.com/docs/axosyslog-core/chapter-destinations

### organization (string, optional) {#openobserveoutput-organization}

Name of the organization in Openobserve.
Name of the organization in OpenObserve.


### port (int, optional) {#openobserveoutput-port}
Expand All @@ -54,7 +54,7 @@ Arguments to the `$format-json()` template function. Default: --scope rfc5424 --

### stream (string, optional) {#openobserveoutput-stream}

Name of the stream in Openobserve.
Name of the stream in OpenObserve.



10 changes: 5 additions & 5 deletions pkg/sdk/logging/model/syslogng/output/openobserve.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@

package output

// +name:"Openobserve"
// +name:"OpenObserve"
// +weight:"200"
type _hugoOpenobserve interface{} //nolint:deadcode,unused

// +docName:"Sending messages over Openobserve"
// +docName:"Sending messages over OpenObserve"
/*
## Example
Expand All @@ -44,9 +44,9 @@ More information at https://axoflow.com/docs/axosyslog-core/chapter-destinations
*/
type _docOpenobserve interface{} //nolint:deadcode,unused

// +name:"Openobserve"
// +name:"OpenObserve"
// +url:"https://axoflow.com/docs/axosyslog-core/chapter-destinations/openobserve/"
// +description:"Sending messages over Openobserve"
// +description:"Sending messages over OpenObserve"
// +status:"Testing"
type _metaOpenobserve interface{} //nolint:deadcode,unused

Expand All @@ -58,7 +58,7 @@ type OpenobserveOutput struct {
Port int `json:"port,omitempty"`
// Name of the organization in OpenObserve.
Organization string `json:"organization,omitempty"`
// Name of the stream in Openobserve.
// Name of the stream in OpenObserve.
Stream string `json:"stream,omitempty"`
// Arguments to the `$format-json()` template function.
// Default: --scope rfc5424 --exclude DATE --key ISODATE @timestamp=${ISODATE}"
Expand Down

0 comments on commit 9a8e948

Please sign in to comment.