The digital inputs that trigger an interrupt do so when the input crosses a threshold. If you want to use interrupts, you just need to scale your signal so that the critical voltage on the external signal corresponds to the threshold voltage at the Arduino's input pin.
If you want to do more general processing of analog values you can always poll the analogue input to detect events, as long as you can afford to have a bit of latency in the detection.