1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-04 16:50:19 +00:00

Add Aliyun Logger

This commit is contained in:
洪亮
2016-12-27 09:58:42 +08:00
parent 99093693c8
commit 09c405990c
11 changed files with 2579 additions and 0 deletions

13
logs/alils/config.go Executable file
View File

@ -0,0 +1,13 @@
package alils
const (
version = "0.5.0" // SDK version
signatureMethod = "hmac-sha1" // Signature method
// OffsetNewest stands for the log head offset, i.e. the offset that will be
// assigned to the next message that will be produced to the shard.
OffsetNewest = "end"
// OffsetOldest stands for the oldest offset available on the logstore for a
// shard.
OffsetOldest = "begin"
)