日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Influxdb安装、启动influxdb控制台、常用命令、Influx命令使用、Influx-sql使用举例、Influxdb的数据格式、Influxdb客户端工具

發布時間:2024/9/27 编程问答 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Influxdb安装、启动influxdb控制台、常用命令、Influx命令使用、Influx-sql使用举例、Influxdb的数据格式、Influxdb客户端工具 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

目錄:

  • Influxdb安裝 1
    1.1. Influxdb下載 2
    1.2. 解壓tar包 2
    1.3. 修改配置文件 2
    1.4. 配置文件參數說明 3
    1.5. 實際配置(主要是修改路徑和端口) 10
    1.6. 啟動 33
    1.7. 啟動influxdb控制臺,第一次啟動會較慢,耐心等待 34
  • 使用 34
    2.1. 常用命令 34
    2.2. Influx命令使用 36
    2.3. Influx-sql使用舉例 37
    2.4. Influxdb的數據格式 37
  • Influxdb客戶端工具 38
  • 1.Influxdb安裝

    https://blog.csdn.net/weixin_43786255/article/details/107133899

    1.1.Influxdb下載

    獲取tar包

    wget https://dl.influxdata.com/influxdb/releases/influxdb-1.8.0_linux_amd64.tar.gz

    1.2.解壓tar包

    cd /root/software tar -zxvf influxdb-1.8.0_linux_amd64.tar.gz -C /root/installed/cd /root/installed/ mv influxdb-1.8.0-1/ influxdb

    1.3.修改配置文件

    可執行文件路徑為:{influxdb目錄}/usr/bin
    安裝InfluxDB之后,在/usr/bin下會有如下幾個文件:

    influxd influxdb服務器 influx influxdb命令行客戶端 influx_inspect 查看工具 influx_stress 壓力測試工具 influx_tsm 數據庫轉換工具(將數據庫從b1或bz1格式轉換為tsm1格式)

    默認配置文件所在路徑:{influxdb目錄}/etc/influxdb/influxdb.conf

    mkdir -p /data/influxdb/conf cp /root/installed/influxdb/etc/influxdb/influxdb.conf /data/influxdb/conf/ cd /data/influxdb mkdir meta mkdir data mkdir wal

    然后修改配置:

    1.4.配置文件參數說明

    # reporting-disabled = false # 該選項用于上報influxdb的使用信息給InfluxData公司,默認值為false bind-address = "127.0.0.1:8085" # 備份恢復時使用,默認值為8088 ### [meta] [meta]dir = "/data/influxdb/meta" # meta數據存放目錄# retention-autocreate = true # 用于控制默認存儲策略,數據庫創建時,會自動生成autogen的存儲策略,默認值:true# logging-enabled = true # 是否開啟meta日志,默認值:true ### [data] [data]dir = "/data/influxdb/data" # 最終數據(TSM文件)存儲目錄wal-dir = "/data/influxdb/wal" # 預寫日志存儲目錄# wal-fsync-delay = "0s" # 在同步寫入之前等待的總時間,默認0s# index-version = "inmem" # 用于新碎片的切分索引的類型。# trace-logging-enabled = false # 跟蹤日志記錄在tsm引擎周圍提供了更詳細的輸出# query-log-enabled = true # 是否開啟tsm引擎查詢日志,默認值: true# Valid size suffixes are k, m, or g (case insensitive, 1024 = 1k).# cache-max-memory-size = "1g" # 用于限定shard最大值,大于該值時會拒絕寫入,默認值:1000MB,單位:byte# Valid size suffixes are k, m, or g (case insensitive, 1024 = 1k).# cache-snapshot-memory-size = "25m" # 用于設置快照大小,大于該值時數據會刷新到tsm文件,默認值:25MB,單位:byte# cache-snapshot-write-cold-duration = "10m" # tsm引擎 snapshot寫盤延遲,默認值:10Minute# compact-full-write-cold-duration = "4h" # tsm文件在壓縮前可以存儲的最大時間,默認值:4Hour# max-concurrent-compactions = 0 # 壓縮并發的最大數量,默認設置為0表示runtime.GOMAXPROCS(0)*50% ,否則以設置的非零值為準# Valid size suffixes are k, m, or g (case insensitive, 1024 = 1k).# max-index-log-file-size = "1m" # 限制索引日志文件大小# max-series-per-database = 1000000 # 限制數據庫的級數,該值為0時取消限制,默認值:1000000# max-values-per-tag = 100000 # 一個tag最大的value數,0取消限制,默認值:100000# tsm-use-madv-willneed = false # 如果為true,mmap的建議值MADV_WILLNEED會被提供給內核 ### [coordinator] [coordinator]# write-timeout = "10s" # 寫操作超時時間,默認值: 10s# max-concurrent-queries = 0 # 最大并發查詢數,0無限制,默認值: 0# query-timeout = "0s" # 查詢操作超時時間,0無限制,默認值:0s# log-queries-after = "0s" # 慢查詢超時時間,0無限制,默認值:0s# max-select-point = 0 # SELECT語句可以處理的最大點數(points),0無限制,默認值:0# max-select-series = 0 # SELECT語句可以處理的最大級數(series),0無限制,默認值:0# max-select-buckets = 0 # SELECT語句可以處理的最大"GROUP BY time()"的時間周期,0無限制,默認值:0 ### [retention] [retention]# enabled = true # 是否啟用該模塊,默認值 : true# check-interval = "30m" # 檢查時間間隔,默認值 :"30m" ### [shard-precreation] [shard-precreation]# enabled = true # 是否啟用該模塊,默認值 : true# check-interval = "10m" # 檢查時間間隔,默認值 :"10m"# advance-period = "30m" # 預創建分區的最大提前時間,默認值 :"30m" [monitor]# store-enabled = true # 是否啟用該模塊,默認值 :true# store-database = "_internal" # 默認數據庫:"_internal"# store-interval = "10s" # 統計間隔,默認值:"10s" ### [http] [http]# enabled = true # 是否啟用該模塊,默認值 :true# bind-address = ":8086" # 綁定地址,默認值 :":8086"# auth-enabled = false # 是否開啟認證,默認值:false# realm = "InfluxDB" # 配置JWT realm,默認值: "InfluxDB"# log-enabled = true # 是否開啟日志,默認值:true# suppress-write-log = false # 在啟用日志時是否抑制HTTP寫請求日志# access-log-path = "" # 當啟用HTTP請求日志時,該選項指定了路徑。如influxd不能訪問指定的路徑,它將記錄一個錯誤并將請求日志寫入stderr# write-tracing = false # 是否開啟寫操作日志,如果置成true,每一次寫操作都會打日志,默認值:false# pprof-enabled = true # 是否開啟pprof,默認值:true# debug-pprof-enabled = false # 是否開啟pprof,默認值:true# https-enabled = false # 是否開啟https ,默認值 :false# https-certificate = "/etc/ssl/influxdb.pem" # 設置https證書路徑,默認值:"/etc/ssl/influxdb.pem"# https-private-key = "" # 設置https私鑰,無默認值# shared-secret = "" # 用于JWT簽名的共享密鑰,無默認值# max-row-limit = 0 # 配置查詢返回最大行數,0無限制,默認值:0# max-connection-limit = 0 # 配置最大連接數,0無限制,默認值:0# unix-socket-enabled = false # 是否使用unix-socket,默認值:false# bind-socket = "/var/run/influxdb.sock" # unix-socket路徑,默認值:"/var/run/influxdb.sock"# max-body-size = 25000000 # 客戶端請求主體的最大值,以字節為單位。0無限制,默認值0# max-concurrent-write-limit = 0 # 并發處理的最大寫入次數,0無限制,默認值0# max-enqueued-write-limit = 0 # 排隊等待處理的最大數量,0無限制,默認值0# enqueued-write-timeout = 0 # 在隊列中等待處理的最長時間,0或者setting max-concurrent-write-limit=0無限制,默認值0 ### [ifql] [ifql]# enabled = true # 是否啟用該模塊,默認值 :true# log-enabled = true # 是否開啟日志,默認值:true# bind-address = ":8082" # ifql RPC服務使用的綁定地址默認是8082 ### [logging] [logging]# format = "auto" # 日志格式,默認是自動# level = "info" # 日志級別默認info# suppress-logo = false # 當程序啟動時,會抑制打印出來的logo輸出 ### [subscriber] [subscriber]# enabled = true # 是否啟用該模塊,默認值 :true# http-timeout = "30s" # http超時時間,默認值:"30s"# insecure-skip-verify = false # 是否允許不安全的證書# ca-certs = "" # 設置CA證書# write-concurrency = 40 # 設置并發數目,默認值:40# write-buffer-size = 1000 # 設置buffer大小,默認值:1000 ### [[graphite]] [[graphite]]# enabled = false # 是否啟用該模塊,默認值 :false# database = "graphite" # 數據庫名稱,默認值:"graphite"# retention-policy = "" # 存儲策略,無默認值# bind-address = ":2003" # 綁定地址,默認值:":2003"# protocol = "tcp" # 協議,默認值:"tcp"# consistency-level = "one" # 一致性級別,默認值:"one# batch-size = 5000 # 批量size,默認值:5000# batch-pending = 10 # 配置在內存中等待的batch數,默認值:10# batch-timeout = "1s" # 超時時間,默認值:"1s"# udp-read-buffer = 0 # udp讀取buffer的大小,0表示使用操作系統提供的值,如果超過操作系統的默認配置則會出錯。 該配置的默認值:0# separator = "." # 多個measurement間的連接符,默認值: "."# tags = ["region=us-east", "zone=1c"] # 將被添加到所有指標的默認標簽。這些可以在模板級別上覆蓋或者從指標中提取的標簽# templates = [# "*.app env.service.resource.measurement",# # Default template# "server.*",# ] ### [collectd] [[collectd]]# enabled = false # 是否啟用該模塊,默認值 :false# bind-address = ":25826" # 綁定地址,默認值: ":25826"# database = "collectd" # 數據庫名稱,默認值:"collectd"# retention-policy = "" # 存儲策略,無默認值# typesdb = "/usr/local/share/collectd" # 路徑,默認值:"/usr/share/collectd/types.db"# security-level = "none" # 安全級別# auth-file = "/etc/collectd/auth_file"# batch-size = 5000 # 從緩存中批量獲取數據的量,默認值:5000# batch-pending = 10 # 可能在內存中等待的批次的數量,默認值:10# batch-timeout = "10s" # 即使沒有達到緩沖區的限制,至少要刷新一下,默認值:"10s"# read-buffer = 0 # udp讀取buffer的大小,0表示使用操作系統提供的值,如果超過操作系統的默認配置則會出錯。默認值:0# parse-multivalue-plugin = "split" # 兩種處理方式split和join,split會分到不同的表中,join會將記錄作為一個單獨的記錄處理。默認是split ### [opentsdb] [[opentsdb]]# enabled = false # 是否啟用該模塊,默認值 :false# bind-address = ":4242" # 綁定地址,默認值:":4242"# database = "opentsdb" # 默認數據庫:"opentsdb"# retention-policy = "" # 存儲策略,無默認值# consistency-level = "one" # 一致性級別,默認值:"one"# tls-enabled = false # 是否開啟tls,默認值:false# certificate= "/etc/ssl/influxdb.pem" # 證書路徑,默認值:"/etc/ssl/influxdb.pem"# log-point-errors = true # 出錯時是否記錄日志,默認值:true# batch-size = 1000 # 從緩存中批量獲取數據的量,默認值:1000# batch-pending = 5 # 可能在內存中等待的批次的數量,默認值:5# batch-timeout = "1s" # 即使沒有達到緩沖區的限制,至少要刷新一下,默認值:"1s" ### [[udp]] [[udp]]# enabled = false # 是否啟用該模塊,默認值 :false# bind-address = ":8089" # 綁定地址,默認值:":8089"# database = "udp" # 數據庫名稱,默認值:"udp"# retention-policy = "" # 存儲策略,無默認值# precision = "" # 接收點的時間點的精度("" or "n", "u", "ms", "s", "m", "h")# batch-size = 5000 # 從緩存中批量獲取數據的量,默認值:5000# batch-pending = 10 # 可能在內存中等待的批次的數量,默認值:10# batch-timeout = "1s" # 即使沒有達到緩沖區的限制,至少要刷新一下,默認值:"1s"# read-buffer = 0 # udp讀取buffer的大小,0表示使用操作系統提供的值,如果超過操作系統的默認配置則會出錯。 該配置的默認值:0  ### [continuous_queries] [continuous_queries]# enabled = true # 是否啟用該模塊,默認值 :true# log-enabled = true # 是否開啟日志,默認值:true# query-stats-enabled = false # 控制查詢是否被記錄到自我監控數據存儲中# run-interval = "1s" # 時間間隔,默認值:"1s" ### [tls] [tls]# ciphers = [# "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305",# "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",# ]# min-version = "tls1.2"# max-version = "tls1.2"

    1.5.實際配置(主要是修改路徑和端口)

    ### Welcome to the InfluxDB configuration file.# The values in this file override the default values used by the system if # a config option is not specified. The commented out lines are the configuration # field and the default value used. Uncommenting a line and changing the value # will change the value used at runtime when the process is restarted.# Once every 24 hours InfluxDB will report usage data to usage.influxdata.com # The data includes a random ID, os, arch, version, the number of series and other # usage data. No data from user databases is ever transmitted. # Change this option to true to disable reporting. # reporting-disabled = false# Bind address to use for the RPC service for backup and restore. # bind-address = ":8088"bind-address = ":8085"### ### [meta] ### ### Controls the parameters for the Raft consensus group that stores metadata ### about the InfluxDB cluster. ###[meta]# Where the metadata/raft database is storeddir = "/data/influxdb/meta"# Automatically create a default retention policy when creating a database.# retention-autocreate = true# If log messages are printed for the meta service# logging-enabled = true### ### [data] ### ### Controls where the actual shard data for InfluxDB lives and how it is ### flushed from the WAL. "dir" may need to be changed to a suitable place ### for your system, but the WAL settings are an advanced configuration. The ### defaults should work for most systems. ###[data]# The directory where the TSM storage engine stores TSM files.dir = "/data/influxdb/data"# The directory where the TSM storage engine stores WAL files.wal-dir = "/data/influxdb/wal"# The amount of time that a write will wait before fsyncing. A duration# greater than 0 can be used to batch up multiple fsync calls. This is useful for slower# disks or when WAL write contention is seen. A value of 0s fsyncs every write to the WAL.# Values in the range of 0-100ms are recommended for non-SSD disks.# wal-fsync-delay = "0s"# The type of shard index to use for new shards. The default is an in-memory index that is# recreated at startup. A value of "tsi1" will use a disk based index that supports higher# cardinality datasets.# index-version = "inmem"# Trace logging provides more verbose output around the tsm engine. Turning# this on can provide more useful output for debugging tsm engine issues.# trace-logging-enabled = false# Whether queries should be logged before execution. Very useful for troubleshooting, but will# log any sensitive data contained within a query.# query-log-enabled = true# Validates incoming writes to ensure keys only have valid unicode characters.# This setting will incur a small overhead because every key must be checked.# validate-keys = false# Settings for the TSM engine# CacheMaxMemorySize is the maximum size a shard's cache can# reach before it starts rejecting writes.# Valid size suffixes are k, m, or g (case insensitive, 1024 = 1k).# Values without a size suffix are in bytes.# cache-max-memory-size = "1g"# CacheSnapshotMemorySize is the size at which the engine will# snapshot the cache and write it to a TSM file, freeing up memory# Valid size suffixes are k, m, or g (case insensitive, 1024 = 1k).# Values without a size suffix are in bytes.# cache-snapshot-memory-size = "25m"# CacheSnapshotWriteColdDuration is the length of time at# which the engine will snapshot the cache and write it to# a new TSM file if the shard hasn't received writes or deletes# cache-snapshot-write-cold-duration = "10m"# CompactFullWriteColdDuration is the duration at which the engine# will compact all TSM files in a shard if it hasn't received a# write or delete# compact-full-write-cold-duration = "4h"# The maximum number of concurrent full and level compactions that can run at one time. A# value of 0 results in 50% of runtime.GOMAXPROCS(0) used at runtime. Any number greater# than 0 limits compactions to that value. This setting does not apply# to cache snapshotting.# max-concurrent-compactions = 0# CompactThroughput is the rate limit in bytes per second that we# will allow TSM compactions to write to disk. Note that short bursts are allowed# to happen at a possibly larger value, set by CompactThroughputBurst# compact-throughput = "48m"# CompactThroughputBurst is the rate limit in bytes per second that we# will allow TSM compactions to write to disk.# compact-throughput-burst = "48m"# If true, then the mmap advise value MADV_WILLNEED will be provided to the kernel with respect to# TSM files. This setting has been found to be problematic on some kernels, and defaults to off.# It might help users who have slow disks in some cases.# tsm-use-madv-willneed = false# Settings for the inmem index# The maximum series allowed per database before writes are dropped. This limit can prevent# high cardinality issues at the database level. This limit can be disabled by setting it to# 0.# max-series-per-database = 1000000# The maximum number of tag values per tag that are allowed before writes are dropped. This limit# can prevent high cardinality tag values from being written to a measurement. This limit can be# disabled by setting it to 0.# max-values-per-tag = 100000# Settings for the tsi1 index# The threshold, in bytes, when an index write-ahead log file will compact# into an index file. Lower sizes will cause log files to be compacted more# quickly and result in lower heap usage at the expense of write throughput.# Higher sizes will be compacted less frequently, store more series in-memory,# and provide higher write throughput.# Valid size suffixes are k, m, or g (case insensitive, 1024 = 1k).# Values without a size suffix are in bytes.# max-index-log-file-size = "1m"# The size of the internal cache used in the TSI index to store previously# calculated series results. Cached results will be returned quickly from the cache rather# than needing to be recalculated when a subsequent query with a matching tag key/value# predicate is executed. Setting this value to 0 will disable the cache, which may# lead to query performance issues.# This value should only be increased if it is known that the set of regularly used# tag key/value predicates across all measurements for a database is larger than 100. An# increase in cache size may lead to an increase in heap usage.series-id-set-cache-size = 100### ### [coordinator] ### ### Controls the clustering service configuration. ###[coordinator]# The default time a write request will wait until a "timeout" error is returned to the caller.# write-timeout = "10s"# The maximum number of concurrent queries allowed to be executing at one time. If a query is# executed and exceeds this limit, an error is returned to the caller. This limit can be disabled# by setting it to 0.# max-concurrent-queries = 0# The maximum time a query will is allowed to execute before being killed by the system. This limit# can help prevent run away queries. Setting the value to 0 disables the limit.# query-timeout = "0s"# The time threshold when a query will be logged as a slow query. This limit can be set to help# discover slow or resource intensive queries. Setting the value to 0 disables the slow query logging.# log-queries-after = "0s"# The maximum number of points a SELECT can process. A value of 0 will make# the maximum point count unlimited. This will only be checked every second so queries will not# be aborted immediately when hitting the limit.# max-select-point = 0# The maximum number of series a SELECT can run. A value of 0 will make the maximum series# count unlimited.# max-select-series = 0# The maximum number of group by time bucket a SELECT can create. A value of zero will max the maximum# number of buckets unlimited.# max-select-buckets = 0### ### [retention] ### ### Controls the enforcement of retention policies for evicting old data. ###[retention]# Determines whether retention policy enforcement enabled.# enabled = true# The interval of time when retention policy enforcement checks run.# check-interval = "30m"### ### [shard-precreation] ### ### Controls the precreation of shards, so they are available before data arrives. ### Only shards that, after creation, will have both a start- and end-time in the ### future, will ever be created. Shards are never precreated that would be wholly ### or partially in the past.[shard-precreation]# Determines whether shard pre-creation service is enabled.# enabled = true# The interval of time when the check to pre-create new shards runs.# check-interval = "10m"# The default period ahead of the endtime of a shard group that its successor# group is created.# advance-period = "30m"### ### Controls the system self-monitoring, statistics and diagnostics. ### ### The internal database for monitoring data is created automatically if ### if it does not already exist. The target retention within this database ### is called 'monitor' and is also created with a retention period of 7 days ### and a replication factor of 1, if it does not exist. In all cases the ### this retention policy is configured as the default for the database.[monitor]# Whether to record statistics internally.# store-enabled = true# The destination database for recorded statistics# store-database = "_internal"# The interval at which to record statistics# store-interval = "10s"### ### [http] ### ### Controls how the HTTP endpoints are configured. These are the primary ### mechanism for getting data into and out of InfluxDB. ###[http]# Determines whether HTTP endpoint is enabled.# enabled = true# Determines whether the Flux query endpoint is enabled.# flux-enabled = false# Determines whether the Flux query logging is enabled.# flux-log-enabled = false# The bind address used by the HTTP service.# bind-address = ":8086"# Determines whether user authentication is enabled over HTTP/HTTPS.# auth-enabled = false# The default realm sent back when issuing a basic auth challenge.# realm = "InfluxDB"# Determines whether HTTP request logging is enabled.# log-enabled = true# Determines whether the HTTP write request logs should be suppressed when the log is enabled.# suppress-write-log = false# When HTTP request logging is enabled, this option specifies the path where# log entries should be written. If unspecified, the default is to write to stderr, which# intermingles HTTP logs with internal InfluxDB logging.## If influxd is unable to access the specified path, it will log an error and fall back to writing# the request log to stderr.# access-log-path = ""# Filters which requests should be logged. Each filter is of the pattern NNN, NNX, or NXX where N is# a number and X is a wildcard for any number. To filter all 5xx responses, use the string 5xx.# If multiple filters are used, then only one has to match. The default is to have no filters which# will cause every request to be printed.# access-log-status-filters = []# Determines whether detailed write logging is enabled.# write-tracing = false# Determines whether the pprof endpoint is enabled. This endpoint is used for# troubleshooting and monitoring.# pprof-enabled = true# Enables authentication on pprof endpoints. Users will need admin permissions# to access the pprof endpoints when this setting is enabled. This setting has# no effect if either auth-enabled or pprof-enabled are set to false.# pprof-auth-enabled = false# Enables a pprof endpoint that binds to localhost:6060 immediately on startup.# This is only needed to debug startup issues.# debug-pprof-enabled = false# Enables authentication on the /ping, /metrics, and deprecated /status# endpoints. This setting has no effect if auth-enabled is set to false.# ping-auth-enabled = false# Determines whether HTTPS is enabled.# https-enabled = false# The SSL certificate to use when HTTPS is enabled.# https-certificate = "/etc/ssl/influxdb.pem"# Use a separate private key location.# https-private-key = ""# The JWT auth shared secret to validate requests using JSON web tokens.# shared-secret = ""# The default chunk size for result sets that should be chunked.# max-row-limit = 0# The maximum number of HTTP connections that may be open at once. New connections that# would exceed this limit are dropped. Setting this value to 0 disables the limit.# max-connection-limit = 0# Enable http service over unix domain socket# unix-socket-enabled = false# The path of the unix domain socket.# bind-socket = "/var/run/influxdb.sock"# The maximum size of a client request body, in bytes. Setting this value to 0 disables the limit.# max-body-size = 25000000# The maximum number of writes processed concurrently.# Setting this to 0 disables the limit.# max-concurrent-write-limit = 0# The maximum number of writes queued for processing.# Setting this to 0 disables the limit.# max-enqueued-write-limit = 0# The maximum duration for a write to wait in the queue to be processed.# Setting this to 0 or setting max-concurrent-write-limit to 0 disables the limit.# enqueued-write-timeout = 0### ### [logging] ### ### Controls how the logger emits logs to the output. ###[logging]# Determines which log encoder to use for logs. Available options# are auto, logfmt, and json. auto will use a more a more user-friendly# output format if the output terminal is a TTY, but the format is not as# easily machine-readable. When the output is a non-TTY, auto will use# logfmt.# format = "auto"# Determines which level of logs will be emitted. The available levels# are error, warn, info, and debug. Logs that are equal to or above the# specified level will be emitted.# level = "info"# Suppresses the logo output that is printed when the program is started.# The logo is always suppressed if STDOUT is not a TTY.# suppress-logo = false### ### [subscriber] ### ### Controls the subscriptions, which can be used to fork a copy of all data ### received by the InfluxDB host. ###[subscriber]# Determines whether the subscriber service is enabled.# enabled = true# The default timeout for HTTP writes to subscribers.# http-timeout = "30s"# Allows insecure HTTPS connections to subscribers. This is useful when testing with self-# signed certificates.# insecure-skip-verify = false# The path to the PEM encoded CA certs file. If the empty string, the default system certs will be used# ca-certs = ""# The number of writer goroutines processing the write channel.# write-concurrency = 40# The number of in-flight writes buffered in the write channel.# write-buffer-size = 1000### ### [[graphite]] ### ### Controls one or many listeners for Graphite data. ###[[graphite]]# Determines whether the graphite endpoint is enabled.# enabled = false# database = "graphite"# retention-policy = ""# bind-address = ":2003"# protocol = "tcp"# consistency-level = "one"# These next lines control how batching works. You should have this enabled# otherwise you could get dropped metrics or poor performance. Batching# will buffer points in memory if you have many coming in.# Flush if this many points get buffered# batch-size = 5000# number of batches that may be pending in memory# batch-pending = 10# Flush at least this often even if we haven't hit buffer limit# batch-timeout = "1s"# UDP Read buffer size, 0 means OS default. UDP listener will fail if set above OS max.# udp-read-buffer = 0### This string joins multiple matching 'measurement' values providing more control over the final measurement name.# separator = "."### Default tags that will be added to all metrics. These can be overridden at the template level### or by tags extracted from metric# tags = ["region=us-east", "zone=1c"]### Each template line requires a template pattern. It can have an optional### filter before the template and separated by spaces. It can also have optional extra### tags following the template. Multiple tags should be separated by commas and no spaces### similar to the line protocol format. There can be only one default template.# templates = [# "*.app env.service.resource.measurement",# # Default template# "server.*",# ]### ### [collectd] ### ### Controls one or many listeners for collectd data. ###[[collectd]]# enabled = false# bind-address = ":25826"# database = "collectd"# retention-policy = ""## The collectd service supports either scanning a directory for multiple types# db files, or specifying a single db file.# typesdb = "/usr/local/share/collectd"## security-level = "none"# auth-file = "/etc/collectd/auth_file"# These next lines control how batching works. You should have this enabled# otherwise you could get dropped metrics or poor performance. Batching# will buffer points in memory if you have many coming in.# Flush if this many points get buffered# batch-size = 5000# Number of batches that may be pending in memory# batch-pending = 10# Flush at least this often even if we haven't hit buffer limit# batch-timeout = "10s"# UDP Read buffer size, 0 means OS default. UDP listener will fail if set above OS max.# read-buffer = 0# Multi-value plugins can be handled two ways.# "split" will parse and store the multi-value plugin data into separate measurements# "join" will parse and store the multi-value plugin as a single multi-value measurement.# "split" is the default behavior for backward compatibility with previous versions of influxdb.# parse-multivalue-plugin = "split" ### ### [opentsdb] ### ### Controls one or many listeners for OpenTSDB data. ###[[opentsdb]]# enabled = false# bind-address = ":4242"# database = "opentsdb"# retention-policy = ""# consistency-level = "one"# tls-enabled = false# certificate= "/etc/ssl/influxdb.pem"# Log an error for every malformed point.# log-point-errors = true# These next lines control how batching works. You should have this enabled# otherwise you could get dropped metrics or poor performance. Only points# metrics received over the telnet protocol undergo batching.# Flush if this many points get buffered# batch-size = 1000# Number of batches that may be pending in memory# batch-pending = 5# Flush at least this often even if we haven't hit buffer limit# batch-timeout = "1s"### ### [[udp]] ### ### Controls the listeners for InfluxDB line protocol data via UDP. ###[[udp]]# enabled = false# bind-address = ":8089"# database = "udp"# retention-policy = ""# InfluxDB precision for timestamps on received points ("" or "n", "u", "ms", "s", "m", "h")# precision = ""# These next lines control how batching works. You should have this enabled# otherwise you could get dropped metrics or poor performance. Batching# will buffer points in memory if you have many coming in.# Flush if this many points get buffered# batch-size = 5000# Number of batches that may be pending in memory# batch-pending = 10# Will flush at least this often even if we haven't hit buffer limit# batch-timeout = "1s"# UDP Read buffer size, 0 means OS default. UDP listener will fail if set above OS max.# read-buffer = 0### ### [continuous_queries] ### ### Controls how continuous queries are run within InfluxDB. ###[continuous_queries]# Determines whether the continuous query service is enabled.# enabled = true# Controls whether queries are logged when executed by the CQ service.# log-enabled = true# Controls whether queries are logged to the self-monitoring data store.# query-stats-enabled = false# interval for how often continuous queries will be checked if they need to run# run-interval = "1s"### ### [tls] ### ### Global configuration settings for TLS in InfluxDB. ###[tls]# Determines the available set of cipher suites. See https://golang.org/pkg/crypto/tls/#pkg-constants# for a list of available ciphers, which depends on the version of Go (use the query# SHOW DIAGNOSTICS to see the version of Go used to build InfluxDB). If not specified, uses# the default settings from Go's crypto/tls package.# ciphers = [# "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305",# "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305",# ]# Minimum version of the tls protocol that will be negotiated. If not specified, uses the# default settings from Go's crypto/tls package.# min-version = "tls1.2"# Maximum version of the tls protocol that will be negotiated. If not specified, uses the# default settings from Go's crypto/tls package.# max-version = "tls1.3"

    其中,修改端口的是:

    bind-address = "127.0.0.1:8085"

    1.6.啟動

    cd /root/installed/influxdb/usr/bin nohup ./influxd -config /data/influxdb/conf/influxdb.conf > influxdb.log 2>&1 &

    啟動日志如下:

    [root@node1 bin]# pwd /root/installed/influxdb/usr/bin [root@node1 bin]# ls influx influxd influxdb.log influx_inspect influx_stress influx_tsm [root@node1 bin]# tail -f influxdb.log ts=2021-08-10T09:40:34.625789Z lvl=info msg="Starting precreation service" log_id=0Vsro8Hl000 service=shard-precreation check_interval=10m advance_period=30m ts=2021-08-10T09:40:34.626089Z lvl=info msg="Starting snapshot service" log_id=0Vsro8Hl000 service=snapshot ts=2021-08-10T09:40:34.627613Z lvl=info msg="Starting continuous query service" log_id=0Vsro8Hl000 service=continuous_querier ts=2021-08-10T09:40:34.626355Z lvl=info msg="Storing statistics" log_id=0Vsro8Hl000 service=monitor db_instance=_internal db_rp=monitor interval=10s ts=2021-08-10T09:40:34.627886Z lvl=info msg="Starting HTTP service" log_id=0Vsro8Hl000 service=httpd authentication=false ts=2021-08-10T09:40:34.628627Z lvl=info msg="opened HTTP access log" log_id=0Vsro8Hl000 service=httpd path=stderr ts=2021-08-10T09:40:34.628868Z lvl=info msg="Listening on HTTP" log_id=0Vsro8Hl000 service=httpd addr=[::]:8086 https=false ts=2021-08-10T09:40:34.629726Z lvl=info msg="Starting retention policy enforcement service" log_id=0Vsro8Hl000 service=retention check_interval=30m ts=2021-08-10T09:40:34.629991Z lvl=info msg="Listening for signals" log_id=0Vsro8Hl000 ts=2021-08-10T09:40:34.630847Z lvl=info msg="Sending usage statistics to usage.influxdata.com" log_id=0Vsro8Hl000

    1.7.啟動influxdb控制臺,第一次啟動會較慢,耐心等待

    [root@node1 bin]# ./influx -port 8085 Connected to http://localhost:8085 version 1.8.0 InfluxDB shell version: 1.8.0 > create user "tuzq" with password '123456' with all privileges > show users user admin ---- ----- tuzq true >

    2.使用

    2.1.常用命令

    [root@node1 bin]# ./influx -help Usage of influx:-versionDisplay the version and exit.-path-prefix 'url path'Path that follows the host and port-host 'host name'Host to connect to.-port 'port #'Port to connect to.-socket 'unix domain socket'Unix socket to connect to.-database 'database name'Database to connect to the server.-password 'password'Password to connect to the server. Leaving blank will prompt for password (--password '').-username 'username'Username to connect to the server.-sslUse https for requests.-unsafeSslSet this when connecting to the cluster using https and not use SSL verification.-execute 'command'Execute command and quit.-type 'influxql|flux'Type specifies the query language for executing commands or when invoking the REPL.-format 'json|csv|column'Format specifies the format of the server responses: json, csv, or column.-precision 'rfc3339|h|m|s|ms|u|ns'Precision specifies the format of the timestamp: rfc3339, h, m, s, ms, u or ns.-consistency 'any|one|quorum|all'Set write consistency level: any, one, quorum, or all-prettyTurns on pretty print for the json format.-importImport a previous database export from file-ppsHow many points per second the import will allow. By default it is zero and will not throttle importing.-pathPath to file to import-compressedSet to true if the import file is compressedExamples:# Use influx in a non-interactive mode to query the database "metrics" and pretty print json:$ influx -database 'metrics' -execute 'select * from cpu' -format 'json' -pretty# Connect to a specific database on startup and set database context:$ influx -database 'metrics' -host 'localhost' -port '8086'

    2.2.Influx命令使用

    Influx是連接influxdb的一個CLI程序,在本地成功安裝influxdb后,influxdb啟動,influx命令就可以直接使用。Influxdb默認在8086端口運行。Influx cli默認使用localhost:8085連接。可以使用-host和-port選項,連接到其他機器或者端口。

    [root@node1 bin]# ./influx -port 8085 Connected to http://localhost:8085 version 1.8.0 InfluxDB shell version: 1.8.0 >

    2.3.Influx-sql使用舉例

    Influx命令連接數據庫后,可以使用類sql語句查詢數據

    命令解釋
    CREATE DATABASE database_name建立數據庫
    SHOW DATABASES查詢所有數據庫
    USE database_nameUSE database_name
    INSERT cpu,host=host_name,region=cn value=66插數據入cpu measurement,標簽host=host_name,region=cn, field是value=66
    SELECT “host”, “region”, “value” FROM “cpu”從cpu measurement查詢數據
    SELECT * FROM “cpu”從cpu measurement查詢所有數據

    2.4.Influxdb的數據格式

    Influxdb是一個時序數據庫,其保存metric的在某一系列時間點的狀態。這些點狀態包含時間戳,一個所謂的“measurement”名稱,至少一個稱為filed的鍵值對,以及0到多個標簽(如 host=bigdata01)。

    在influxdb中可以把measurement看為關系數據庫中的table,tag和field是其中的列。其中Tag都加了索引、field不加。和關系數據庫不同的是,不用預先定義schema,沒有value的點不會被保存。其格式如下:

    <measurement>[,<tag-key>=<tag-value>...] <field-key>=<field-value>[,<field2-key>=<field2-value>...] [unix-nano-timestamp]

    舉例:

    cpu,host=bigdata01,region=cn value=66payment,device=mobile,product=Notepad,method=credit billed=88,licenses=2i 1434067469156329323

    3.Influxdb客戶端工具

    下載InfluxDBStudio-0.2.0,解壓,然后點擊:InfluxDBStudio.exe , 配置好參數配置:

    示例:

    總結

    以上是生活随笔為你收集整理的Influxdb安装、启动influxdb控制台、常用命令、Influx命令使用、Influx-sql使用举例、Influxdb的数据格式、Influxdb客户端工具的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

    在线日韩精品视频 | av片一区二区 | 亚洲91视频 | 久久午夜色播影院免费高清 | 公与妇乱理三级xxx 在线观看视频在线观看 | 中文字幕免费 | 亚洲a资源 | 亚洲三级影院 | av成人黄色 | 精品国产免费人成在线观看 | 一区二区 久久 | 久久久精品午夜 | 黄色影院在线播放 | 一区二区三区在线影院 | 国产黄色特级片 | 亚洲天天摸日日摸天天欢 | 97在线观看免费观看 | 精品国产亚洲在线 | 一区二区三区高清在线 | 婷婷爱五月天 | 色网站视频 | 日韩免费一区二区三区 | 美女视频永久黄网站免费观看国产 | 探花国产在线 | 美女国内精品自产拍在线播放 | 色全色在线资源网 | 国产伦精品一区二区三区照片91 | 亚洲jizzjizz日本少妇 | 天天干,天天射,天天操,天天摸 | 欧美一区二区三区不卡 | 在线观看一级 | 在线观看香蕉视频 | 91九色蝌蚪国产 | 亚洲成人免费 | 亚洲国产精品电影 | 国产青草视频在线观看 | 国产99一区视频免费 | 亚洲色综合 | 欧美日韩午夜在线 | 人人舔人人射 | 久久午夜影院 | 日本韩国欧美在线观看 | 91视频在线看 | 久久艹中文字幕 | 欧美国产一区二区 | 精品黄色片 | 国产激情久久久 | 精品一区二区免费视频 | 日韩精品大片 | 国产手机av | 久久久久国产一区二区 | 91xav| 国产成人精品一区二区三区福利 | 黄色免费网站下载 | 国产日韩精品在线观看 | 国产一区二区不卡视频 | 婷婷综合伊人 | 中文字幕亚洲精品在线观看 | 偷拍精品一区二区三区 | 人人狠狠综合久久亚洲婷 | 中文字幕字幕中文 | av网站在线免费观看 | 成人免费在线视频观看 | 国产九九在线 | 99久高清在线观看视频99精品热在线观看视频 | 99热这里是精品 | 国产精品免费观看国产网曝瓜 | 狠狠色噜噜狠狠 | 欧美日韩一区二区三区不卡 | 美女又爽又黄 | 西西大胆啪啪 | 精品久久久影院 | 久久久久久久久电影 | 免费久久99精品国产婷婷六月 | 九九九国产| 国产 色 | 999国内精品永久免费视频 | 亚洲高清激情 | 国产精品对白一区二区三区 | 揉bbb玩bbb少妇bbb | 中文字幕在线观看不卡 | av中文字幕日韩 | 18性欧美xxxⅹ性满足 | 一区 二区 精品 | 日韩99热 | 国产视频中文字幕在线观看 | 在线小视频 | 人人爱人人做人人爽 | av在线播放亚洲 | 婷婷午夜天 | 超碰97人| 亚洲精品美女久久 | 日韩videos高潮hd | 国产精品久久久久影院 | 亚洲六月丁香色婷婷综合久久 | 97国产精品 | 国产亚洲精品久久久久久大师 | 福利视频在线看 | 狠狠色伊人亚洲综合网站野外 | 日韩一级电影在线 | 黄色成人91| 亚洲男男gaygay无套 | 免费看久久 | 国产午夜精品在线 | 欧美日韩视频一区二区三区 | 成 人 黄 色 视频免费播放 | 日本久久久久久久久久久 | 一区二区三区在线免费观看视频 | 九九九九精品九九九九 | 日日摸日日碰 | 美女一二三区 | 激情av五月婷婷 | 一区二区三区电影大全 | 久久av在线播放 | 亚洲伦理一区二区 | 日韩国产精品久久久久久亚洲 | av电影免费看 | 激情图片qvod | 午夜精品视频福利 | 日日碰狠狠添天天爽超碰97久久 | 99精品黄色| 欧洲一区二区三区精品 | 成人免费观看网址 | 国产成在线观看免费视频 | 91九色国产视频 | 成人在线视频论坛 | 免费v片| 欧美极品少妇xxxx | 99久久影院| 亚洲国产精品第一区二区 | 国产精品资源在线 | 精品一区二区三区久久久 | 嫩模bbw搡bbbb搡bbbb | 五月综合婷 | 欧美色综合天天久久综合精品 | www免费| 亚洲人片在线观看 | 九九免费在线观看 | 日本黄色大片儿 | 国产成人精品综合久久久久99 | 美女网站视频一区 | 久久久麻豆精品一区二区 | www夜夜| 亚洲综合在线五月 | 日韩在线观看影院 | 久久久久久久久久久久亚洲 | 成人免费网视频 | avhd高清在线谜片 | 日韩视频中文字幕在线观看 | 韩日电影在线免费看 | 一 级 黄 色 片免费看的 | 日韩免费观看视频 | 久久精品一区二区国产 | 国产精品久久久99 | 99色国产| 免费福利视频网站 | 久久免费视频国产 | 亚洲码国产日韩欧美高潮在线播放 | 国产精品大全 | 国产专区视频在线 | av再线观看 | 欧美视屏一区二区 | 国产麻豆精品在线观看 | 天天射天天干天天操 | 国产精品成人自产拍在线观看 | 国产精品一区二区电影 | 国产亚洲精品久久久久久网站 | 欧美日韩在线观看一区二区三区 | 插综合网 | 成人黄色大片 | 精品一区二区三区久久 | 久草在线免费新视频 | 亚洲成人av在线 | 一级成人网 | 久久一区二区三区国产精品 | 一区二区三区在线影院 | 久久婷婷综合激情 | 亚洲高清在线精品 | 亚洲国产精品一区二区久久hs | 久久国际影院 | 欧美日韩国产在线观看 | 中文在线a√在线 | 国产精品入口66mio女同 | 日韩av一区二区三区在线观看 | 国产高清在线看 | 精品久久久久久一区二区里番 | 午夜精品久久久久久中宇69 | 亚洲精品97 | 成人毛片100免费观看 | 国内精品毛片 | 国产免费亚洲 | 亚av在线 | 激情综合婷婷 | 国产成人精品av在线 | 五月婷婷影院 | 久久国产片 | 一区二区中文字幕在线 | 麻豆视频一区二区 | 日韩免费高清在线 | 国产aaa免费视频 | 人人干在线观看 | 国产精品欧美精品 | 天天射综合网站 | 国产精品夜夜夜一区二区三区尤 | 久久久久久草 | 久久精品欧美一 | 日韩在线首页 | 色99色| 亚洲黄色大片 | 国产国语在线 | 久久免费成人精品视频 | 国产一级免费在线 | 久久理论电影 | 久久这里只有精品首页 | 婷婷色在线播放 | 国产精品精品久久久久久 | 免费看三级 | 国产免费不卡 | 国产精品视频区 | 亚洲精品91天天久久人人 | 成人午夜在线电影 | 欧美va天堂va视频va在线 | 国产精品资源 | 免费在线观看中文字幕 | 五月天九九 | 国产91免费看 | 夜夜骑天天操 | 国产成人福利在线观看 | 五月婷综合| 久久精品成人热国产成 | 国产精品欧美久久久久天天影视 | 国产一区二区精 | 成人h视频 | 在线免费日韩 | 最近中文字幕完整视频高清1 | 99色网站 | av怡红院| 久日视频| 日韩肉感妇bbwbbwbbw | 美女视频久久久 | 久久久久免费网站 | 国产成人精品一区二区三区免费 | 五月天久久久久久 | 精品v亚洲v欧美v高清v | 天天操天天舔天天爽 | 99久热精品 | 91综合视频在线观看 | 国内精品久久久久国产 | 香蕉手机在线 | 一区二区三区四区五区六区 | 91av网站在线观看 | 97超碰国产在线 | 91福利试看| 亚洲一级二级 | 97碰碰精品嫩模在线播放 | 欧美韩日精品 | 激情视频国产 | 日韩一区二区三区免费视频 | 综合久久综合久久 | 97国产超碰 | 公与妇乱理三级xxx 在线观看视频在线观看 | 91丨九色丨高潮 | 黄色小说免费观看 | 99久久久久久| 五月天色网站 | 亚洲国产成人在线观看 | 美女久久网站 | 视频在线观看日韩 | 久 久久影院 | 夜又临在线观看 | 国产无套视频 | 天天干天天操 | 国产成人一区二区啪在线观看 | 91天堂在线观看 | 国产日韩欧美精品在线观看 | 午夜国产一区二区三区四区 | 色妞色视频一区二区三区四区 | 久草香蕉在线视频 | 国产 中文 日韩 欧美 | 日韩在线免费高清视频 | 在线观看黄网 | 丁香 婷婷 激情 | 日韩一二三区不卡 | 免费久久网 | 九九99靖品 | 免费观看的黄色片 | 欧美成人a在线 | 欧美久久久 | 精品久久久久久久久久岛国gif | 欧美在线观看视频免费 | 欧美精品中文在线免费观看 | 99久久99视频 | 国产精品午夜免费福利视频 | 在线免费黄色av | 国产一级在线视频 | 国产成人久久精品77777 | 少妇按摩av | 免费大片av| 国产高清视频在线播放 | 天天色 天天 | 综合网中文字幕 | 操操操人人 | 日韩av电影网站在线观看 | 99欧美视频 | 成人手机在线视频 | 就色干综合 | 色婷婷综合久久久久中文字幕1 | 久久综合九色综合久久久精品综合 | 精品成人免费 | 久久国产精品免费视频 | 91 在线视频播放 | 亚洲干视频在线观看 | 成人97人人超碰人人99 | 在线观看黄色的网站 | 国产视频在线看 | 亚洲综合精品视频 | 玖玖视频网 | 狠狠插狠狠操 | 久久久在线 | 91精品国产麻豆国产自产影视 | 久久 在线| 97成人资源 | 亚洲第一区在线播放 | 欧美日韩在线观看一区二区三区 | 久久国产精品小视频 | 久久久久久免费视频 | 蜜桃av观看| 免费日韩视频 | 小草av在线播放 | 亚洲成人av电影在线 | 日韩午夜电影网 | 日韩电影一区二区在线观看 | 久久久久亚洲国产 | 91九色视频在线播放 | www.久草.com | 米奇狠狠狠888 | 狠狠干狠狠插 | 亚洲欧美经典 | 久久久在线免费观看 | 国产高清精品在线 | 国产精品午夜在线观看 | 在线看日韩 | 九九免费在线看完整版 | 99久久99久久免费精品蜜臀 | 又爽又黄又刺激的视频 | 麻豆国产在线播放 | www.av免费| 国产精品美女在线观看 | 久久久久久久久久久综合 | 深爱开心激情网 | 国产一级免费观看 | 人人玩人人添人人澡97 | 国产一级在线免费观看 | www.狠狠操.com | 美女视频久久黄 | 欧美日韩国产精品爽爽 | 亚洲91在线| 亚洲性少妇性猛交wwww乱大交 | 亚洲精品在线网站 | 久久久久久久免费观看 | 国产视频日韩视频欧美视频 | 日韩精品播放 | 久久艹在线 | 麻豆视频免费入口 | 视频在线在亚洲 | 国产福利在线免费观看 | 国产精品毛片一区二区 | 在线播放日韩 | 综合网av | 99久久99视频只有精品 | 国产中文字幕第一页 | 婷婷在线综合 | 久久免费视频在线观看30 | 亚洲成人免费 | 17videosex性欧美 | 久久精品1区 | 亚洲女同ⅹxx女同tv | 国产精品嫩草影院9 | 亚洲影院天堂 | 亚洲视频456 | 国产一级一级国产 | 婷婷五情天综123 | 亚洲情婷婷 | 国产精品va在线观看入 | 一二三区视频在线 | 丁香国产视频 | 毛片美女网站 | 色狠狠干 | 久久综合色婷婷 | 欧美日韩91 | 色午夜影院 | 激情亚洲综合在线 | 亚洲艳情| 亚洲黄网址 | 在线观看黄色国产 | 黄色午夜 | 午夜精品久久久久久久久久 | 日韩在线电影观看 | 婷婷色资源 | 日韩欧美在线中文字幕 | 成人手机在线视频 | 黄色国产在线观看 | 狠狠色伊人亚洲综合成人 | 91理论片午午伦夜理片久久 | 国产精品久久久久国产精品日日 | 亚洲毛片一区二区三区 | 国产视频精品免费播放 | 亚洲精品小视频 | 91女人18片女毛片60分钟 | 在线国产日韩 | 瑞典xxxx性hd极品 | 亚洲精品免费在线观看 | 亚洲精品综合一二三区在线观看 | 超碰公开在线 | 国内视频在线观看 | 久久久免费av | 天天干天天拍 | 亚洲精品午夜国产va久久成人 | 久久一区二区三区国产精品 | 亚洲砖区区免费 | av片一区 | 四虎永久免费在线观看 | 狠狠色丁香久久婷婷综合丁香 | 国产精品伦一区二区三区视频 | 国产一级黄色免费看 | 高清av免费看 | 国产视频一区二区在线观看 | 婷婷电影网| 久久久片 | 久久午夜色播影院免费高清 | 9i看片成人免费看片 | 99在线观看视频网站 | 天天干,狠狠干 | 国产日本亚洲 | 国产精品一二三 | 免费中文字幕在线观看 | 免费av观看 | 麻花天美星空视频 | 国产精品久久在线 | 久久国产精品99国产 | 婷婷日韩| 国产高清免费视频 | 一区二区三区四区免费视频 | 久久精品一区二区三区四区 | 国产精品久久久久久69 | av网站手机在线观看 | 婷婷精品国产欧美精品亚洲人人爽 | 99久久久免费视频 | 久久精品99| japanese黑人亚洲人4k | 黄色影院在线免费观看 | 久久国产视频网站 | 免费在线观看视频a | 国产精品入口a级 | 人人搞人人爽 | 中文字幕a∨在线乱码免费看 | 天天操天天舔天天干 | 国产精品女主播一区二区三区 | 尤物九九久久国产精品的分类 | 91视频麻豆视频 | 精品伊人久久久 | 91一区二区在线 | 久久婷婷五月综合色丁香 | 在线播放 一区 | 天天射天天搞 | 免费日韩av电影 | 亚洲国产成人精品电影在线观看 | 成人一区在线观看 | 久久99久久久久 | 国产99在线免费 | 免费高清影视 | 日韩精品视频在线观看免费 | 五月天婷婷在线观看视频 | 亚洲国产影院 | 日韩性色 | 国产一区在线看 | 午夜精品一二三区 | 国产精品第三页 | 99久久99久久 | 99热这里只有精品8 久久综合毛片 | 免费看毛片在线 | 中文字幕在线影院 | 中文字幕视频三区 | 日日夜夜免费精品视频 | 国产免费av一区二区三区 | 男女激情网址 | 9色在线视频 | 日日夜夜天天干 | www.五月婷| 国内外成人在线 | 中文字幕超清在线免费 | 色在线中文字幕 | 婷婷去俺也去六月色 | 国产五十路毛片 | 女人高潮特级毛片 | h动漫中文字幕 | 中文字幕网站 | 日韩av午夜在线观看 | 日本精品一区二区三区在线观看 | 亚洲精品中文在线 | 亚洲一区精品二人人爽久久 | 一本一本久久a久久 | 在线色亚洲 | 色丁香久久 | 久久久黄色免费网站 | 另类五月激情 | 91黄色小网站 | 中文字幕在线视频一区二区 | 精品久久美女 | 国产视频1区2区 | 久久久九色精品国产一区二区三区 | 国产成人不卡 | 6080yy精品一区二区三区 | 999成人免费视频 | 狠狠操狠狠干天天操 | 人人干人人艹 | 久草手机视频 | 91精品国产亚洲 | 国产精品视频在线观看 | 日韩三级视频在线观看 | 国产精品久久久久久久7电影 | 激情婷婷色 | 亚洲精品av中文字幕在线在线 | 日本中文字幕一二区观 | 黄色在线小网站 | 一区二区三区免费播放 | 综合激情av | 国产又粗又猛又色又黄网站 | 波多野结衣一区二区三区中文字幕 | 美女一级毛片视频 | 久草网在线视频 | 在线免费观看国产视频 | 欧美精彩视频在线观看 | 玖玖精品在线 | 欧美九九九 | 成年人免费看片网站 | 麻豆免费视频网站 | 国产伦精品一区二区三区照片91 | 日韩欧美高清在线 | 午夜精品一区二区三区在线播放 | 天天综合网 天天 | 成年人天堂com | 超碰人人乐 | 手机av片 | 亚洲精品合集 | 黄污网 | 亚洲精品456在线播放乱码 | 欧美激情视频一二三区 | 色狠狠久久av五月综合 | 色婷婷视频 | 91福利在线观看 | 成人黄色在线看 | 91久久丝袜国产露脸动漫 | 黄av资源 | 在线精品国产 | 久草在线手机观看 | 国产成人99av超碰超爽 | 亚州国产精品 | 密桃av在线| 最近中文字幕大全 | 激情在线免费视频 | 99视频国产精品 | 精品福利视频在线观看 | 国产精品一区二区免费 | 国产精品久久久久久爽爽爽 | 91中文字幕视频 | 久久久一本精品99久久精品66 | 婷婷精品国产一区二区三区日韩 | 免费h漫在线观看 | 日韩理论在线 | 在线观看中文字幕一区二区 | 色婷婷综合久久久久中文字幕1 | 亚洲毛片一区二区三区 | 欧美日韩精品二区第二页 | 成人免费在线视频观看 | 午夜天天操| 4438全国亚洲精品在线观看视频 | 成人精品亚洲 | 久久99久久99精品免费看小说 | 国产精品久久久久久久久久久久久久 | 国产五月色婷婷六月丁香视频 | 免费日韩在线 | 福利视频午夜 | 日韩免费专区 | 久久99久久99免费视频 | 99视频网址 | 日韩有色 | 欧美日韩中文在线观看 | 日韩视频免费播放 | 国产精品福利在线 | 天天干天天操 | 超碰97在线看| 96精品视频 | 亚洲精色 | 国产一级免费播放 | 91av网站在线观看 | 天天操天天操天天操天天操天天操天天操 | 国产精品18久久久久vr手机版特色 | 午夜国产成人 | 久久艹中文字幕 | 丝袜美腿在线播放 | 国产精品伦一区二区三区视频 | 蜜臀av夜夜澡人人爽人人 | 国产精品va | 色综合久久天天 | 丁香六月激情婷婷 | 日本久久精品视频 | 成人av播放| 2019中文字幕第一页 | 国产一级片直播 | 另类老妇性bbwbbw高清 | 亚洲精品国产成人 | 亚洲在线精品视频 | 国产99久| 国产精品网站一区二区三区 | 99热精品国产 | 久久伊人爱 | 国产一级二级在线播放 | 精品国产一区二区三区日日嗨 | 亚洲精品国产日韩 | 国产区av在线 | 国产精品免费看久久久8精臀av | 500部大龄熟乱视频 欧美日本三级 | 国产女人18毛片水真多18精品 | 久久久久国产一区二区三区四区 | 免费日韩 精品中文字幕视频在线 | 夜夜躁狠狠躁日日躁 | 国产女做a爱免费视频 | 国产视频精选 | 国外成人在线视频网站 | 探花视频在线版播放免费观看 | 天天鲁天天干天天射 | 91探花国产综合在线精品 | 精品一区二区免费视频 | 制服丝袜欧美 | 一二区精品 | 在线a人片免费观看视频 | www.亚洲| 爱av在线网 | 波多野结衣久久资源 | 国产 日韩 欧美 自拍 | 亚洲三级在线播放 | 麻豆高清免费国产一区 | 久久久精品欧美 | 国产一区二区三精品久久久无广告 | 麻豆播放| 亚洲精欧美一区二区精品 | 国产精品人成电影在线观看 | 亚洲国产精品va在线看黑人 | 国产精品mm | 国色天香第二季 | 91污视频在线观看 | 国产亚洲永久域名 | 97在线免费观看 | 色综合天天综合网国产成人网 | 久久国产精品精品国产色婷婷 | 久久免费公开视频 | 亚洲第一av在线播放 | 四虎在线观看视频 | 国产精品午夜在线观看 | 婷婷国产一区二区三区 | 久久中文字幕在线视频 | 午夜av免费 | 在线亚洲天堂网 | 久久久久久免费毛片精品 | 最新影院| 成人av手机在线 | 91香蕉视频在线下载 | av一区在线播放 | 亚洲国产午夜精品 | 伊人婷婷综合 | 日韩在线一二三区 | 在线免费色视频 | 亚洲伦理一区 | 国产91成人在在线播放 | 最新免费av在线 | 免费av在 | 一区二区在线不卡 | 国产手机视频精品 | 天天色综合久久 | 狠狠色丁香婷婷综合基地 | 91看毛片 | 精品电影一区 | 92国产精品久久久久首页 | 天天视频亚洲 | 久久视频免费看 | 天天操天天综合网 | 成人黄色小视频 | 日韩在线不卡av | 国产综合在线观看视频 | 欧洲精品一区二区 | 麻豆手机在线 | 久久不卡电影 | 色婷婷影视| 欧美性色19p | 久久精品一二三区白丝高潮 | www.色com| 色久av | 午夜狠狠操 | 久久久久综合视频 | 中午字幕在线 | 精品99免费视频 | 在线播放日韩 | 在线视频手机国产 | 久久tv| 天天干天天碰 | 最近高清中文字幕 | 国产午夜亚洲精品 | 色婷婷 亚洲 | 亚洲全部视频 | 色激情在线 | 亚洲国产精品va在线看 | 久草在线在线视频 | 超碰97免费 | 中文字幕精品一区二区精品 | 91日韩精品视频 | 久久国产视频网站 | 午夜精品电影一区二区在线 | 欧美老女人xx | 久久99热这里只有精品国产 | 一级免费观看 | 日韩精品在线视频 | 亚洲日本成人网 | 亚洲综合欧美日韩狠狠色 | 国外调教视频网站 | 免费日韩三级 | 91在线观看欧美日韩 | 很黄很污的视频网站 | 亚洲第一区在线观看 | 久久人人97超碰国产公开结果 | 久精品视频在线观看 | 亚洲一区二区精品在线 | 国产1区2 | 欧美精品久久99 | 国产色爽 | 国产成人精品久久二区二区 | 午夜视频一区二区三区 | 2000xxx影视 | 国产 欧美 在线 | 高清不卡一区二区三区 | 美女视频黄是免费的 | 五月花婷婷 | 婷婷九月激情 | 免费网站看av片 | 精品视频久久久久久 | 国产69久久久 | 88av网站| 一级a性色生活片久久毛片波多野 | 精品亚洲午夜久久久久91 | 97电影网手机版 | www.天天射.com | 高清视频一区二区三区 | 蜜臀av一区二区 | 97福利在线观看 | 日韩色在线观看 | 久久首页 | 国产剧情一区二区在线观看 | 国产精品久久久久久久久久了 | 欧美精品久久久久久久免费 | 国产精品久久久久婷婷二区次 | 国产福利网站 | av在观看 | 色婷婷天天干 | 在线成人免费电影 | 国产在线一区二区三区播放 | 免费h漫在线观看 | 国产亚洲一级高清 | 91九色在线视频观看 | 天天操天天干天天操天天干 | 波多野结衣在线视频免费观看 | 婷婷色网视频在线播放 | 久久久精品成人 | 国产自偷自拍 | 久久精品国产成人精品 | 五月婷网| 免费观看一级 | 丁香六月婷婷激情 | 欧美污网站 | 免费观看91视频大全 | 性日韩欧美在线视频 | 日韩在线视频免费观看 | 久久成人视屏 | 91视频国产免费 | 国产69久久久 | 国产精品麻豆视频 | 久久久国产精品人人片99精片欧美一 | 狠狠做六月爱婷婷综合aⅴ 日本高清免费中文字幕 | 国产婷婷色 | 啪啪午夜免费 | 久久五月精品 | 久草在线手机视频 | 成人性生活大片 | 成人午夜影院在线观看 | a国产精品 | 免费看网站在线 | 99精品视频在线观看免费 | 干干日日 | 91成人午夜 | 久久久精品欧美一区二区免费 | 亚洲自拍偷拍色图 | 一区二区视频在线看 | www黄| 国内综合精品午夜久久资源 | 青青草国产成人99久久 | 伊人成人久久 | 999视频在线播放 | 色婷婷激情综合 | 免费观看福利视频 | 又黄又爽又刺激视频 | 久久久久国产精品午夜一区 | 亚洲,国产成人av | 美女福利视频一区二区 | 日韩欧美69| 欧美成人一区二区 | 日韩久久精品 | 亚州av网站大全 | 国产精品午夜在线观看 | 色综合综合 | 99视屏| 久久狠狠干| 国产精品系列在线播放 | 91人人澡 | 在线精品在线 | 91在线小视频 | 免费观看国产视频 | 久久久久亚洲精品男人的天堂 | 五月天亚洲综合小说网 | 亚洲综合视频在线播放 | 国产精品美女999 | 九九九热精品免费视频观看网站 | 69绿帽绿奴3pvideos| 亚洲最大免费成人网 | 精品视频免费在线 | 黄色不卡av | 久久久人人爽 | 97久久久免费福利网址 | 欧美激情视频一二区 | 日韩亚洲欧美中文字幕 | 日日干狠狠操 | 久久久久久久99精品免费观看 | 美女视频网站久久 | 美女视频又黄又免费 | 久久色中文字幕 | 中文字幕在线观看完整版 | 在线看国产视频 | 日韩在线观看网站 | 亚洲美女精品 | 久久草草热国产精品直播 | 国产视频在线看 | 日韩va欧美va亚洲va久久 | 久久国产视频网站 | 俺要去色综合狠狠 | 99视频在线观看一区三区 | 久久综合综合久久综合 | 韩国精品福利一区二区三区 | 激情五月婷婷综合网 | 日日精品 | 婷婷色资源| 97国产大学生情侣白嫩酒店 | 国产精品av免费 | 国产小视频在线免费观看视频 | 久久久久电影网站 | 黄色国产在线观看 | 日韩电影一区二区在线 | а天堂中文最新一区二区三区 | 黄色小网站在线 | 国产真实精品久久二三区 | 免费色网站 | 欧美天堂久久 | 色视频在线看 | 美女黄频在线观看 | 99久久一区 | 亚洲最大激情中文字幕 | 在线99热| 久久精品国产久精国产 | 91.麻豆视频 | 国产一区在线观看免费 | 国产婷婷 | av高清影院| 91超国产 | 香蕉精品视频在线观看 | 99精品视频一区 | 久久久国产影院 | 在线 高清 中文字幕 | 日韩黄色免费看 | 中文伊人 | 美女视频黄的免费的 | 国产精品久久久久久久久蜜臀 | 五月综合激情 | 欧美日韩亚洲在线观看 | 久久91网 | 久久久久亚洲最大xxxx | 天天操天天干天天插 | 在线观看免费观看在线91 | 中文字幕国产一区二区 | 色插综合 | 国产一区二区三区久久久 | 最新中文字幕视频 | 日韩精品一区二区三区高清免费 | 婷婷去俺也去六月色 | 91视频免费看网站 | 中文字幕在线观看一区二区 | 色之综合网 | 日本黄色免费电影网站 | 国产成人在线精品 | 天天综合久久 | 992tv在线观看 | 婷婷丁香在线 | 人人爱人人做人人爽 | 日韩精品无 | 免费亚洲精品视频 | 香蕉视频18 | 黄色的网站免费看 | 中文字幕一区二区三区精华液 | 日韩欧美一区二区三区在线观看 | 色婷婷狠狠 | 草久久av| 中文字幕 国产视频 | 最新av在线播放 | 香蕉视频在线免费 | 91成人精品视频 | 香蕉免费| 亚洲欧洲中文日韩久久av乱码 | 欧美人体xx| 日韩av免费一区二区 | 狠狠的操狠狠的干 | 国产精品成人免费精品自在线观看 | 99国产精品 | 国语对白少妇爽91 | 在线视频中文字幕一区 | 成人国产精品免费观看 | 久操视频在线播放 | 国产成人精品不卡 | 成人va视频 | 黄色三级久久 | 婷婷色站 | 欧美视频不卡 | 欧美精品在线观看 | 亚洲欧洲国产精品 | 日韩网站一区二区 | 成年人免费看的视频 | 一级a性色生活片久久毛片波多野 | 国产视频精品久久 | av高清一区二区三区 | 亚洲黄色在线免费观看 | 久久免费视频在线观看 | 亚洲在线a | 国产亚洲视频中文字幕视频 | 丁香婷婷社区 | 在线观看免费福利 | 色视频在线观看 | 久久国产一区二区 | 国产精品99久久久久久小说 | 高清一区二区三区av | 日本久久99 | 日韩av不卡在线播放 | 二区在线播放 | 尤物九九久久国产精品的分类 | 五月综合激情婷婷 | 亚洲精品456在线播放乱码 | www.国产在线视频 | 亚洲天堂自拍视频 | 久久影院亚洲 | 欧美日韩国产精品一区 | 中文字幕日韩电影 | 亚洲精品xxx | 日韩免费小视频 | 97av视频| 国产一区欧美一区 | 精品91久久久久 | 在线观看中文字幕亚洲 | 三级av在线 | 日韩精品亚洲专区在线观看 | 97国产人人 | 六月丁香伊人 | 欧美日韩高清不卡 | 国产成人久久77777精品 | 国产韩国日本高清视频 | 国产高清在线免费 | 久久综合影视 | 精品久久一级片 | 国产视频日本 | 久一久久 | 999视频网| 亚洲精品国产综合久久 | 欧美日韩激情网 | 欧美精品v国产精品v日韩精品 | 激情视频区| 欧美精品中文在线免费观看 | 在线黄色av电影 | 91免费观看视频在线 | 亚洲黄色av | 狠狠地操 | 欧美亚洲国产精品久久高清浪潮 | 一区二区三区在线观看免费视频 | 中国一级特黄毛片大片久久 | 久久66热这里只有精品 | 免费看一级特黄a大片 |