mirror of
https://github.com/minio/minio.git
synced 2025-11-25 20:16:10 -05:00
This API is precursor before implementing `minio lambda` and `mc` continous replication.
This new api is an extention to BucketNofication APIs.
// Request
```
GET /bucket?notificationARN=arn:minio:lambda:us-east-1:10:minio HTTP/1.1
...
...
```
// Response
```
{"Records": ...}
...
...
...
{"Records": ...}
```
17 lines
311 B
Go
17 lines
311 B
Go
// +build linux darwin windows
|
|
|
|
package sys
|
|
|
|
import "testing"
|
|
|
|
// Test get stats result.
|
|
func TestGetStats(t *testing.T) {
|
|
stats, err := GetStats()
|
|
if err != nil {
|
|
t.Errorf("Tests: Expected `nil`, Got %s", err)
|
|
}
|
|
if stats.TotalRAM == 0 {
|
|
t.Errorf("Tests: Expected `n > 0`, Got %d", stats.TotalRAM)
|
|
}
|
|
}
|