Esempio n. 1
0
 public override IResponse RefreshFromConnection(ElasticClient cli)
 {
     var health = cli.Stats();
     if (health.IsValid && health.OK)
     {
         GlobalStats = health.Stats;
         ShardsMetaData = health.Shards;
         Indices = health.Indices;
     }
     return health;
 }