Skip to content
This repository has been archived by the owner on Dec 17, 2023. It is now read-only.

scraper architecture extended #60

Merged
merged 1 commit into from
Jan 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@

![class diagramm provider](out/architecture/architecture_class/provider.png)

### converter
### scraper

![class diagramm converter](out/architecture/architecture_class/converter.png)
![class diagramm scraper](out/architecture/architecture_class/scraper.png)

# documentation

Expand Down
18 changes: 16 additions & 2 deletions architecture/architecture_class.plantuml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,24 @@ metrics_collector <|-- zcl_amp_metrics_

@enduml

@startuml converter
@startuml scraper


interface if_http_extension{
handle_request
}
interface zif_amp_converter{
convert
}

class zcl_amp_scraper <<if_http_extension>>

class zcl_amp_conv_http_json <<zif_amp_converter>>
class zcl_amp_con_prom_keyvalue <<zif_amp_converter>>
class zcl_amp_conv_prom_keyvalue <<zif_amp_converter>>
class zcl_amp_metrics_ <<zif_amp_converter>>

zcl_amp_scraper --> zcl_amp_conv_http_json
zcl_amp_scraper --> zcl_amp_conv_prom_keyvalue
zcl_amp_scraper --> zcl_amp_metrics_

@enduml
Binary file removed out/architecture/architecture_class/converter.png
Binary file not shown.
Binary file modified out/architecture/architecture_class/provider.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added out/architecture/architecture_class/scraper.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.