Run the stats counter. Args: data_file: The counters file to monitor. name_filter: The regexp filter to apply to counter names.
(data_file, name_filter)
| 452 | |
| 453 | |
| 454 | def Main(data_file, name_filter): |
| 455 | """Run the stats counter. |
| 456 | |
| 457 | Args: |
| 458 | data_file: The counters file to monitor. |
| 459 | name_filter: The regexp filter to apply to counter names. |
| 460 | """ |
| 461 | StatsViewer(data_file, name_filter).Run() |
| 462 | |
| 463 | |
| 464 | if __name__ == "__main__": |
no test coverage detected
searching dependent graphs…