filebeat.yml

地方

- 四諦法

- 四諦法

################### Filebeat Configuration Example #########################

############################# Filebeat ######################################

filebeat:

? # List of prospectors to fetch data.

? prospectors:

? ? # Each - is a prospector. Below are the prospector specific configurations

? ? -

? ? ? # Paths that should be crawled and fetched. Glob based paths.

? ? ? # To fetch all ".log" files from a specific level of subdirectories

? ? ? # /var/log/*/*.log can be used.

? ? ? # For each file found under this path, a harvester is started.

? ? ? # Make sure not file is defined twice as this can lead to unexpected behaviour.

? ? ? # 指定要監(jiān)控的日志蜈缤,可以指定具體得文件或者目錄

? ? ? paths:

? ? ? ? - /var/log/*.log? (這是默認(rèn)的)(自行可以修改)(比如我放在/home/hadoop/app.log里)

? ? ? ? #- c:\programdata\elasticsearch\logs\*

? ? ? # Configure the file encoding for reading files with international characters

? ? ? # following the W3C recommendation for HTML5 (http://www.w3.org/TR/encoding).

? ? ? # Some sample encodings:

? ? ? #? plain, utf-8, utf-16be-bom, utf-16be, utf-16le, big5, gb18030, gbk,

? ? ? #? ? hz-gb-2312, euc-kr, euc-jp, iso-2022-jp, shift-jis, ...

? ? ? # 指定被監(jiān)控的文件的編碼類型边败,使用plain和utf-8都是可以處理中文日志的

? ? ? #encoding: plain

? ? ? # Type of the files. Based on this the way the file is read is decided.

? ? ? # The different types cannot be mixed in one prospector

? ? ? #

? ? ? # Possible options are:

? ? ? # * log: Reads every line of the log file (default)

? ? ? # * stdin: Reads the standard in

? ? ? # 指定文件的輸入類型log(默認(rèn))或者stdin

? ? ? input_type: log

? ? ? # Exclude lines. A list of regular expressions to match. It drops the lines that are

? ? ? # matching any regular expression from the list. The include_lines is called before

? ? ? # 在輸入中排除符合正則表達(dá)式列表的那些行历谍。

? ? ? # exclude_lines. By default, no lines are dropped.

? ? ? # exclude_lines: ["^DBG"]

? ? ? # Include lines. A list of regular expressions to match. It exports the lines that are

? ? ? # matching any regular expression from the list. The include_lines is called before

? ? ? # exclude_lines. By default, all the lines are exported.

? ? ? # 包含輸入中符合正則表達(dá)式列表的那些行(默認(rèn)包含所有行)叹话,include_lines執(zhí)行完畢之后會執(zhí)行exclude_lines

? ? ? # include_lines: ["^ERR", "^WARN"]

? ? ? # Exclude files. A list of regular expressions to match. Filebeat drops the files that

? ? ? # are matching any regular expression from the list. By default, no files are dropped.

? ? ? # 忽略掉符合正則表達(dá)式列表的文件

? ? ? # exclude_files: [".gz$"]

? ? ? # Optional additional fields. These field can be freely picked

? ? ? # to add additional information to the crawled log files for filtering

? ? ? # 向輸出的每一條日志添加額外的信息眯搭,比如“l(fā)evel:debug”,方便后續(xù)對日志進(jìn)行分組統(tǒng)計。

? ? ? # 默認(rèn)情況下,會在輸出信息的fields子目錄下以指定的新增fields建立子目錄臭蚁,例如fields.level

? ? ? # 這個得意思就是會在es中多添加一個字段,格式為 "filelds":{"level":"debug"}

? ? ? #fields:

? ? ? #? level: debug

? ? ? #? review: 1

? ? ? # Set to true to store the additional fields as top level fields instead

? ? ? # of under the "fields" sub-dictionary. In case of name conflicts with the

? ? ? # fields added by Filebeat itself, the custom fields overwrite the default

? ? ? # fields.

? ? ? # 如果該選項設(shè)置為true,則新增fields成為頂級目錄垮兑,而不是將其放在fields目錄下冷尉。

? ? ? # 自定義的field會覆蓋filebeat默認(rèn)的field

? ? ? # 如果設(shè)置為true,則在es中新增的字段格式為:"level":"debug"

? ? ? #fields_under_root: false

? ? ? # Ignore files which were modified more then the defined timespan in the past.

? ? ? # In case all files on your system must be read you can set this value very large.

? ? ? # Time strings like 2h (2 hours), 5m (5 minutes) can be used.

? ? ? # 可以指定Filebeat忽略指定時間段以外修改的日志內(nèi)容系枪,比如2h(兩個小時)或者5m(5分鐘)雀哨。

? ? ? #ignore_older: 0

? ? ? # Close older closes the file handler for which were not modified

? ? ? # for longer then close_older

? ? ? # Time strings like 2h (2 hours), 5m (5 minutes) can be used.

? ? ? # 如果一個文件在某個時間段內(nèi)沒有發(fā)生過更新,則關(guān)閉監(jiān)控的文件handle私爷。默認(rèn)1h

? ? ? #close_older: 1h

? ? ? # Type to be published in the 'type' field. For Elasticsearch output,

? ? ? # the type defines the document type these entries should be stored

? ? ? # in. Default: log

? ? ? # 設(shè)定Elasticsearch輸出時的document的type字段 可以用來給日志進(jìn)行分類雾棺。Default: log

? ? ? #document_type: log

? ? ? # Scan frequency in seconds.

? ? ? # How often these files should be checked for changes. In case it is set

? ? ? # to 0s, it is done as often as possible. Default: 10s

? ? ? # Filebeat以多快的頻率去prospector指定的目錄下面檢測文件更新(比如是否有新增文件)

? ? ? # 如果設(shè)置為0s,則Filebeat會盡可能快地感知更新(占用的CPU會變高)衬浑。默認(rèn)是10s

? ? ? #scan_frequency: 10s

? ? ? # Defines the buffer size every harvester uses when fetching the file

? ? ? # 每個harvester監(jiān)控文件時垢村,使用的buffer的大小

? ? ? #harvester_buffer_size: 16384

? ? ? # Maximum number of bytes a single log event can have

? ? ? # All bytes after max_bytes are discarded and not sent. The default is 10MB.

? ? ? # This is especially useful for multiline log messages which can get large.

? ? ? # 日志文件中增加一行算一個日志事件,max_bytes限制在一次日志事件中最多上傳的字節(jié)數(shù)嚎卫,多出的字節(jié)會被丟棄

? ? ? #max_bytes: 10485760

? ? ? # Mutiline can be used for log messages spanning multiple lines. This is common

? ? ? # for Java Stack Traces or C-Line Continuation

? ? ? # 適用于日志中每一條日志占據(jù)多行的情況,比如各種語言的報錯信息調(diào)用棧

? ? ? #multiline:

? ? ? ? # The regexp Pattern that has to be matched. The example pattern matches all lines starting with [

? ? ? ? # 多行日志開始的那一行匹配的pattern

? ? ? ? #pattern: ^\[

? ? ? ? # Defines if the pattern set under pattern should be negated or not. Default is false.

? ? ? ? # 是否需要對pattern條件轉(zhuǎn)置使用宏榕,不翻轉(zhuǎn)設(shè)為true拓诸,反轉(zhuǎn)設(shè)置為false。? 【建議設(shè)置為true】

? ? ? ? #negate: false

? ? ? ? # Match can be set to "after" or "before". It is used to define if lines should be append to a pattern

? ? ? ? # that was (not) matched before or after or as long as a pattern is not matched based on negate.

? ? ? ? # Note: After is the equivalent to previous and before is the equivalent to to next in Logstash

? ? ? ? # 匹配pattern后麻昼,與前面(before)還是后面(after)的內(nèi)容合并為一條日志

? ? ? ? #match: after

? ? ? ? # The maximum number of lines that are combined to one event.

? ? ? ? # In case there are more the max_lines the additional lines are discarded.

? ? ? ? # Default is 500

? ? ? ? # 合并的最多行數(shù)(包含匹配pattern的那一行)

? ? ? ? #max_lines: 500

? ? ? ? # After the defined timeout, an multiline event is sent even if no new pattern was found to start a new event

? ? ? ? # Default is 5s.

? ? ? ? # 到了timeout之后奠支,即使沒有匹配一個新的pattern(發(fā)生一個新的事件),也把已經(jīng)匹配的日志事件發(fā)送出去

? ? ? ? #timeout: 5s

? ? ? # Setting tail_files to true means filebeat starts readding new files at the end

? ? ? # instead of the beginning. If this is used in combination with log rotation

? ? ? # this can mean that the first entries of a new file are skipped.

? ? ? # 如果設(shè)置為true抚芦,F(xiàn)ilebeat從文件尾開始監(jiān)控文件新增內(nèi)容倍谜,把新增的每一行文件作為一個事件依次發(fā)送,

? ? ? # 而不是從文件開始處重新發(fā)送所有內(nèi)容

? ? ? #tail_files: false

? ? ? # Backoff values define how agressively filebeat crawls new files for updates

? ? ? # The default values can be used in most cases. Backoff defines how long it is waited

? ? ? # to check a file again after EOF is reached. Default is 1s which means the file

? ? ? # is checked every second if new lines were added. This leads to a near real time crawling.

? ? ? # Every time a new line appears, backoff is reset to the initial value.

? ? ? # Filebeat檢測到某個文件到了EOF(文件結(jié)尾)之后叉抡,每次等待多久再去檢測文件是否有更新尔崔,默認(rèn)為1s

? ? ? #backoff: 1s

? ? ? # Max backoff defines what the maximum backoff time is. After having backed off multiple times

? ? ? # from checking the files, the waiting time will never exceed max_backoff idenependent of the

? ? ? # backoff factor. Having it set to 10s means in the worst case a new line can be added to a log

? ? ? # file after having backed off multiple times, it takes a maximum of 10s to read the new line

? ? ? # Filebeat檢測到某個文件到了EOF之后,等待檢測文件更新的最大時間褥民,默認(rèn)是10秒

? ? ? #max_backoff: 10s

? ? ? # The backoff factor defines how fast the algorithm backs off. The bigger the backoff factor,

? ? ? # the faster the max_backoff value is reached. If this value is set to 1, no backoff will happen.

? ? ? # The backoff value will be multiplied each time with the backoff_factor until max_backoff is reached

? ? ? # 定義到達(dá)max_backoff的速度季春,默認(rèn)因子是2,到達(dá)max_backoff后消返,變成每次等待max_backoff那么長的時間才backoff一次载弄,

? ? ? # 直到文件有更新才會重置為backoff

? ? ? # 根據(jù)現(xiàn)在的默認(rèn)配置是這樣的,每隔1s檢測一下文件變化撵颊,如果連續(xù)檢測兩次之后文件還沒有變化宇攻,下一次檢測間隔時間變?yōu)?0s

? ? ? #backoff_factor: 2

? ? ? # This option closes a file, as soon as the file name changes.

? ? ? # This config option is recommended on windows only. Filebeat keeps the files it's reading open. This can cause

? ? ? # issues when the file is removed, as the file will not be fully removed until also Filebeat closes

? ? ? # the reading. Filebeat closes the file handler after ignore_older. During this time no new file with the

? ? ? # same name can be created. Turning this feature on the other hand can lead to loss of data

? ? ? # on rotate files. It can happen that after file rotation the beginning of the new

? ? ? # file is skipped, as the reading starts at the end. We recommend to leave this option on false

? ? ? # but lower the ignore_older value to release files faster.

? ? ? # 這個選項關(guān)閉一個文件,當(dāng)文件名稱的變化。#該配置選項建議只在windows

? ? ? #force_close_files: false

? ? # Additional prospector

? ? #-

? ? ? # Configuration to use stdin input

? ? ? #input_type: stdin

? # General filebeat configuration options

? #

? # Event count spool threshold - forces network flush if exceeded

? # spooler的大小倡勇,spooler中的事件數(shù)量超過這個閾值的時候會清空發(fā)送出去(不論是否到達(dá)超時時間)

? #spool_size: 2048

? # Enable async publisher pipeline in filebeat (Experimental!)

? # 是否采用異步發(fā)送模式(實驗功能)

? #publish_async: false

? # Defines how often the spooler is flushed. After idle_timeout the spooler is

? # Flush even though spool_size is not reached.

? # spooler的超時時間逞刷,如果到了超時時間,spooler也會清空發(fā)送出去(不論是否到達(dá)容量的閾值)

? #idle_timeout: 5s

? # Name of the registry file. Per default it is put in the current working

? # directory. In case the working directory is changed after when running

? # filebeat again, indexing starts from the beginning again.

? # 記錄filebeat處理日志文件的位置的文件,默認(rèn)是在啟動的根目錄下

? #registry_file: .filebeat

? # Full Path to directory with additional prospector configuration files. Each file must end with .yml

? # These config files must have the full filebeat config part inside, but only

? # the prospector part is processed. All global options like spool_size are ignored.

? # The config_dir MUST point to a different directory then where the main filebeat config file is in.

? # 如果要在本配置文件中引入其他位置的配置文件亲桥,可以寫在這里(需要寫完整路徑)洛心,但是只處理prospector的部分

? #config_dir:

###############################################################################

############################# Libbeat Config ##################################

# Base config file used by all other beats for using libbeat features

############################# Output ##########################################

# Configure what outputs to use when sending the data collected by the beat.

# Multiple outputs may be used.

output:

? ### Elasticsearch as output

? elasticsearch:            (這是默認(rèn)的题篷,filebeat收集后放到es里)(自行可以修改词身,比如我有時候想filebeat收集后,然后到redis番枚,再到es法严,就可以注銷這行)

? ? # Array of hosts to connect to.

? ? # Scheme and port can be left out and will be set to the default (http and 9200)

? ? # In case you specify and additional path, the scheme is required: http://localhost:9200/path

? ? # IPv6 addresses should always be defined as: https://[2001:db8::1]:9200

? ? hosts: ["localhost:9200"]? ? ? ? (這是默認(rèn)的,filebeat收集后放到es里)(自行可以修改葫笼,比如我有時候想filebeat收集后深啤,然后到redis,再到es路星,就可以注銷這行)

# Optional protocol and basic auth credentials. #protocol: "https" #username: "admin" #password: "s3cr3t" # Number of workers per Elasticsearch host. #worker: 1 # Optional index name. The default is "filebeat" and generates # [filebeat-]YYYY.MM.DD keys. #index: "filebeat" # A template is used to set the mapping in Elasticsearch # By default template loading is disabled and no template is loaded. # These settings can be adjusted to load your own template or overwrite existing ones #template: # Template name. By default the template name is filebeat. #name: "filebeat" # Path to template file #path: "filebeat.template.json" # Overwrite existing template #overwrite: false # Optional HTTP Path #path: "/elasticsearch" # Proxy server url #proxy_url: http://proxy:3128 # The number of times a particular Elasticsearch index operation is attempted. If # the indexing operation doesn't succeed after this many retries, the events are # dropped. The default is 3. #max_retries: 3 # The maximum number of events to bulk in a single Elasticsearch bulk API index request. # The default is 50. #bulk_max_size: 50 # Configure http request timeout before failing an request to Elasticsearch. #timeout: 90 # The number of seconds to wait for new events between two bulk API index requests. # If `bulk_max_size` is reached before this interval expires, addition bulk index # requests are made. #flush_interval: 1 # Boolean that sets if the topology is kept in Elasticsearch. The default is # false. This option makes sense only for Packetbeat. #save_topology: false # The time to live in seconds for the topology information that is stored in # Elasticsearch. The default is 15 seconds. #topology_expire: 15 # tls configuration. By default is off. #tls: # List of root certificates for HTTPS server verifications #certificate_authorities: ["/etc/pki/root/ca.pem"] # Certificate for TLS client authentication #certificate: "/etc/pki/client/cert.pem" # Client Certificate Key #certificate_key: "/etc/pki/client/cert.key" # Controls whether the client verifies server certificates and host name. # If insecure is set to true, all server host names and certificates will be # accepted. In this mode TLS based connections are susceptible to # man-in-the-middle attacks. Use only for testing. #insecure: true # Configure cipher suites to be used for TLS connections #cipher_suites: [] # Configure curve types for ECDHE based cipher suites #curve_types: [] # Configure minimum TLS version allowed for connection to logstash #min_version: 1.0 # Configure maximum TLS version allowed for connection to logstash #max_version: 1.2 ### Logstash as output #logstash: # The Logstash hosts #hosts: ["localhost:5044"] # Number of workers per Logstash host. #worker: 1 # The maximum number of events to bulk into a single batch window. The # default is 2048. #bulk_max_size: 2048 # Set gzip compression level. #compression_level: 3 # Optional load balance the events between the Logstash hosts #loadbalance: true # Optional index name. The default index name depends on the each beat. # For Packetbeat, the default is set to packetbeat, for Topbeat # top topbeat and for Filebeat to filebeat. #index: filebeat # Optional TLS. By default is off. #tls: # List of root certificates for HTTPS server verifications #certificate_authorities: ["/etc/pki/root/ca.pem"] # Certificate for TLS client authentication #certificate: "/etc/pki/client/cert.pem" # Client Certificate Key #certificate_key: "/etc/pki/client/cert.key" # Controls whether the client verifies server certificates and host name. # If insecure is set to true, all server host names and certificates will be # accepted. In this mode TLS based connections are susceptible to # man-in-the-middle attacks. Use only for testing. #insecure: true # Configure cipher suites to be used for TLS connections #cipher_suites: [] # Configure curve types for ECDHE based cipher suites #curve_types: [] ### File as output #file: # Path to the directory where to save the generated files. The option is mandatory. #path: "/tmp/filebeat" # Name of the generated files. The default is `filebeat` and it generates files: `filebeat`, `filebeat.1`, `filebeat.2`, etc. #filename: filebeat # Maximum size in kilobytes of each file. When this size is reached, the files are # rotated. The default value is 10 MB. #rotate_every_kb: 10000 # Maximum number of files under path. When this number of files is reached, the # oldest file is deleted and the rest are shifted from last to first. The default # is 7 files. #number_of_files: 7 ### Console output # console: # Pretty print json event #pretty: false ############################# Shipper ######################################### shipper: # The name of the shipper that publishes the network data. It can be used to group # all the transactions sent by a single shipper in the web interface. # If this options is not defined, the hostname is used. #name: # The tags of the shipper are included in their own field with each # transaction published. Tags make it easy to group servers by different # logical properties. #tags: ["service-X", "web-tier"] # Uncomment the following if you want to ignore transactions created # by the server on which the shipper is installed. This option is useful # to remove duplicates if shippers are installed on multiple servers. #ignore_outgoing: true # How often (in seconds) shippers are publishing their IPs to the topology map. # The default is 10 seconds. #refresh_topology_freq: 10 # Expiration time (in seconds) of the IPs published by a shipper to the topology map. # All the IPs will be deleted afterwards. Note, that the value must be higher than # refresh_topology_freq. The default is 15 seconds. #topology_expire: 15 # Internal queue size for single events in processing pipeline #queue_size: 1000 # Configure local GeoIP database support. # If no paths are not configured geoip is disabled. #geoip: #paths: # - "/usr/share/GeoIP/GeoLiteCity.dat" # - "/usr/local/var/GeoIP/GeoLiteCity.dat" ############################# Logging ######################################### # There are three options for the log ouput: syslog, file, stderr. # Under Windos systems, the log files are per default sent to the file output, # under all other system per default to syslog. # 建議在開發(fā)時期開啟日志并把日志調(diào)整為debug或者info級別溯街,在生產(chǎn)環(huán)境下調(diào)整為error級別 # 開啟日志 必須設(shè)置to_files 屬性為true logging: # Send all logging output to syslog. On Windows default is false, otherwise # default is true. # 配置beats日志。日志可以寫入到syslog也可以是輪滾日志文件洋丐。默認(rèn)是syslog # tail -f /var/log/messages #to_syslog: true # Write all logging output to files. Beats automatically rotate files if rotateeverybytes # limit is reached. # 日志發(fā)送到輪滾文件 #to_files: false # To enable logging to files, to_files option has to be set to true # to_files設(shè)置為true才可以開啟輪滾日志記錄 files: # The directory where the log files will written to. # 指定日志路徑 #path: /var/log/mybeat # The name of the files where the logs are written to. # 指定日志名稱 #name: mybeat # Configure log file size limit. If limit is reached, log file will be # automatically rotated # 默認(rèn)文件達(dá)到10M就會滾動生成新文件 rotateeverybytes: 10485760 # = 10MB # Number of rotated log files to keep. Oldest files will be deleted first. # 保留日志文件周期呈昔。 默認(rèn) 7天。值范圍為2 到 1024 #keepfiles: 7 # Enable debug output for selected components. To enable all selectors use ["*"] # Other available selectors are beat, publish, service # Multiple selectors can be chained. #selectors: [ ] # Sets log level. The default log level is error. # Available log levels are: critical, error, warning, info, debug # 日志級別友绝,默認(rèn)是error #level: error

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末堤尾,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子迁客,更是在濱河造成了極大的恐慌郭宝,老刑警劉巖,帶你破解...
    沈念sama閱讀 222,000評論 6 515
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件掷漱,死亡現(xiàn)場離奇詭異粘室,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)切威,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 94,745評論 3 399
  • 文/潘曉璐 我一進(jìn)店門育特,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人先朦,你說我怎么就攤上這事缰冤。” “怎么了喳魏?”我有些...
    開封第一講書人閱讀 168,561評論 0 360
  • 文/不壞的土叔 我叫張陵棉浸,是天一觀的道長。 經(jīng)常有香客問我刺彩,道長迷郑,這世上最難降的妖魔是什么枝恋? 我笑而不...
    開封第一講書人閱讀 59,782評論 1 298
  • 正文 為了忘掉前任,我火速辦了婚禮嗡害,結(jié)果婚禮上焚碌,老公的妹妹穿的比我還像新娘。我一直安慰自己霸妹,他們只是感情好十电,可當(dāng)我...
    茶點(diǎn)故事閱讀 68,798評論 6 397
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著叹螟,像睡著了一般鹃骂。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上罢绽,一...
    開封第一講書人閱讀 52,394評論 1 310
  • 那天畏线,我揣著相機(jī)與錄音,去河邊找鬼良价。 笑死寝殴,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的明垢。 我是一名探鬼主播杯矩,決...
    沈念sama閱讀 40,952評論 3 421
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼袖外!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起魂务,我...
    開封第一講書人閱讀 39,852評論 0 276
  • 序言:老撾萬榮一對情侶失蹤曼验,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后粘姜,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體鬓照,經(jīng)...
    沈念sama閱讀 46,409評論 1 318
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 38,483評論 3 341
  • 正文 我和宋清朗相戀三年孤紧,在試婚紗的時候發(fā)現(xiàn)自己被綠了豺裆。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 40,615評論 1 352
  • 序言:一個原本活蹦亂跳的男人離奇死亡号显,死狀恐怖臭猜,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情押蚤,我是刑警寧澤蔑歌,帶...
    沈念sama閱讀 36,303評論 5 350
  • 正文 年R本政府宣布,位于F島的核電站揽碘,受9級特大地震影響次屠,放射性物質(zhì)發(fā)生泄漏园匹。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,979評論 3 334
  • 文/蒙蒙 一劫灶、第九天 我趴在偏房一處隱蔽的房頂上張望裸违。 院中可真熱鬧,春花似錦本昏、人聲如沸供汛。這莊子的主人今日做“春日...
    開封第一講書人閱讀 32,470評論 0 24
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽紊馏。三九已至,卻和暖如春蒲犬,著一層夾襖步出監(jiān)牢的瞬間朱监,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 33,571評論 1 272
  • 我被黑心中介騙來泰國打工原叮, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留赫编,地道東北人。 一個月前我還...
    沈念sama閱讀 49,041評論 3 377
  • 正文 我出身青樓奋隶,卻偏偏與公主長得像擂送,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子唯欣,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 45,630評論 2 359

推薦閱讀更多精彩內(nèi)容

  • ################### Filebeat Configuration Example ######...
    ssdsss閱讀 9,727評論 1 1
  • 會記住初見你時內(nèi)心的怦然顫動 會記住不見你時內(nèi)心的緊張慌亂 會懂得你綻開笑容里隱藏的憂郁 會懂得你隨意慵懶中天生的...
    江南奕帆閱讀 193評論 0 4
  • 一.前言 首先寫下目標(biāo)吧~ 每天的目標(biāo)是 收集好的素材5+嘹吨,好的模板1+,并運(yùn)用收集到的素材對模板進(jìn)行5+頁的模仿...
    萬花谷里的小松鼠閱讀 210評論 0 2
  • 除了你 其他所有人的 氣味 眼神 思維 語言 重復(fù)的笑聲 雷同的心動 孤獨(dú)的癥狀無人醫(yī)治 行走于密不透風(fēng)的屏障鋼筋...
    哀慕熙榮閱讀 233評論 0 1