mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-15 09:21:26 +08:00
105 lines
3.4 KiB
Markdown
105 lines
3.4 KiB
Markdown
|
<!--
|
||
|
#
|
||
|
# 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.
|
||
|
#
|
||
|
-->
|
||
|
|
||
|
- [中文](../zh-cn/plugins/server-info.md)
|
||
|
|
||
|
# Summary
|
||
|
|
||
|
- [**Name**](#name)
|
||
|
- [**Attributes**](#attributes)
|
||
|
- [API](#api)
|
||
|
- [**How To Enable**](#how-to-enable)
|
||
|
- [**Test Plugin**](#test-plugin)
|
||
|
- [**Disable Plugin**](#disable-plugin)
|
||
|
|
||
|
## Name
|
||
|
|
||
|
`server-info` is a plugin that reports basic server information to etcd periodically.
|
||
|
|
||
|
The meaning of each item in server information is following:
|
||
|
|
||
|
| Name | Type | Description |
|
||
|
|---------|------|-------------|
|
||
|
| up_time | integer | Elapsed time (in seconds) since APISIX instance was launched, value will be reset when you hot updating APISIX but is kept for intact if you just reloading APISIX. |
|
||
|
| boot_time | integer | Bootstrap time (UNIX timestamp) of the APISIX instance, value will be reset when you hot updating APISIX but is kept for intact if you just reloading APISIX. |
|
||
|
| last_report_time | integer | Last reporting time (UNIX timestamp). |
|
||
|
| id | string | APISIX instance id. |
|
||
|
| etcd_version | string | The etcd cluster version that APISIX is using, value will be `"unknown"` if the network (to etcd) is partitioned. |
|
||
|
| version | string | APISIX version. |
|
||
|
| hostname | string | Hostname of the machine/pod that APISIX is deployed. |
|
||
|
|
||
|
## Attributes
|
||
|
|
||
|
None
|
||
|
|
||
|
## API
|
||
|
|
||
|
None
|
||
|
|
||
|
## How to Enable
|
||
|
|
||
|
Just configure `server-info` in the plugin list of the configuration file `conf/config.yaml`.
|
||
|
|
||
|
```
|
||
|
plugins: # plugin list
|
||
|
- example-plugin
|
||
|
- limit-req
|
||
|
- node-status
|
||
|
- server-info
|
||
|
- jwt-auth
|
||
|
- zipkin
|
||
|
......
|
||
|
```
|
||
|
|
||
|
## How to customize the server info report configurations
|
||
|
|
||
|
We can change the report configurations in the `plugin_attr` section of `conf/config.yaml`.
|
||
|
|
||
|
| Name | Type | Default | Description |
|
||
|
| ------------ | ------ | -------- | -------------------------------------------------------------------- |
|
||
|
| report_interval | integer | 60 | the interval to report server info to etcd (unit: second, maximum: 3600, minimum: 60). |
|
||
|
| report_ttl | integer | 7200 | the live time for server info in etcd (unit: second, maximum: 86400, minimum: 3600). |
|
||
|
|
||
|
Here is an example, which modifies the `report_interval` to 10 minutes and sets the `report_ttl` to one hour.
|
||
|
|
||
|
```yaml
|
||
|
plugin_attr:
|
||
|
server-info:
|
||
|
report_interval: 600,
|
||
|
report_ttl: 3600
|
||
|
```
|
||
|
|
||
|
## Test Plugin
|
||
|
|
||
|
The APISIX Dashboard will collects server info in etcd, after enabling this plugin, you may try to check them through Dashboard.
|
||
|
|
||
|
## Disable Plugin
|
||
|
|
||
|
Remove `server-info` in the plugin list of configure file `conf/config.yaml`.
|
||
|
|
||
|
```
|
||
|
plugins: # plugin list
|
||
|
- example-plugin
|
||
|
- limit-req
|
||
|
- node-status
|
||
|
- jwt-auth
|
||
|
- zipkin
|
||
|
......
|
||
|
```
|