Skip to content

KeybaseListAllTopics

KeybaseListAllTopics

GET /keybase-*/_search
{ 
  "aggs": {
    "topics": {
        "terms": {
            "field": "msg.channel.topic_name",
            "size": 250
        },
        "aggs" : {
          "teams": {
              "terms": {
                  "field": "msg.channel.name"
              }
          }
        }
    }
  },
  "size":0
}
GET /keybase-*/_search
{  "query": {
      "bool": {
        "must": [
            { "match": {
                "msg.channel.name": {"query": "dentropydaemon"}
                }
            }
        ]
      }
  },
  "aggs": {
    "topics": {
        "terms": {
            "field": "msg.channel.topic_name",
            "size": 250
        }
    }
  },
  "size":0
}
GET /keybase-*/_search
{  "query": {
      "bool": {
        "must": [
            { "match": {
                "msg.channel.name": {"query": "dentropydaemon"}
                }
            }
        ]
      }
  },
  "aggs": {
    "topics": {
        "terms": {
            "field": "msg.conversation_id",
            "size": 100
        }
    }
  }
}
GET /keybase-*/_search
{  "query": {
      "bool": {
        "must": [
            { "match": {
                "msg.channel.name": {"query": "dentropydaemon"}
                }
            }
        ]
      }
  },
  "aggs": {
    "conversation_id": {
        "terms": {
            "field": "msg.conversation_id",
            "size": 100
        },
        "aggs":{
          "topics":{
            "stats" : {
              "field": "msg.channel.topic_name",
              "size": 100
            }
          }
        }
    }
  }
}