| --- |
| title: clickhouse-logger |
| keywords: |
| - APISIX |
| - API Gateway |
| - Plugin |
| - ClickHouse Logger |
| description: This document contains information about the Apache APISIX clickhouse-logger Plugin. |
| --- |
| |
| <!-- |
| # |
| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to You under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # |
| --> |
| |
| ## Description |
| |
| The `clickhouse-logger` Plugin is used to push logs to [ClickHouse](https://clickhouse.com/) database. |
| |
| ## Attributes |
| |
| | Name | Type | Required | Default | Valid values | Description | |
| |---------------|---------|----------|---------------------|--------------|----------------------------------------------------------------| |
| | endpoint_addr | Deprecated | True | | | Use `endpoint_addrs` instead. ClickHouse endpoints. | |
| | endpoint_addrs | array | True | | | ClickHouse endpoints. | |
| | database | string | True | | | Name of the database to store the logs. | |
| | logtable | string | True | | | Table name to store the logs. | |
| | user | string | True | | | ClickHouse username. | |
| | password | string | True | | | ClickHouse password. | |
| | timeout | integer | False | 3 | [1,...] | Time to keep the connection alive for after sending a request. | |
| | name | string | False | "clickhouse logger" | | Unique identifier for the logger. | |
| | ssl_verify | boolean | False | true | [true,false] | When set to `true`, verifies SSL. | |
| |
| NOTE: `encrypt_fields = {"password"}` is also defined in the schema, which means that the field will be stored encrypted in etcd. See [encrypted storage fields](../plugin-develop.md#encrypted-storage-fields). |
| |
| This Plugin supports using batch processors to aggregate and process entries (logs/data) in a batch. This avoids the need for frequently submitting the data. The batch processor submits data every `5` seconds or when the data in the queue reaches `1000`. See [Batch Processor](../batch-processor.md#configuration) for more information or setting your custom configuration. |
| |
| ## Metadata |
| |
| You can also set the format of the logs by configuring the Plugin metadata. The following configurations are available: |
| |
| | Name | Type | Required | Default | Description | |
| | ---------- | ------ | -------- | ----------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | |
| | log_format | object | False | {"host": "$host", "@timestamp": "$time_iso8601", "client_ip": "$remote_addr"} | Log format declared as key value pairs in JSON format. Values only support strings. [APISIX](../apisix-variable.md) or [Nginx](http://nginx.org/en/docs/varindex.html) variables can be used by prefixing the string with `$`. | |
| |
| :::info IMPORTANT |
| |
| Configuring the Plugin metadata is global in scope. This means that it will take effect on all Routes and Services which use the `clickhouse-logger` Plugin. |
| |
| ::: |
| |
| The example below shows how you can configure through the Admin API: |
| |
| ```shell |
| curl http://127.0.0.1:9180/apisix/admin/plugin_metadata/clickhouse-logger -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d ' |
| { |
| "log_format": { |
| "host": "$host", |
| "@timestamp": "$time_iso8601", |
| "client_ip": "$remote_addr" |
| } |
| }' |
| ``` |
| |
| You have to then create a table in your ClickHouse database to store the logs: |
| |
| ```sql |
| CREATE TABLE default.test ( |
| `host` String, |
| `client_ip` String, |
| `route_id` String, |
| `service_id` String, |
| `@timestamp` String, |
| PRIMARY KEY(`@timestamp`) |
| ) ENGINE = MergeTree() |
| ``` |
| |
| Now, if you run `select * from default.test;`, you will get the following row: |
| |
| ``` |
| ┌─host──────┬─client_ip─┬─route_id─┬─@timestamp────────────────┐ |
| │ 127.0.0.1 │ 127.0.0.1 │ 1 │ 2022-01-17T10:03:10+08:00 │ |
| └───────────┴───────────┴──────────┴───────────────────────────┘ |
| ``` |
| |
| ## Enabling the Plugin |
| |
| If multiple endpoints are configured, they will be written randomly. |
| The example below shows how you can enable the Plugin on a specific Route: |
| |
| ```shell |
| curl http://127.0.0.1:9180/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d ' |
| { |
| "plugins": { |
| "clickhouse-logger": { |
| "user": "default", |
| "password": "a", |
| "database": "default", |
| "logtable": "test", |
| "endpoint_addrs": ["http://127.0.0.1:8123"] |
| } |
| }, |
| "upstream": { |
| "type": "roundrobin", |
| "nodes": { |
| "127.0.0.1:1980": 1 |
| } |
| }, |
| "uri": "/hello" |
| }' |
| ``` |
| |
| ## Example usage |
| |
| Now, if you make a request to APISIX, it will be logged in your ClickHouse database: |
| |
| ```shell |
| curl -i http://127.0.0.1:9080/hello |
| ``` |
| |
| ## Disable Plugin |
| |
| To disable the `clickhouse-logger` Plugin, you can delete the corresponding JSON configuration from the Plugin configuration. APISIX will automatically reload and you do not have to restart for this to take effect. |
| |
| ```shell |
| curl http://127.0.0.1:9180/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d ' |
| { |
| "uri": "/hello", |
| "plugins": {}, |
| "upstream": { |
| "type": "roundrobin", |
| "nodes": { |
| "127.0.0.1:1980": 1 |
| } |
| } |
| }' |
| ``` |