to start with, you definitely should not place spawn Actor and create dynamic material instance functions inside the tick event. Potentially, you can, but you must be sure that it will not be executed every tick. You can place do once node, or gate, or better yet, in your begin play event create your material instance and your spawn actor in event where you set health values.
Also, you can place print string node to display values from your time line.