├── .bowerrc ├── .dockerignore ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .rpmmacros ├── .travis.yml ├── CHANGELOG.md ├── Dockerfile ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── config.json.example ├── coverage.txt ├── docs └── uchiwa-ui.png ├── fixtures ├── conf.d │ ├── config_base.json │ └── config_overwrite.json ├── config_dashboard.json ├── config_test.json └── users │ └── config_users.json ├── package.json ├── public └── index.html ├── uchiwa.go ├── uchiwa ├── aggregate.go ├── aggregate_test.go ├── audit │ └── audit.go ├── authentication │ ├── accessToken.go │ ├── controllers.go │ ├── drivers.go │ ├── drivers_test.go │ ├── jwt.go │ ├── models.go │ └── services.go ├── authorization │ ├── authorization.go │ └── authorization_test.go ├── check.go ├── check_test.go ├── client.go ├── client_test.go ├── config │ ├── config.go │ ├── config_test.go │ ├── structs.go │ └── tls.go ├── daemon │ ├── clients.go │ ├── clients_test.go │ ├── daemon.go │ ├── daemon_test.go │ ├── datacenters.go │ ├── events.go │ ├── helpers.go │ ├── helpers_test.go │ ├── metrics.go │ ├── metrics_test.go │ ├── subscriptions.go │ └── subscriptions_test.go ├── datacenter.go ├── event.go ├── filters │ └── filters.go ├── helpers.go ├── helpers │ ├── helpers.go │ └── helpers_test.go ├── helpers_test.go ├── logger │ ├── logger.go │ └── logger_test.go ├── main.go ├── main_test.go ├── results.go ├── sensu │ ├── aggregates.go │ ├── checks.go │ ├── clients.go │ ├── events.go │ ├── info.go │ ├── loadbalancing.go │ ├── methods.go │ ├── metrics.go │ ├── request.go │ ├── results.go │ ├── sensu.go │ ├── silenced.go │ └── stashes.go ├── server.go ├── silenced.go ├── stash.go ├── stash_test.go └── structs │ └── structs.go └── vendor ├── github.com ├── dgrijalva │ └── jwt-go │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION_HISTORY.md │ │ ├── doc.go │ │ ├── hmac.go │ │ ├── jwt.go │ │ ├── rsa.go │ │ ├── rsa_utils.go │ │ └── signing_method.go ├── gorilla │ └── context │ │ ├── LICENSE │ │ ├── README.md │ │ ├── context.go │ │ └── doc.go ├── mitchellh │ └── mapstructure │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── error.go │ │ ├── go.mod │ │ └── mapstructure.go ├── palourde │ ├── crypt │ │ ├── AUTHORS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── apr1_crypt │ │ │ └── apr1_crypt.go │ │ ├── common │ │ │ ├── base64.go │ │ │ ├── doc.go │ │ │ └── salt.go │ │ ├── crypt.go │ │ ├── md5_crypt │ │ │ └── md5_crypt.go │ │ ├── sha256_crypt │ │ │ └── sha256_crypt.go │ │ └── sha512_crypt │ │ │ └── sha512_crypt.go │ └── mergo │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── map.go │ │ ├── merge.go │ │ └── mergo.go └── stretchr │ ├── objx │ ├── LICENSE.md │ ├── README.md │ ├── accessors.go │ ├── constants.go │ ├── conversions.go │ ├── doc.go │ ├── map.go │ ├── mutations.go │ ├── security.go │ ├── tests.go │ ├── type_specific_codegen.go │ └── value.go │ └── testify │ ├── assert │ ├── assertions.go │ ├── doc.go │ ├── errors.go │ ├── forward_assertions.go │ └── http_assertions.go │ └── mock │ ├── doc.go │ └── mock.go └── vendor.json /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/.bowerrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | .git 3 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/.gitignore -------------------------------------------------------------------------------- /.rpmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/.rpmmacros -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/bower.json -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/config.json.example -------------------------------------------------------------------------------- /coverage.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/uchiwa-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/docs/uchiwa-ui.png -------------------------------------------------------------------------------- /fixtures/conf.d/config_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/fixtures/conf.d/config_base.json -------------------------------------------------------------------------------- /fixtures/conf.d/config_overwrite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/fixtures/conf.d/config_overwrite.json -------------------------------------------------------------------------------- /fixtures/config_dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/fixtures/config_dashboard.json -------------------------------------------------------------------------------- /fixtures/config_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/fixtures/config_test.json -------------------------------------------------------------------------------- /fixtures/users/config_users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/fixtures/users/config_users.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/public/index.html -------------------------------------------------------------------------------- /uchiwa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa.go -------------------------------------------------------------------------------- /uchiwa/aggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/aggregate.go -------------------------------------------------------------------------------- /uchiwa/aggregate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/aggregate_test.go -------------------------------------------------------------------------------- /uchiwa/audit/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/audit/audit.go -------------------------------------------------------------------------------- /uchiwa/authentication/accessToken.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/authentication/accessToken.go -------------------------------------------------------------------------------- /uchiwa/authentication/controllers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/authentication/controllers.go -------------------------------------------------------------------------------- /uchiwa/authentication/drivers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/authentication/drivers.go -------------------------------------------------------------------------------- /uchiwa/authentication/drivers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/authentication/drivers_test.go -------------------------------------------------------------------------------- /uchiwa/authentication/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/authentication/jwt.go -------------------------------------------------------------------------------- /uchiwa/authentication/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/authentication/models.go -------------------------------------------------------------------------------- /uchiwa/authentication/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/authentication/services.go -------------------------------------------------------------------------------- /uchiwa/authorization/authorization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/authorization/authorization.go -------------------------------------------------------------------------------- /uchiwa/authorization/authorization_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/authorization/authorization_test.go -------------------------------------------------------------------------------- /uchiwa/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/check.go -------------------------------------------------------------------------------- /uchiwa/check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/check_test.go -------------------------------------------------------------------------------- /uchiwa/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/client.go -------------------------------------------------------------------------------- /uchiwa/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/client_test.go -------------------------------------------------------------------------------- /uchiwa/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/config/config.go -------------------------------------------------------------------------------- /uchiwa/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/config/config_test.go -------------------------------------------------------------------------------- /uchiwa/config/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/config/structs.go -------------------------------------------------------------------------------- /uchiwa/config/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/config/tls.go -------------------------------------------------------------------------------- /uchiwa/daemon/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/daemon/clients.go -------------------------------------------------------------------------------- /uchiwa/daemon/clients_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/daemon/clients_test.go -------------------------------------------------------------------------------- /uchiwa/daemon/daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/daemon/daemon.go -------------------------------------------------------------------------------- /uchiwa/daemon/daemon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/daemon/daemon_test.go -------------------------------------------------------------------------------- /uchiwa/daemon/datacenters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/daemon/datacenters.go -------------------------------------------------------------------------------- /uchiwa/daemon/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/daemon/events.go -------------------------------------------------------------------------------- /uchiwa/daemon/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/daemon/helpers.go -------------------------------------------------------------------------------- /uchiwa/daemon/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/daemon/helpers_test.go -------------------------------------------------------------------------------- /uchiwa/daemon/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/daemon/metrics.go -------------------------------------------------------------------------------- /uchiwa/daemon/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/daemon/metrics_test.go -------------------------------------------------------------------------------- /uchiwa/daemon/subscriptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/daemon/subscriptions.go -------------------------------------------------------------------------------- /uchiwa/daemon/subscriptions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/daemon/subscriptions_test.go -------------------------------------------------------------------------------- /uchiwa/datacenter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/datacenter.go -------------------------------------------------------------------------------- /uchiwa/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/event.go -------------------------------------------------------------------------------- /uchiwa/filters/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/filters/filters.go -------------------------------------------------------------------------------- /uchiwa/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/helpers.go -------------------------------------------------------------------------------- /uchiwa/helpers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/helpers/helpers.go -------------------------------------------------------------------------------- /uchiwa/helpers/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/helpers/helpers_test.go -------------------------------------------------------------------------------- /uchiwa/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/helpers_test.go -------------------------------------------------------------------------------- /uchiwa/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/logger/logger.go -------------------------------------------------------------------------------- /uchiwa/logger/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/logger/logger_test.go -------------------------------------------------------------------------------- /uchiwa/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/main.go -------------------------------------------------------------------------------- /uchiwa/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/main_test.go -------------------------------------------------------------------------------- /uchiwa/results.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/results.go -------------------------------------------------------------------------------- /uchiwa/sensu/aggregates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/sensu/aggregates.go -------------------------------------------------------------------------------- /uchiwa/sensu/checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/sensu/checks.go -------------------------------------------------------------------------------- /uchiwa/sensu/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/sensu/clients.go -------------------------------------------------------------------------------- /uchiwa/sensu/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/sensu/events.go -------------------------------------------------------------------------------- /uchiwa/sensu/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/sensu/info.go -------------------------------------------------------------------------------- /uchiwa/sensu/loadbalancing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/sensu/loadbalancing.go -------------------------------------------------------------------------------- /uchiwa/sensu/methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/sensu/methods.go -------------------------------------------------------------------------------- /uchiwa/sensu/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/sensu/metrics.go -------------------------------------------------------------------------------- /uchiwa/sensu/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/sensu/request.go -------------------------------------------------------------------------------- /uchiwa/sensu/results.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/sensu/results.go -------------------------------------------------------------------------------- /uchiwa/sensu/sensu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/sensu/sensu.go -------------------------------------------------------------------------------- /uchiwa/sensu/silenced.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/sensu/silenced.go -------------------------------------------------------------------------------- /uchiwa/sensu/stashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/sensu/stashes.go -------------------------------------------------------------------------------- /uchiwa/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/server.go -------------------------------------------------------------------------------- /uchiwa/silenced.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/silenced.go -------------------------------------------------------------------------------- /uchiwa/stash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/stash.go -------------------------------------------------------------------------------- /uchiwa/stash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/stash_test.go -------------------------------------------------------------------------------- /uchiwa/structs/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/uchiwa/structs/structs.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/dgrijalva/jwt-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/dgrijalva/jwt-go/README.md -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/VERSION_HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/dgrijalva/jwt-go/VERSION_HISTORY.md -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/dgrijalva/jwt-go/doc.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/hmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/dgrijalva/jwt-go/hmac.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/dgrijalva/jwt-go/jwt.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/dgrijalva/jwt-go/rsa.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/rsa_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/dgrijalva/jwt-go/rsa_utils.go -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/signing_method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/dgrijalva/jwt-go/signing_method.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/context/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/gorilla/context/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/gorilla/context/README.md -------------------------------------------------------------------------------- /vendor/github.com/gorilla/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/gorilla/context/context.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/context/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/gorilla/context/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/mitchellh/mapstructure/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/mitchellh/mapstructure/README.md -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/decode_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/mitchellh/mapstructure/decode_hooks.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/mitchellh/mapstructure/error.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/mapstructure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/mitchellh/mapstructure/mapstructure.go -------------------------------------------------------------------------------- /vendor/github.com/palourde/crypt/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/palourde/crypt/AUTHORS.md -------------------------------------------------------------------------------- /vendor/github.com/palourde/crypt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/palourde/crypt/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/palourde/crypt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/palourde/crypt/README.md -------------------------------------------------------------------------------- /vendor/github.com/palourde/crypt/apr1_crypt/apr1_crypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/palourde/crypt/apr1_crypt/apr1_crypt.go -------------------------------------------------------------------------------- /vendor/github.com/palourde/crypt/common/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/palourde/crypt/common/base64.go -------------------------------------------------------------------------------- /vendor/github.com/palourde/crypt/common/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/palourde/crypt/common/doc.go -------------------------------------------------------------------------------- /vendor/github.com/palourde/crypt/common/salt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/palourde/crypt/common/salt.go -------------------------------------------------------------------------------- /vendor/github.com/palourde/crypt/crypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/palourde/crypt/crypt.go -------------------------------------------------------------------------------- /vendor/github.com/palourde/crypt/md5_crypt/md5_crypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/palourde/crypt/md5_crypt/md5_crypt.go -------------------------------------------------------------------------------- /vendor/github.com/palourde/crypt/sha256_crypt/sha256_crypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/palourde/crypt/sha256_crypt/sha256_crypt.go -------------------------------------------------------------------------------- /vendor/github.com/palourde/crypt/sha512_crypt/sha512_crypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/palourde/crypt/sha512_crypt/sha512_crypt.go -------------------------------------------------------------------------------- /vendor/github.com/palourde/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/palourde/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/palourde/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/palourde/mergo/README.md -------------------------------------------------------------------------------- /vendor/github.com/palourde/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/palourde/mergo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/palourde/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/palourde/mergo/map.go -------------------------------------------------------------------------------- /vendor/github.com/palourde/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/palourde/mergo/merge.go -------------------------------------------------------------------------------- /vendor/github.com/palourde/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/palourde/mergo/mergo.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/objx/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/objx/README.md -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/accessors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/objx/accessors.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/objx/constants.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/conversions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/objx/conversions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/objx/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/objx/map.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/mutations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/objx/mutations.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/objx/security.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/objx/tests.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/type_specific_codegen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/objx/type_specific_codegen.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/objx/value.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/testify/assert/assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/testify/assert/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/testify/assert/errors.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/forward_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/testify/assert/forward_assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/http_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/testify/assert/http_assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/mock/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/testify/mock/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/mock/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/github.com/stretchr/testify/mock/mock.go -------------------------------------------------------------------------------- /vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/uchiwa/HEAD/vendor/vendor.json --------------------------------------------------------------------------------