-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7217 from kobergj/ClientlogService
Clientlog Service
- Loading branch information
Showing
76 changed files
with
530 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,234 @@ | ||
// set the attribute to true or leave empty, true without any quotes. | ||
|
||
:show-deprecation: false | ||
|
||
ifeval::[{show-deprecation} == true] | ||
|
||
[#deprecation-note-2023-09-07-13-26-46] | ||
[caption=] | ||
.Deprecation notes for the clientlog service | ||
[width="100%",cols="~,~,~,~",options="header"] | ||
|=== | ||
| Deprecation Info | ||
| Deprecation Version | ||
| Removal Version | ||
| Deprecation Replacement | ||
|=== | ||
|
||
endif::[] | ||
|
||
[caption=] | ||
.Environment variables for the clientlog service | ||
[width="100%",cols="~,~,~,~",options="header"] | ||
|=== | ||
| Name | ||
| Type | ||
| Default Value | ||
| Description | ||
|
||
a|`OCIS_TRACING_ENABLED` + | ||
`CLIENTLOG_TRACING_ENABLED` + | ||
|
||
a| [subs=-attributes] | ||
++bool ++ | ||
a| [subs=-attributes] | ||
++false ++ | ||
a| [subs=-attributes] | ||
Activates tracing. | ||
|
||
a|`OCIS_TRACING_TYPE` + | ||
`CLIENTLOG_TRACING_TYPE` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
The type of tracing. Defaults to '', which is the same as 'jaeger'. Allowed tracing types are 'jaeger' and '' as of now. | ||
|
||
a|`OCIS_TRACING_ENDPOINT` + | ||
`CLIENTLOG_TRACING_ENDPOINT` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
The endpoint of the tracing agent. | ||
|
||
a|`OCIS_TRACING_COLLECTOR` + | ||
`CLIENTLOG_TRACING_COLLECTOR` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
The HTTP endpoint for sending spans directly to a collector, i.e. \http://jaeger-collector:14268/api/traces. Only used if the tracing endpoint is unset. | ||
|
||
a|`OCIS_LOG_LEVEL` + | ||
`USERLOG_LOG_LEVEL` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
The log level. Valid values are: 'panic', 'fatal', 'error', 'warn', 'info', 'debug', 'trace'. | ||
|
||
a|`OCIS_LOG_PRETTY` + | ||
`USERLOG_LOG_PRETTY` + | ||
|
||
a| [subs=-attributes] | ||
++bool ++ | ||
a| [subs=-attributes] | ||
++false ++ | ||
a| [subs=-attributes] | ||
Activates pretty log output. | ||
|
||
a|`OCIS_LOG_COLOR` + | ||
`USERLOG_LOG_COLOR` + | ||
|
||
a| [subs=-attributes] | ||
++bool ++ | ||
a| [subs=-attributes] | ||
++false ++ | ||
a| [subs=-attributes] | ||
Activates colorized log output. | ||
|
||
a|`OCIS_LOG_FILE` + | ||
`USERLOG_LOG_FILE` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
The path to the log file. Activates logging to this file if set. | ||
|
||
a|`USERLOG_DEBUG_ADDR` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++127.0.0.1:9260 ++ | ||
a| [subs=-attributes] | ||
Bind address of the debug server, where metrics, health, config and debug endpoints will be exposed. | ||
|
||
a|`USERLOG_DEBUG_TOKEN` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
Token to secure the metrics endpoint. | ||
|
||
a|`USERLOG_DEBUG_PPROF` + | ||
|
||
a| [subs=-attributes] | ||
++bool ++ | ||
a| [subs=-attributes] | ||
++false ++ | ||
a| [subs=-attributes] | ||
Enables pprof, which can be used for profiling. | ||
|
||
a|`USERLOG_DEBUG_ZPAGES` + | ||
|
||
a| [subs=-attributes] | ||
++bool ++ | ||
a| [subs=-attributes] | ||
++false ++ | ||
a| [subs=-attributes] | ||
Enables zpages, which can be used for collecting and viewing in-memory traces. | ||
|
||
a|`OCIS_JWT_SECRET` + | ||
`CLIENTLOG_JWT_SECRET` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
The secret to mint and validate jwt tokens. | ||
|
||
a|`OCIS_REVA_GATEWAY` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++com.owncloud.api.gateway ++ | ||
a| [subs=-attributes] | ||
CS3 gateway used to look up user metadata | ||
|
||
a|`OCIS_EVENTS_ENDPOINT` + | ||
`CLIENTLOG_EVENTS_ENDPOINT` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++127.0.0.1:9233 ++ | ||
a| [subs=-attributes] | ||
The address of the event system. The event system is the message queuing service. It is used as message broker for the microservice architecture. | ||
|
||
a|`OCIS_EVENTS_CLUSTER` + | ||
`CLIENTLOG_EVENTS_CLUSTER` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ocis-cluster ++ | ||
a| [subs=-attributes] | ||
The clusterID of the event system. The event system is the message queuing service. It is used as message broker for the microservice architecture. Mandatory when using NATS as event system. | ||
|
||
a|`OCIS_INSECURE` + | ||
`CLIENTLOG_EVENTS_TLS_INSECURE` + | ||
|
||
a| [subs=-attributes] | ||
++bool ++ | ||
a| [subs=-attributes] | ||
++false ++ | ||
a| [subs=-attributes] | ||
Whether to verify the server TLS certificates. | ||
|
||
a|`OCIS_EVENTS_TLS_ROOT_CA_CERTIFICATE` + | ||
`CLIENTLOG_EVENTS_TLS_ROOT_CA_CERTIFICATE` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
The root CA certificate used to validate the server's TLS certificate. If provided NOTIFICATIONS_EVENTS_TLS_INSECURE will be seen as false. | ||
|
||
a|`OCIS_EVENTS_ENABLE_TLS` + | ||
`CLIENTLOG_EVENTS_ENABLE_TLS` + | ||
|
||
a| [subs=-attributes] | ||
++bool ++ | ||
a| [subs=-attributes] | ||
++false ++ | ||
a| [subs=-attributes] | ||
Enable TLS for the connection to the events broker. The events broker is the ocis service which receives and delivers events between the services.. | ||
|
||
a|`OCIS_SERVICE_ACCOUNT_ID` + | ||
`CLIENTLOG_SERVICE_ACCOUNT_ID` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
The ID of the service account the service should use. See the 'auth-service' service description for more details. | ||
|
||
a|`OCIS_SERVICE_ACCOUNT_SECRET` + | ||
`CLIENTLOG_SERVICE_ACCOUNT_SECRET` + | ||
|
||
a| [subs=-attributes] | ||
++string ++ | ||
a| [subs=-attributes] | ||
++ ++ | ||
a| [subs=-attributes] | ||
The service account secret. | ||
|=== | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
:show-deprecation: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.