Toggle navigation
Home
com.google.gson.JsonObject to com.fasterxml.jackson.databind.JsonNode
No. of Instances - 16
No. of Commits - 1
No. of Projects - {'graylog2-server'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: External -> External
Mapping:
Add or Remove Method invocation
health.get("active_shards").getAsInt()
to
health.path("active_shards").asInt()
health.get("initializing_shards").getAsInt()
to
health.path("initializing_shards").asInt()
health.get("relocating_shards").getAsInt()
to
health.path("relocating_shards").asInt()
health.get("unassigned_shards").getAsInt()
to
health.path("unassigned_shards").asInt()
health.get("status").getAsString()
to
health.path("status").asText()