본문 바로가기

Back-end34

Github Oauth App의 Authorization 처리 Authorizing OAuth Apps 를 통해 문서확인이 가능하며 이 문서를 토대로 인증구현 방법을 작성하였다. https://developer.github.com/apps/building-oauth-apps/authorizing-oauth-apps/ Github의 OAuth Application 인증을 통해 로그인을 하고, 유저 정보와 repository를 가져오는 과정에 기술한다. Github에서 추가가능한 App은 OAuth App과 Github App 이 있다 이 두가지의 차이점은 다음과 같다 OAuth App : 사용자가 접근가능한 것에 요청 가능 Github App : 필요한 것만 액세스 요청 가능, 코드에 대한 읽기/쓰기 권한이 없음. issues, labels, milestones 관리.. 2019. 10. 31.
logstash - Windows환경에서 logstash - Windows환경에서 logstash - Windows환경에서​x./bin/logstash.bat -f simple-logstash.conf `simple-logstash.conf``xxxxxxxxxxinput { stdin { } }output { elasticsearch { hosts => ["localhost:9200"] } stdout { codec => rubydebug }}Configuring Logstash apply라고 입력하니"message"에서 "apply\r"이 나오는 것을 확인할 수 있다.xxxxxxxxxx[2018-09-06T22:36:56,819][INFO ][logstash.agent ] Successfully started Logstash API endpo.. 2018. 9. 7.
Kibana - Visualization ELASTIC KIBANA ERROR curl's manpage explicitly describes one difference between curl's --data/--data-ascii and --data-binary options; namely, that when the @filename syntax is used to make curl read data from a file, --data will strip newlines from the file but --data-binary will not. --data-binary can only be reasonably interpreted to mean that there are certain 'conversions' besides newline re.. 2018. 9. 5.
Elastic Search - Bucket Aggregation Elastic Search - Bucket Aggregation Elastic Search - Bucket Aggregation Aggregation은 Elastic Search에서갖고있는 Document들 중에서 어떠한 값을 조합해서 나타내는 것 Bucket Aggregation은 Group by와 같다고 보면된다. xxxxxxxxxxcurl -XGET localhost:9200/record/_mapping?pretty --data-binary @basketball_mapping.json -H "Content-Type:application/json" basketball_mapping.jsonxxxxxxxxxx{ "record" : { "properties" : { "team" : { "type" : ".. 2018. 9. 1.
반응형