Error percentage

how to find the error percentage of application in apm index

Can you please elaborate on what you are trying to achieve here? Based on what I could gather .. You could either reindex your data to already have this field or use scripted fields to achieve the same (but it will be way slower)

to do it with scripted fields:

  • go to management, index patterns, select your index pattern, select scripted fields, add a new one
  • in the script enter something like return 100 * doc['field1name'].value / doc['field2name'].value
  • give it a name and save it, now you can use this field as any other

some docs:

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.